@font-face {
  font-family: 'Futura Std';
  src: url("../fonts/FuturaStd-Bold.woff2") format("woff2"), url("../fonts/FuturaStd-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Futura Std';
  src: url("../fonts/FuturaStd-ExtraBold.woff2") format("woff2"), url("../fonts/FuturaStd-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'Futura Std';
  src: url("../fonts/FuturaStd-Book.woff2") format("woff2"), url("../fonts/FuturaStd-Book.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Futura Std';
  src: url("../fonts/FuturaStd-Medium.woff2") format("woff2"), url("../fonts/FuturaStd-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

a:hover {
  color: #00783b;
}

body.homepage {
  overflow-x: initial !important;
}

.bordered {
  border: 1px solid #000;
}

.bordered__bottom {
  border-top: transparent;
  border-left: transparent;
  border-right: transparent;
  border-bottom: 1px solid #000;
}

.bordered__thick {
  border-width: 3px;
}

.bordered__green {
  border-color: #00ab54;
}

.yellow-top-border {
  border-top: 4px solid #ffcc00;
}

.fullHeight {
  height: 100%;
}

img {
  max-width: 100%;
}

.bg-yellow {
  background-color: #ffcc00;
}

.bg-green {
  background-color: #00803e;
}

.bg-overlay {
  background-image: url(../img/pattern.png);
}

.bg-overlay__body {
  background-image: url(../img/pattern-body.png);
}

.bg-overlay__full {
  background-image: url(../img/pattern-full.png);
}

.bg-overlay__light {
  background-image: url(../img/pattern-light.png);
}

.bg-overlay__footy {
  background-image: url(../img/pattern-footy.png);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
}

body {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  font-family: 'Futura Std', sans-serif;
  font-weight: normal;
  font-style: normal;
  opacity: 1;
  transition: 2s opacity;
  width: 100%;
  height: 100%;
  background: url(../img/pattern-body.png);
  overflow-x: hidden;
  animation: imgFade 1.5s;
}

a {
  color: #00994a;
}

@keyframes imgFade {
  from {
    background: #FFF;
  }
  to {
    background: url() 0 -120px;
  }
}

body.fade-out {
  opacity: 0;
  transition: none;
}

body .container {
  max-width: 90%;
  min-width: 90%;
}

.post-head > .head-overlay {
  position: relative;
  background: black !important;
}

.post-date {
  color: #cfcfcf;
  font-size: 14px;
  margin: 0;
}

.head-overlay img {
  width: 100%;
  height: auto;
  opacity: 0.5;
  position: relative;
}

.head-text {
  position: absolute;
  /*top: 35vh;*/
  bottom: 50px;
  width: 100%;
  text-align: left;
}

.post-category a {
  font-size: 18px;
  margin-bottom: 2vw;
  color: white;
}

.post-headline {
  font-size: calc(18px + 2vw);
  line-height: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  max-width: 700px;
  width: 100%;
  color: white;
  font-weight: bolder;
  margin: 0;
}

.article-scroll {
  position: absolute;
  margin: 0 auto;
  left: 50%;
  bottom: -20px;
}

.article-scroll > a {
  color: white;
  animation: pulse infinite 1s;
}

section#article {
  padding: 30px 0px;
}

.related {
  padding: 25px;
}

.related-story {
  min-height: 150px;
  padding: 15px;
  background: white;
  border-bottom: 4px solid #000000;
  box-shadow: 0px 1px 5px 2px rgba(0, 0, 0, 0.15);
  margin-bottom: 20px;
  transition: border-bottom 300ms  ease-in-out;
}

.related-story:hover {
  border-bottom: 4px solid #00994a;
}

.related-image {
  width: 40%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 1;
  transition: opacity 300ms ease-in-out;
}

.related-story:hover .related-image {
  opacity: 0.8;
}

.related-text {
  padding: 0px 20px;
  width: 60%;
}

.related-title {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: bold;
  color: #484848;
}

.related-excerpt {
  color: #484848 !important;
  margin-bottom: 10px;
}

.related-date {
  color: #acacac;
  font-size: 12px;
  font-weight: 600;
}

.related h1 {
  text-transform: uppercase;
  font-size: 40px;
  margin-bottom: 30px;
  font-weight: bold;
  color: #484848;
  text-align: center;
}

@media only screen and (max-width: 992px) and (min-width: 768px) {
  .related-image {
    width: 100%;
    padding-top: 50%;
  }
  .related-text {
    padding: 0;
    width: 100%;
  }
  .related-title {
    line-height: 20px;
    margin-top: 10px;
  }
  .related-date {
    color: #acacac;
    font-size: 12px;
    font-weight: 600;
  }
}

@media (max-width: 480px) {
  .related-image {
    width: 100%;
    padding-top: 50%;
  }
  .related-text {
    padding: 0;
    width: 100%;
  }
  .related-title {
    line-height: 20px;
    margin-top: 10px;
  }
  .related-date {
    color: #acacac;
    font-size: 12px;
    font-weight: 600;
  }
}

#toTheTop {
  display: none !important;
  position: fixed;
  bottom: 90px;
  right: 50px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  cursor: pointer;
  padding: 8px;
  width: 45px;
  height: 45px;
  border-radius: 0px;
}

#toTheTop:hover {
  animation: heartBeat infinite 1.5s;
}

.logo-space {
  width: 12vw;
  z-index: 999;
  padding: 0px;
  margin: 0px;
}

.nav-head {
  width: 88vw;
  overflow-x: hidden;
}

.youtube {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}

.video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

button.accordion.btn.btn-link {
  color: white;
  font-weight: 500;
  background: #00994a;
  border: none;
  border-radius: 0 !important;
  outline: none !important;
  width: 100%;
  text-decoration: none !important;
}

footer {
  padding: 5vw 0vw;
  background: #000000;
  color: #ffffff;
}

ul.footer-links {
  list-style: none;
  color: black;
  padding: 0px;
}

ul.footer-links li {
  font-size: 20px;
  padding: 10px;
}

ul.footer-links li a {
  color: #333;
}

.footer-sections h5 {
  font-weight: bold;
}

.form-group.newsletter > .form-control {
  width: 60%;
}

button.newsletter.btn.btn-primary {
  width: 35%;
}

p#countdown {
  font-size: 3.5vw;
  padding: 0;
  margin: 0;
  font-weight: bold;
  text-align: center;
}

.slimjim {
  font-weight: normal;
}

.copyright {
  border-top: 4px solid #f9b900;
  width: 100%;
  background: #000;
  padding: 20px;
}

.copyright > p {
  color: #fff;
  margin-bottom: 0px;
  text-align: center;
  font-size: 13px;
}

/* Voters Section */
.pnews {
  text-align: center;
  padding: 60px 90px;
  text-align: center;
  padding: 40px 20px;
}

.pnews.downloads > p.the-line-below, .pnews.follow > p.the-line-below {
  width: 100px;
  margin: 15px auto;
}

.pnews > p.the-line-below {
  width: 60px;
  margin: 15px auto;
}

.pnews .col-lg-4 {
  background: rgba(255, 255, 255, 0.25);
}

.pnews h1 {
  text-transform: uppercase;
  font-size: 2.5vw;
  margin-bottom: 10px;
  font-weight: bold;
  color: #484848;
}

p.the-line-below {
  display: block;
  border-top: 2.5px solid #00994a;
  text-align: center;
  width: 120px;
  margin: 15px auto;
}

.pnews h3 {
  font-size: 1.8vw;
  line-height: 2.6vw;
  margin-bottom: 40px;
  color: #484848;
}

.min-container {
  width: 71vw;
  margin: 0 auto;
}

.snip-image {
  background: #00994a;
  opacity: 1;
}

.latest-snip {
  position: relative;
  box-shadow: 0px 1px 8px 2px rgba(0, 0, 0, 0.15);
  border-bottom: 5px solid #000000;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.6);
}

.latest-snip:hover {
  border-bottom: 5px solid #00994a;
  transition: all .5s;
}

.latest-snip:hover img {
  opacity: 0.3;
  transition: opacity 0.5s;
}

.latest-snip > a {
  color: black;
  text-decoration: none;
}

.snip-content {
  padding: 35px 40px;
  text-align: left;
}

.snip-classification {
  font-size: 14px;
  font-weight: 600;
  color: rgba(153, 153, 153, 0.57);
}

.snip-classification > a {
  font-size: 15px;
  font-weight: 600;
  color: rgba(153, 153, 153, 0.57);
}

.snip-classification > a:hover {
  color: #999;
  text-decoration: none;
  cursor: pointer;
  transition: all 300ms;
}

.snip-date {
  float: right;
}

.snip-author {
  font-size: 14px;
  color: #555;
  font-weight: 600;
  /*float: right;
  margin-top: -15px;*/
}

.snip-headline {
  font-weight: 600;
  font-size: 20px;
  line-height: 25px;
  padding: 10px 0px;
}

.snip-headline a {
  color: #484848;
}

.snip-author a {
  color: #555;
}

.case-snippet {
  font-size: 16px;
  color: #555;
  font-weight: 600;
}

.latest-snip:hover .snip-headline {
  color: #00994a;
  transition: all .3s;
}

.snip-image img {
  width: 100%;
  height: auto;
}

.snip-p::after {
  content: "...";
}

.navbar-dark .navbar-brand img.vote-anc {
  left: 1.5vw;
  height: 40px;
  width: auto;
  margin-top: 23px;
}

.navbar {
  padding: 0px;
}

.bg-dark {
  background-color: #00994a !important;
}

.navbar-dark .navbar-brand img {
  width: 8.5vw;
  position: absolute;
  top: 0px;
  left: 1.25vw;
  z-index: 999;
}

.navbar-dark .navbar-nav .nav-link {
  font-size: 14px;
  color: #fff;
  transition: all 300ms;
  text-transform: uppercase;
}

.navbar-dark .navbar-nav .nav-link:focus {
  color: #fff;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: #fff;
  background: #008c44;
}

.navbar-dark .navbar-nav .active > .nav-link {
  color: #fff;
  background: #00803e;
}

.navbar-dark .navbar-nav .nav-link.active, .navbar-dark .navbar-nav .nav-link.show {
  color: #fff;
  background: #00803e;
}

.navbar-dark .navbar-nav .show > .nav-link {
  color: #fff;
  background: #00803e;
}

/* Carousel Fade */
.carousel-fade .carousel-inner .item {
  transition-property: opacity;
  opacity: 0;
}

.carousel-fade .carousel-inner .active {
  opacity: 1;
}

.carousel-fade .carousel-inner .active.left, .carousel-fade .carousel-inner .active.right {
  opacity: 0;
}

.carousel-fade .carousel-inner .next.left, .carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}

.carousel-fade .carousel-inner .next, .carousel-fade .carousel-inner .prev {
  left: 0;
  transform: translate3d(0, 0, 0);
}

.carousel-fade .carousel-inner .active.left, .carousel-fade .carousel-inner .active.right {
  left: 0;
  transform: translate3d(0, 0, 0);
}

.carousel-fade .carousel-control {
  z-index: 2;
}

html, body, .carousel {
  height: 100%;
}

.carousel-inner {
  height: 100%;
}

.carousel-inner .item {
  height: 100%;
}

/*
.item:nth-child(1) {
  background: #74c390;
}
.item:nth-child(2) {
  background: #51bce8;
}
.item:nth-child(3) {
  background: #e46653;
} */
.carousel-indicators {
  bottom: 25px;
}

ol.carousel-indicators {
  background: rgba(0, 0, 0, 0.6);
  padding: 10px 10px 15px 10px;
  width: 85%;
  margin: 0 auto;
}

ol.carousel-indicators > li {
  text-indent: 0;
  width: 200px;
  height: 40px;
  border: none;
  border-right: 2px solid #00994a;
  background-color: transparent;
  color: white;
  text-transform: uppercase;
  text-align: center;
  vertical-align: middle;
  opacity: 0.5;
  cursor: pointer;
}

.carousel-indicators .active {
  opacity: 1;
  background: transparent;
}

ol.carousel-indicators > li.lastone {
  border-right: none;
}

ol.carousel-indicators > li.oneline {
  padding-top: 10px;
}

.carousel-caption {
  text-align: left;
  bottom: 30%;
  left: 19%;
  text-transform: uppercase;
}

.carousel-caption.regweekend {
  left: 18%;
  bottom: 30%;
}

.carousel-caption.regweekend h2 {
  font-size: 3vw;
  font-weight: bold;
  margin-top: 0px;
  line-height: 3vw;
}

.carousel-caption.regweekend h5 {
  font-size: 3vw;
  font-weight: normal;
}

.carousel-caption.regweekend h6 {
  font-size: 2vw;
  font-weight: normal;
  margin-top: 0px;
  line-height: 3vw;
  margin-bottom: 1.5vw;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.carousel-caption.regweekend h4 {
  font-size: 2vw;
  font-weight: normal;
  margin-top: 0px;
  line-height: 0vw;
  margin-bottom: 1.5vw;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.carousel-caption h2 {
  font-size: 5.1vw;
  font-weight: bold;
  margin-top: 0px;
  line-height: 3.75vw;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.carousel-caption h3 {
  font-size: 5.4vw;
  font-weight: bold;
  margin-top: 0px;
  line-height: 4.75vw;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.carousel-caption h5 {
  font-size: 3.9vw;
  font-weight: bold;
  margin-bottom: 5px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.carousel-caption h4 {
  font-size: 3vw;
  font-weight: bold;
  margin-top: 6vw;
}

.carousel-caption h6 {
  font-size: 2.75vw;
  font-weight: normal;
  margin-top: 0px;
  line-height: 2.4vw;
  margin-bottom: 1.5vw;
}

.carousel-control-next, .carousel-control-prev {
  width: 3vw;
  overflow-x: hidden;
}

.carousel-control-next, .carousel-control-prev {
  opacity: 1;
}

.carousel-control-next > i, .carousel-control-prev > i {
  font-size: 1.25vw;
  background: rgba(0, 0, 0, 0.75);
  padding: 1vw 1.25vw;
}

button {
  border: none;
  font-size: 1vw;
  width: 12vw;
  height: 3.25vw;
  cursor: pointer;
  transition: all 300ms;
  text-transform: uppercase;
}

button.btn-light {
  color: black;
  background: white;
  border: 1px solid white;
}

button.btn-dark {
  color: white;
  background: transparent;
  border: 1px solid white;
  outline: none !important;
}

button.btn-light:hover, button.btn-light:focus, button.btn-light:active {
  color: white;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid white;
  outline: none !important;
  box-shadow: none !important;
}

button.manifesto.btn-light {
  color: black;
  background: white;
  border: 1px solid black;
}

button.manifesto.btn-dark {
  color: white;
  background: black;
  border: 1px solid black;
  outline: none !important;
}

button.manifesto.btn-light:hover, button.manifesto.btn-light:focus, button.manifesto.btn-light:active {
  color: white;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid white;
}

button.manifesto.btn-dark:hover {
  color: white;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid white;
}

button.btn-dark:hover {
  color: white;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid white;
}

.snippet {
  margin: 0px !important;
  cursor: pointer;
}

.snippet > .overlay {
  background: rgba(0, 0, 0, 0.6);
  height: 100%;
  position: absolute;
  width: 100%;
  transition: all 300ms;
  pointer-events: none;
}

.snippet:hover > .overlay {
  background: rgba(0, 128, 62, 0.85);
  transition: all 500ms;
}

.snippet > .overlay:active, .snippet > .overlay:focus {
  background: rgba(0, 128, 62, 0.85);
  transition: all 500ms;
}

/* Big Six */
.big-six {
  margin: 0px !important;
  cursor: pointer;
}

.big-six > .overlay {
  background: rgba(0, 0, 0, 0.6);
  height: 100%;
  position: absolute;
  width: 100%;
  transition: all 300ms;
}

.big-six:hover > .overlay {
  background: rgba(0, 128, 62, 0);
  transition: all 500ms;
}

.big-six > .overlay:active, .big-six > .overlay:focus {
  background: rgba(0, 128, 62, 0);
  transition: all 500ms;
}

p.segment-title {
  font-weight: bold;
  font-size: 1.25vw;
  text-align: center;
  position: absolute;
  color: white;
  z-index: 999;
  width: 100%;
  top: 40%;
}

/* Voters Section */
#voters, #register2vote {
  background: url(../img/pattern.png);
  background-size: cover;
}

.col-lg-8.weekend {
  text-align: center;
  padding: 40px 90px;
}

.col-lg-12.weekend {
  text-align: center;
  padding: 40px 20px;
}

.col-lg-12.weekend.downloads > p.the-line-below, .col-lg-12.weekend.follow > p.the-line-below {
  width: 100px;
  margin: 15px auto;
}

.col-lg-12.weekend > p.the-line-below {
  width: 60px;
  margin: 15px auto;
}

.weekend h1 {
  text-transform: uppercase;
  font-size: 2.5vw;
  font-weight: bold;
  color: #484848;
}

p.the-line-below {
  display: block;
  border-top: 2.5px solid #00994a;
  text-align: center;
  width: 120px;
  margin: 15px auto;
}

.weekend h3 {
  font-size: 1.8vw;
  line-height: 2.6vw;
  color: #484848;
}

a.anc-green {
  color: #00994a !important;
  font-weight: bold;
  transition: all 300ms;
}

a.anc-green:hover {
  color: #00803e !important;
  transition: all 300ms;
}

ul.nav.nav-tabs.nav-fill {
  width: 100%;
}

.nav-tabs {
  border-bottom: none;
}

ul.nav.nav-tabs.nav-fill > li.nav-item {
  padding: 5px;
}

.nav-tabs .nav-link {
  color: #fff;
  background-color: #00994a;
  border: none;
  transition: all 300ms;
  border-radius: 0px !important;
  padding: 12px;
  font-size: 14px;
}

.nav-tabs .nav-item.show .nav-link {
  color: #fff;
  background-color: #000000;
  border: none;
}

.nav-tabs .nav-link.active {
  color: #fff;
  background-color: #000000;
  border: none;
}

.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
  background: #000000;
}

.tab-pane.fade {
  padding: 20px;
  width: 100%;
}

section#countdown-container {
  background: #f9b900 !important;
}

.reg-form {
  background: url(../img/pattern-full.png);
  padding: 40px 30px;
}

.reg-form > h6 {
  font-size: calc(22px + 2vw);
  text-align: center;
  font-weight: normal;
  text-transform: uppercase;
}

#video-content {
  background: #00803e;
}

.video-content {
  background-size: cover;
  text-align: center;
  padding: 40px 90px;
}

.video-content h1 {
  text-transform: uppercase;
  font-size: 2.5vw;
  font-weight: bold;
  color: #ffffff;
}

.video-content h6 {
  text-transform: uppercase;
  font-size: 1.2vw;
  font-weight: bold;
  color: #ffffff;
  margin: 20px 0px;
}

.video-content p.the-line-below {
  display: block;
  border-top: 1px solid #ffffff;
  text-align: center;
  width: 100px;
  margin: 15px auto;
}

.video-content h3 {
  font-size: 1.9vw;
  color: #484848;
}

.video-frame {
  position: relative;
  padding-bottom: 48%;
  padding-top: 25px;
  height: 0;
}

.video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.social-media {
  background: url(../img/pattern-footy.png);
  padding: 40px;
}

.form-inline .form-group {
  width: 100%;
  margin-bottom: 10px;
}

.form-inline label {
  font-weight: 500;
  width: 24%;
  justify-content: left;
}

.form-inline .form-control {
  display: inline-block;
  width: 76%;
  height: 40px;
  border: none;
  border-radius: 0px;
  outline: none !important;
  font-size: 14px;
  color: #222222;
}

.form-control:focus {
  box-shadow: none;
}

.form-group .btn-primary {
  color: #fff;
  background-color: #00994a;
  border: none;
  border-radius: 0px;
  width: 76%;
  height: 40px;
  justify-content: right;
  outline: none !important;
}

.form-group .btn-primary:hover, .form-group .btn-primary:focus, .form-group .btn-primary:active, .form-group .btn-primary:visited {
  color: #fff;
  background-color: #00803e !important;
  border: none;
  outline: none !important;
  box-shadow: none !important;
}

.footy {
  background-size: cover;
  text-align: center;
  /* padding: 40px 90px; */
}

body h1.links-head {
  text-align: center;
  margin-bottom: 30px;
}

.footy h1 {
  text-transform: uppercase;
  font-size: 2.5vw;
  font-weight: bold;
  color: #333;
  text-align: left;
}

.footy p.the-line-below {
  display: block;
  border-top: 1px solid #ffffff;
  text-align: center;
  width: 100px;
  margin: 15px auto;
}

.footy h3 {
  font-size: 1.9vw;
  color: #484848;
}

.social-sections .col-md-3 > a {
  color: #ddd;
  font-size: 24px;
  letter-spacing: 0.5px;
  transition: all 300ms;
}

.social-sections .col-md-3 > a:hover, .social-sections .col-md-3 > a:active, .social-sections .col-md-3 > a:focus {
  color: #fff;
  text-decoration: none;
}

ul.footy-social {
  list-style: none;
  color: white;
  padding: 0px;
  margin: 0px;
}

.follow-us {
  padding: 30px 80px;
}

ul.footy-social li {
  padding: 10px 0px;
  font-size: 24px;
  text-align: left;
  font-weight: 500;
}

ul.footy-social li a {
  color: #333;
}

ul.footy-social li a:hover {
  /* color:#888; */
  transition: all 300ms;
}

.footsy {
  padding: 30px;
}

#socials {
  background: #00803e;
}

.socials {
  background: url(../img/pattern-light.png);
  background-size: cover;
  text-align: center;
  padding: 40px 90px;
}

.socials h1 {
  text-transform: uppercase;
  font-size: 2.5vw;
  font-weight: bold;
  color: #ffffff;
}

.socials p.the-line-below {
  display: block;
  border-top: 1px solid #ffffff;
  text-align: center;
  width: 100px;
  margin: 15px auto;
}

.socials h3 {
  font-size: 1.9vw;
  color: #484848;
}

.social-sections .col-md-3 > a {
  color: #ddd;
  font-size: 24px;
  letter-spacing: 0.5px;
  transition: all 300ms;
}

.social-sections .col-md-3 > a:hover, .social-sections .col-md-3 > a:active, .social-sections .col-md-3 > a:focus {
  color: #fff;
  text-decoration: none;
}

/*Media Queries*/
@media (min-width: 992px) {
  ul.nav.navbar-nav.ml-auto {
    margin-right: 1.5rem !important;
  }
  .hidden-lg {
    display: none !important;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .row.social-sections {
    padding-top: 40px;
  }
  .row.social-sections .col-md-3 {
    border-left: 2px solid #fff;
  }
  .row.social-sections .col-md-3.first {
    border-left: none;
  }
  .col-lg-12.weekend.downloads {
    text-align: center;
    padding: 4vw;
  }
  .download-link {
    padding: 0.5vw;
    font-size: 1vw;
  }
}

@media screen and (min-width: 1400px) {
  .navbar-dark .navbar-brand img {
    width: 7vw;
  }
  .navbar-dark .navbar-brand img.vote-anc {
    left: 9.5vw;
  }
  .logo-space {
    width: 10.65%;
    z-index: 999;
  }
  .nav-head {
    width: 88.75%;
    overflow-x: hidden;
  }
}

@media screen and (max-width: 1200px) {
  .navbar-dark .navbar-brand img.vote-anc {
    display: none !important;
  }
}

@media (max-width: 991.9px) {
  .hidden-sm {
    display: none !important;
  }
  a.hidden-lg > img {
    height: 65px !important;
    margin-top: -3px;
  }
  ul.nav.navbar-nav.ml-auto {
    border-top: 0.5px solid white;
    margin-bottom: -1px;
  }
  .navbar-dark .navbar-nav .nav-link {
    text-align: right;
    color: #fff;
    border-bottom: 0.5px solid white;
    padding: 8px 10px;
  }
  .navbar-dark .navbar-nav .active > .nav-link {
    background: #00803e;
  }
  .navbar-dark .navbar-nav .nav-link.active, .navbar-dark .navbar-nav .nav-link.show {
    background: #00803e;
  }
  .navbar-dark .navbar-nav .show > .nav-link {
    background: #00803e;
  }
  .carousel-caption h5 {
    font-size: 3.9vw;
    font-weight: bold;
    margin-bottom: 0px;
  }
  button.navbar-toggler {
    border: none;
    outline: none !important;
    padding: 0px;
    width: 30px;
    height: 84.67px;
  }
  .carousel-caption {
    text-align: left;
    top: 20%;
    left: 12%;
    top: 12%;
  }
  .carousel-caption.regweekend {
    left: 10%;
  }
  .carousel-caption h2 {
    margin-bottom: 2px;
  }
  body ol.carousel-indicators {
    display: none;
  }
  .video-content {
    padding: 40px 25px;
  }
  .video-frame {
    padding-bottom: 45%;
  }
  .video-content h1, .socials h1, .footy h1, .weekend h1 {
    font-size: 24px;
  }
  .video-content h6 {
    font-size: 16px;
  }
  .pnews h1 {
    font-size: 24px;
  }
  .pnews h3 {
    font-size: 16px;
    line-height: 24px;
    color: #484848;
  }
  button.slider {
    font-size: 8px;
    width: 90px;
    height: 20px;
  }
  button.btn-dark {
    background: rgba(0, 0, 0, 0.5);
    border: 0.25px solid white;
  }
  button.btn-light:hover, button.btn-light:focus, button.btn-light:active {
    border: 0.25px solid white;
    background: black;
  }
  button.btn-dark:hover, button.btn-dark:focus {
    background: black;
    border: 0.25px solid white;
    outline: none !important;
    box-shadow: none !important;
  }
  p.segment-title {
    font-size: 2.5vw;
    width: 100%;
    top: 40%;
  }
  .col-lg-8.weekend {
    padding: 40px 30px;
  }
  p#countdown {
    font-size: 8vw;
    padding: 0;
    margin: 0;
    font-weight: bold;
    text-align: center;
  }
  .tab-pane.fade {
    padding-bottom: 0px;
  }
  .weekend h3 {
    font-size: 22px;
    line-height: 32px;
  }
  .col-lg-12.weekend > p.the-line-below {
    width: 100px;
    margin: 15px auto;
  }
  ul.nav.nav-tabs.nav-fill > li.nav-item {
    width: 100%;
    padding: 5px 10px;
  }
  .social-sections .col-md-3 > a {
    font-size: 20px;
    padding: 10px;
    display: block;
  }
  .copyright > p {
    font-size: 12px;
  }
  .row.social-sections {
    padding-top: 30px;
  }
  .downloads img {
    margin-bottom: 15px !important;
  }
  button.manifesto.btn-light, button.manifesto.btn-dark {
    font-size: 9px;
    width: 100px;
    height: 25px;
  }
  .nav-head {
    width: 100vw;
  }
  body .head-area {
    margin-right: 0px !important;
    margin-left: 0px !important;
  }
  .navbar.bg-dark {
    padding: 0px 30px;
  }
}

@media (max-width: 480px) {
  .post-headline {
    font-size: 21px;
    line-height: 23px;
  }
  .row.social-sections {
    padding: 0px;
    padding-top: 0px;
  }
  .form-inline .form-control {
    width: 100%;
    display: block;
  }
  .form-inline label {
    display: none;
  }
  .form-group .btn-primary {
    width: 100%;
  }
  .weekend h3 {
    font-size: 16px;
    line-height: 22px;
  }
  .col-lg-12.weekend > p.the-line-below {
    width: 100px;
    margin: 15px auto;
  }
}

/* Colors */
.anc-green {
  color: #00994a !important;
}

.anc-green-bg {
  background: #00994a !important;
}

.anc-black {
  color: #000000 !important;
}

.anc-black-bg {
  background: #000000 !important;
}

.anc-yellow {
  color: #ffcc03 !important;
}

.anc-yellow-bg {
  background: #ffcc03 !important;
}

#share {
  width: 100%;
  margin: 10px auto;
  text-align: center;
}

#share a {
  width: 55px;
  height: 50px;
  display: inline-block;
  margin: 8px;
  font-size: 20px;
  color: #fff;
  opacity: 0.75;
  transition: opacity 0.15s linear;
}

#share a:hover {
  opacity: 1;
}

#share i {
  position: relative;
  top: 42%;
  transform: translateY(-50%);
}

/* buttons */
/* icons */
/* colors */
.facebook {
  background: #3b5998;
}

.twitter {
  background: #55acee;
}

.whatsapp {
  background: #25d366;
}

/*Zweli*/
.modal-header {
  border-radius: 0 !important;
  padding: 0;
  border-bottom: 0px solid #ffffff !important;
}

.close {
  float: right;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
  /* border: 1px solid red !important;
  width: 4vw;*/
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0 !important;
  outline: 0;
}

.modal-body {
  padding: 10px 50px 50px 50px;
  z-index: 1;
}

.modal-header .close {
  padding: 10px 22px 10px 5px;
  margin: 0rem 0rem 0rem auto;
}

.modal-dialog {
  max-width: 90%;
  margin: 0 auto;
}

#jobsM, #EcoM, #HealthM, #SecurityM, #SafeM, #SkillsM, #HonestM, #UnitedM {
  padding: 0 !important;
}

.modal-header > button {
  width: auto;
  z-index: 99;
  height: 60px;
}

.modal-body > h5, .card-body > h5 {
  font-size: 25px;
}

.modal-content {
  margin: 5% 0%;
}

.card {
  border: none;
  background-color: transparent;
}

.card-header {
  background-color: transparent;
  border-bottom: none;
}

.card-body {
  text-align: justify;
}

.card-body > h3, .card-body > h4, .card-body > h5, .card-body > h6 {
  font-weight: bold;
  text-transform: uppercase;
}

button.register2vote {
  color: white;
  font-weight: 500;
  background: #00994a;
  border: none;
  border-radius: 0 !important;
  outline: none !important;
  width: 100%;
  height: 50px;
  padding: 10px;
  text-decoration: none !important;
}

button.register2vote:hover {
  color: #ECECEC;
  background: #00803e;
  text-decoration: none !important;
}

.card-header .btn[aria-expanded=true] {
  text-decoration: none !important;
  background: #000000;
}

.downloads {
  text-align: center;
}

.downloads > a {
  text-decoration: none !important;
}

.overlay {
  background: transparent;
  position: relative;
  width: unset;
  margin: 0 auto;
}

.overlay:hover {
  background: black;
  transition: all 300ms;
}

.overlay:hover > img {
  opacity: 0.5;
  transition: all 300ms;
}

.overlay:hover > i {
  display: none !important;
  transition: all 300ms;
  color: white;
}

.overlay > i {
  display: none !important;
  position: absolute;
  right: 50%;
  top: 15%;
  z-index: 9;
}

.download-link {
  width: 100%;
  background: #00994a;
  color: white;
  padding: 8px;
}

.download-link:hover {
  background: #00803e;
}

.download-link a {
  color: white;
  padding: 5px;
}

a:hover {
  text-decoration: none !important;
}

/* News Section */
#portfoliolist {
  min-height: 200px;
}

#filters {
  padding: 0;
  list-style: none;
  margin: 0 auto;
  padding-bottom: 25px;
  max-width: 1045px;
}

#filters li {
  float: left;
}

.all-link {
  background-color: #000000;
}

.all-link > span > a {
  color: #ffffff;
}

#filters li span {
  display: block;
  padding: 5px 10.5px;
  text-decoration: none;
  color: #666;
  cursor: pointer;
  border: 0.5px solid #00803e;
  margin: 2px;
}

#filters li span.active {
  background: #00803e;
  border: 0.5px solid #00803e;
  color: #fff;
}

#filters li span:hover {
  background: #00994a;
  color: white;
  border: 0.5px solid #00994a;
  transition: all 300ms;
}

#filters li span:active {
  background: #00803e;
  color: #fff;
  transition: all 300ms;
  border: 0.5px solid #00803e;
}

#portfoliolist .portfolio {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  width: 30%;
  display: none;
  float: left;
}

/*  #Mobile (Portrait) - Note: Design for a width of 320px */
@media only screen and (max-width: 767px) {
  #portfoliolist .portfolio {
    width: 100%;
    margin: 1%;
  }
}

.load-more-btn {
  background: #000;
  text-align: center;
  text-transform: uppercase;
  height: 45px;
  margin-top: 40px;
  margin-left: 20px;
  width: 150px;
  letter-spacing: 1px;
  padding: 18px 30px;
  border-radius: 10px;
  color: #fff;
}

.load-more-btn:hover {
  background: #ffffff;
  text-align: center;
  text-transform: uppercase;
  height: 45px;
  margin-top: 40px;
  margin-left: 20px;
  width: 150px;
  letter-spacing: 1px;
  padding: 18px 30px;
  border-radius: 10px;
  color: #000;
  border: 2px solid #000000;
}

.h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: bold;
}

.h1.white, .h2.white, .h3.white, .h4.white, .h5.white, .h6.white, a.white, p.white {
  color: #fff;
}

.h1.black, .h2.black, .h3.black, .h4.black, .h5.black, .h6.black, a.black, p.black {
  color: #000;
}

.h1.charcoal, .h2.charcoal, .h3.charcoal, .h4.charcoal, .h5.charcoal, .h6.charcoal, a.charcoal, p.charcoal {
  color: #454545;
}

.h1.dark-green, .h2.dark-green, .h3.dark-green, .h4.dark-green, .h5.dark-green, .h6.dark-green, a.dark-green, p.dark-green {
  color: #00803e;
}

a:hover.charcoal {
  color: #00803e;
}

a:hover.dark-green {
  color: #00ab54;
}

.h2 {
  font-size: 24px;
  line-height: calc(24px + 12px);
}

@media screen and (min-width: 576px) {
  .h2 {
    font-size: calc(24px + 26 * ((100vw - 576px) / 624));
    line-height: calc(24px + 26 * ((100vw - 576px) / 624) + 12px);
  }
}

@media screen and (min-width: 1200px) {
  .h2 {
    font-size: 50px;
    line-height: calc(50px + 25px);
  }
}

.h3 {
  font-size: 18px;
  line-height: calc(18px + 9px);
}

@media screen and (min-width: 576px) {
  .h3 {
    font-size: calc(18px + 22 * ((100vw - 576px) / 624));
    line-height: calc(18px + 22 * ((100vw - 576px) / 624) + 9px);
  }
}

@media screen and (min-width: 1200px) {
  .h3 {
    font-size: 40px;
    line-height: calc(40px + 20px);
  }
}

.h4 {
  font-size: 15px;
  line-height: calc(15px + 7.5px);
}

@media screen and (min-width: 576px) {
  .h4 {
    font-size: calc(15px + 15 * ((100vw - 576px) / 624));
    line-height: calc(15px + 15 * ((100vw - 576px) / 624) + 7.5px);
  }
}

@media screen and (min-width: 1200px) {
  .h4 {
    font-size: 30px;
    line-height: calc(30px + 15px);
  }
}

.normal {
  font-weight: normal;
}

.uppercase {
  text-transform: uppercase;
}

.lightHeading {
  font-weight: 400;
}

.smallIcon {
  font-size: 10px;
  vertical-align: top;
  display: inline-block;
  padding-left: 7px;
  color: #ccc;
}

.bg-yellow-print {
  background: #f9b900;
  background-image: url(../img/pattern-full.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-green-print {
  background: #00803e;
  background-image: url(../img/pattern-light.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.daysContainer {
  display: inline-block;
  border-right: 5px solid #00ab54;
  padding: 0 3vw 0 0;
  margin: 0 3vw 0 0;
  line-height: 0;
  vertical-align: middle;
}

.daysContainer p {
  margin: 0;
  font-size: calc(24px + 2vw);
  line-height: calc(24px + 2vw);
}

.daysContainer .daysText {
  margin: 0;
  padding: 0;
  font-size: calc(12px + 1vw);
  line-height: calc(12px + 1vw);
  font-weight: 700;
  vertical-align: top;
}

.countdownDetails {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  line-height: calc(36px + 2vw);
  font-size: calc(36px + 2vw);
}

.top-banner h3 {
  text-align: center;
  display: block;
  font-size: 15px;
  line-height: calc(15px + 1.5px);
  font-weight: 500;
  letter-spacing: 2px;
  margin: 15px 0 10px;
  text-transform: uppercase;
}

@media screen and (min-width: 576px) {
  .top-banner h3 {
    font-size: calc(15px + 35 * ((100vw - 576px) / 624));
    line-height: calc(15px + 35 * ((100vw - 576px) / 624) + 1.5px);
  }
}

@media screen and (min-width: 1200px) {
  .top-banner h3 {
    font-size: 50px;
    line-height: calc(50px + 5px);
  }
}

.logo-space a {
  height: 100%;
  display: block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: scale(0.9);
}

@media (min-width: 768px) {
  .top-banner h3 {
    margin: 40px 0 10px;
  }
}

.sectionHeading {
  display: block;
  width: 100%;
  position: relative;
  padding: 5px;
}

.sectionHeading__yellowBG {
  background-color: #ffcc00;
}

.sectionHeading__downArrow:before {
  content: '';
  position: absolute;
  left: 25px;
  top: 100%;
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-top: 10px solid #000;
}

.sectionHeading__downArrow__L:before {
  left: 0;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-top: 20px solid #000;
}

.sectionHeading h3 {
  text-transform: uppercase;
  font-size: 18px;
  line-height: calc(18px + 1.8px);
  font-weight: bold;
  margin: 0;
}

@media screen and (min-width: 576px) {
  .sectionHeading h3 {
    font-size: calc(18px + 4 * ((100vw - 576px) / 624));
    line-height: calc(18px + 4 * ((100vw - 576px) / 624) + 1.8px);
  }
}

@media screen and (min-width: 1200px) {
  .sectionHeading h3 {
    font-size: 22px;
    line-height: calc(22px + 2.2px);
  }
}

.voting-process img {
  max-width: 90%;
  display: block;
  margin: 0 auto;
}

.news__articals__image {
  padding-bottom: 66%;
  background-color: #000;
}

.news__sidebar {
  display: inline-block;
}

.news__sidebar img {
  max-width: 100%;
}

#snippets.active {
  border-bottom: 10px solid #00ab54;
}

#snippets .snippet.active .overlay {
  background-color: #00ab54;
}

.summary {
  border: 1px solid #ffcc00;
  min-height: calc(100% - 30px);
  display: block;
  margin-bottom: 30px;
  padding-top: 10px;
}

.summary__header .h3 {
  display: block;
}

.summary__header .h4.normal {
  display: inline-block;
  max-width: 1000px;
  margin: 0 5vw;
}

.summary__image {
  padding-bottom: 40%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.summary__text {
  display: inline-block;
  max-width: 80%;
  text-align: center;
  margin: 15px;
}

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

.manifesto-downloads > li {
  margin: 6px;
}

.manifesto-downloads > li a {
  display: inline-block;
  background-color: #fff;
  box-shadow: 2px 2px 10px -4px rgba(0, 0, 0, 0.3);
  border: 1px solid #00ab54;
  color: #00ab54;
  font-size: 16px;
  line-height: calc(16px + 8px);
  padding: 6px 20px 3px 12px;
}

@media screen and (min-width: 576px) {
  .manifesto-downloads > li a {
    font-size: calc(16px + 2 * ((100vw - 576px) / 624));
    line-height: calc(16px + 2 * ((100vw - 576px) / 624) + 8px);
  }
}

@media screen and (min-width: 1200px) {
  .manifesto-downloads > li a {
    font-size: 18px;
    line-height: calc(18px + 9px);
  }
}

.manifesto-downloads > li a i {
  margin-right: 6px;
}

.manifesto-downloads > li a:hover {
  color: #00803e;
}

.manifesto-downloads--list > li {
  display: inline-block;
}

.achievement {
  margin-bottom: 30px;
}

.achievement img {
  width: 100%;
}

.clips__image {
  padding-bottom: 60%;
  background-color: #eee;
  background-size: cover;
  background-position: center;
}

.clips__text p {
  font-size: 16px;
  line-height: calc(16px + 8px);
}

@media screen and (min-width: 576px) {
  .clips__text p {
    font-size: calc(16px + 4 * ((100vw - 576px) / 624));
    line-height: calc(16px + 4 * ((100vw - 576px) / 624) + 8px);
  }
}

@media screen and (min-width: 1200px) {
  .clips__text p {
    font-size: 20px;
    line-height: calc(20px + 10px);
  }
}

.carousel-indicators a {
  color: #fff;
}

ol.carousel-indicators > li:first-child {
  border-left: 2px solid #00994a;
}

.carouselContainer {
  max-width: 330px;
  display: block;
  margin: 0 auto;
}

.verticalSlider {
  height: auto;
  padding: 0 30px;
}

.verticalSlider .pointDetailsContainer img {
  max-width: 150px;
  width: 60%;
}

.verticalSlider .pointDetailsContainer p {
  margin-bottom: 5px;
}

.verticalSlider .pointDetailsContainer ul {
  text-align: left;
  margin-left: 0px;
  padding-left: 15px;
}

.verticalSlider .carousel-control-next,
.verticalSlider .carousel-control-prev {
  line-height: 20px;
  color: #000;
  font-size: 26px;
}

.carousel--overlay {
  background-color: #000;
}

.carousel--overlay img {
  opacity: 0.85;
}

.carousel-indicators .active {
  opacity: 0.5;
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-duration: .6s;
  transition-property: opacity;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  opacity: 0;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-prev {
  transform: translateX(0);
  transform: translate3d(0, 0, 0);
}

section.white, div.white {
  background-color: #fff;
}

.download__sidebar {
  display: inline-block;
  max-width: 200px;
  vertical-align: middle;
}

.download__sidebar img {
  max-width: 90%;
}

.fill-screen {
  min-height: calc(100vh - 400px);
}

.eventsImage {
  padding-top: 60%;
  background-color: #efefef;
  background-size: cover;
  background-position: top left;
}

a .news__articles {
  background-color: #fff;
  margin-bottom: 15px;
  box-shadow: 0 0 15px -5px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

a .news__articles p {
  color: #454545 !important;
  font-size: 13px;
  line-height: calc(13px + 5.2px);
}

@media screen and (min-width: 576px) {
  a .news__articles p {
    font-size: calc(13px + 4 * ((100vw - 576px) / 624));
    line-height: calc(13px + 4 * ((100vw - 576px) / 624) + 5.2px);
  }
}

@media screen and (min-width: 1200px) {
  a .news__articles p {
    font-size: 17px;
    line-height: calc(17px + 6.8px);
  }
}

.news__headline {
  font-size: 16px;
  line-height: calc(16px + 6.4px);
  padding-bottom: 0;
  margin-bottom: 0;
  font-weight: bold;
}

@media screen and (min-width: 576px) {
  .news__headline {
    font-size: calc(16px + 12 * ((100vw - 576px) / 624));
    line-height: calc(16px + 12 * ((100vw - 576px) / 624) + 6.4px);
  }
}

@media screen and (min-width: 1200px) {
  .news__headline {
    font-size: 28px;
    line-height: calc(28px + 11.2px);
  }
}

.newsmain {
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 0 15px -5px rgba(0, 0, 0, 0.1);
}

.newsmain__menu {
  margin: 0;
  padding: 0;
}

.newsmain__menu > li {
  display: inline-block;
}

.newsmain__menu > li a {
  font-size: 15px;
  line-height: calc(15px + 6px);
  font-weight: bold;
  padding: 0 20px;
  color: #454545;
}

@media screen and (min-width: 576px) {
  .newsmain__menu > li a {
    font-size: calc(15px + 7 * ((100vw - 576px) / 624));
    line-height: calc(15px + 7 * ((100vw - 576px) / 624) + 6px);
  }
}

@media screen and (min-width: 1200px) {
  .newsmain__menu > li a {
    font-size: 22px;
    line-height: calc(22px + 8.8px);
  }
}

.newsmain__menu > li.active:after {
  content: '';
  display: block;
  width: 80%;
  height: 3px;
  background-color: #00ab54;
  margin: 0 auto;
  margin-top: 10px;
}

.newsmain__source, .newsmain__date {
  color: #666;
  font-size: 10px;
  line-height: calc(10px + 0px);
  margin-bottom: 13px;
  display: inline-block;
  margin-right: 15px;
}

@media screen and (min-width: 576px) {
  .newsmain__source, .newsmain__date {
    font-size: calc(10px + 3 * ((100vw - 576px) / 624));
    line-height: calc(10px + 3 * ((100vw - 576px) / 624) + 0px);
  }
}

@media screen and (min-width: 1200px) {
  .newsmain__source, .newsmain__date {
    font-size: 13px;
    line-height: calc(13px + 0px);
  }
}

.newsmain__link {
  color: #454545;
  display: block;
}

.newsmain__content-wrapper {
  padding-left: 90px;
  position: relative;
  min-height: 100px;
}

.newsmain__content-wrapper img {
  position: absolute;
  top: 6px;
  left: 0;
  width: 80px;
}

.newsmain__content-wrapper p {
  font-size: 13px;
  line-height: calc(13px + 5.2px);
  color: #454545;
}

@media screen and (min-width: 576px) {
  .newsmain__content-wrapper p {
    font-size: calc(13px + 2 * ((100vw - 576px) / 624));
    line-height: calc(13px + 2 * ((100vw - 576px) / 624) + 5.2px);
  }
}

@media screen and (min-width: 1200px) {
  .newsmain__content-wrapper p {
    font-size: 15px;
    line-height: calc(15px + 6px);
  }
}

@media (min-width: 768px) {
  a .news__articles h2 {
    line-height: 36px;
    font-size: 15px;
    line-height: calc(15px + 6px);
  }
}

@media screen and (min-width: 768px) and (min-width: 576px) {
  a .news__articles h2 {
    font-size: calc(15px + 9 * ((100vw - 576px) / 624));
    line-height: calc(15px + 9 * ((100vw - 576px) / 624) + 6px);
  }
}

@media screen and (min-width: 768px) and (min-width: 1200px) {
  a .news__articles h2 {
    font-size: 24px;
    line-height: calc(24px + 9.6px);
  }
}

@media (min-width: 768px) {
  .newsmain {
    padding-right: 280px !important;
    min-height: 180px;
  }
  .newsmain h2 {
    line-height: 36px;
  }
  .newsmain__content-wrapper {
    padding-left: 0;
    min-height: inherit;
    position: static;
  }
  .newsmain__content-wrapper img {
    position: absolute;
    top: 15px;
    right: 15px;
    left: auto;
    width: 250px;
  }
  .newsmain__link {
    color: #454545;
    display: block;
  }
}

.newsletter-form__wrapper {
  position: relative;
}

.newsletter-form__overlay {
  background-color: #ffcc00;
  pointer-events: none;
  opacity: 0;
  position: absolute;
  display: flex;
  justify-content: center;
  padding: 30px;
  align-items: center;
  flex-direction: column;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.newsletter-form__overlay i {
  font-size: calc(50px + 3vw);
  margin-bottom: 15px;
  color: #00ab54;
}

.newsletter-form__overlay i.fa-spinner {
  animation: spin 0.5s steps(8, end) infinite;
  font-size: 40px;
}

.newsletter--loading .newsletter-form__overlay--loading {
  opacity: 1;
  pointer-events: auto;
}

.newsletter--success .newsletter-form__overlay--success {
  opacity: 1;
  pointer-events: auto;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.side__head {
  font-size: 15px;
  line-height: calc(15px + 6px);
  font-weight: bold;
  text-transform: uppercase;
}

@media screen and (min-width: 576px) {
  .side__head {
    font-size: calc(15px + 7 * ((100vw - 576px) / 624));
    line-height: calc(15px + 7 * ((100vw - 576px) / 624) + 6px);
  }
}

@media screen and (min-width: 1200px) {
  .side__head {
    font-size: 22px;
    line-height: calc(22px + 8.8px);
  }
}

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

.side__list > li {
  border-bottom: 1px solid #eee;
}

.side__list > li a {
  display: block;
  font-size: 12px;
  line-height: calc(12px + 2.4px);
  padding: 10px 0;
}

@media screen and (min-width: 576px) {
  .side__list > li a {
    font-size: calc(12px + 4 * ((100vw - 576px) / 624));
    line-height: calc(12px + 4 * ((100vw - 576px) / 624) + 2.4px);
  }
}

@media screen and (min-width: 1200px) {
  .side__list > li a {
    font-size: 16px;
    line-height: calc(16px + 3.2px);
  }
}

.side__list > li:last-child {
  border: none;
}

.carousel-indicators a {
  color: #fff;
}

ol.carousel-indicators > li:first-child {
  border-left: 2px solid #00994a;
}

.carouselContainer {
  max-width: 330px;
  display: block;
  margin: 0 auto;
}

.verticalSlider {
  height: auto;
  padding: 0 30px;
}

.verticalSlider .pointDetailsContainer img {
  max-width: 150px;
  width: 60%;
}

.verticalSlider .pointDetailsContainer p {
  margin-bottom: 5px;
}

.verticalSlider .pointDetailsContainer ul {
  text-align: left;
  margin-left: 0px;
  padding-left: 15px;
}

.verticalSlider .carousel-control-next,
.verticalSlider .carousel-control-prev {
  line-height: 20px;
  color: #000;
  font-size: 26px;
}

.carousel--overlay {
  background-color: #000;
}

.carousel--overlay img {
  opacity: 0.85;
}

.carousel-indicators .active {
  opacity: 0.5;
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-duration: .6s;
  transition-property: opacity;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  opacity: 0;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-prev {
  transform: translateX(0);
  transform: translate3d(0, 0, 0);
}

.greyBlock {
  width: 100%;
  background-color: #f5f5f5;
  border: 1px solid #707070;
  display: inline-block;
  box-shadow: 2px 2px 10px -5px #000;
  max-width: 440px;
  margin: 0 auto;
  display: block;
}

.greyBlock .blockImageContainer {
  width: 75%;
  margin: 0 auto;
}

.greyBlock .blockImage {
  padding-bottom: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.faqContainer i {
  color: #000;
  position: absolute;
  top: 5px;
  right: 15px;
  font-size: 22px;
  transform: rotateZ(0);
  pointer-events: none;
  transition: transform 0.3s ease-in-out;
}

.faqContainer.open i {
  transform: rotateZ(180deg);
}

.faqContainer:before {
  content: "Question";
  display: inline-block;
  background-color: #00803e;
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 100;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
}

.faqHeading {
  display: block;
  padding-top: 45px;
  transition: color 0.2s ease-in-out;
}

.faqHeading:hover {
  color: #00ab54;
}

.faqBody {
  border-top: 1px solid #eee;
}

.faqBody .spacer {
  display: block;
  height: 10px;
}

.quote {
  font-size: 18px;
  line-height: calc(18px + 10.8px);
}

@media screen and (min-width: 576px) {
  .quote {
    font-size: calc(18px + 18 * ((100vw - 576px) / 624));
    line-height: calc(18px + 18 * ((100vw - 576px) / 624) + 10.8px);
  }
}

@media screen and (min-width: 1200px) {
  .quote {
    font-size: 36px;
    line-height: calc(36px + 21.6px);
  }
}

.quote--italic {
  font-style: italic;
}

.wrapper__video {
  position: relative;
  display: block;
}

.wrapper__video:before {
  content: '';
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.wrapper__video:after {
  content: "\f167";
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  font-family: "Font Awesome 5 Brands";
  font-size: 40px;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  transform: translateX(-50%) translateY(-50%) scale(1);
}

.wrapper__video:hover:before {
  opacity: 0.5;
}

.wrapper__video:hover:after {
  transform: translateX(-50%) translateY(-50%) scale(1);
}

.reason__card {
  display: block;
  padding: 10px;
  margin-bottom: 85px;
  position: relative;
}

.reason__card img {
  transform: scale(0.9) rotate(-2deg);
  transition: 0.2s transform ease-out;
}

.reason__card:hover img {
  transform: scale(1) rotate(0);
}

.reason__card:hover .reason__people-text {
  transform: scale(1);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.reason__people-text {
  display: block;
  position: absolute;
  bottom: -70px;
  left: 20px;
  right: 20px;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 4px 14px 14px 14px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: 0.2s all ease-out;
}

.reason__people-text p {
  text-align: left !important;
  line-height: 18px;
  margin-bottom: 5px;
  color: #00ab54;
}

.reason__people-text h2 {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
  margin-top: 14px;
  margin-bottom: 2px;
}

.tipPoupContent {
  display: flex;
  align-items: center;
  padding: 10px;
}

.tipPoupContent img {
  width: 130px;
}

.tipPoupContent .content {
  padding: 0 10px;
}

.tip__md {
  display: flex;
  align-items: center;
}

.tip__md--ul {
  list-style: none;
  padding: 0;
}

.tip__md img {
  max-width: 18%;
  min-width: 100px;
  margin-right: 20px;
}

.tip__md .popupTipHeading {
  color: #000;
  font-size: 20px;
  font-weight: 700;
}

@media only screen and (max-width: 500px) {
  .tip__md {
    flex-direction: row;
  }
  .tip__md--ul {
    width: 100%;
  }
  .tip__md img {
    width: 100%;
  }
}

.tip {
  opacity: 0;
  border-radius: 50%;
  position: absolute;
  width: 19%;
}

.tip:before {
  content: '';
  display: block;
  position: absolute;
  opacity: 0.5;
  width: 70%;
  padding-top: 70%;
  border-radius: 50%;
}

.tip:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.tip__wrapper {
  position: relative;
  display: inline-block;
}

.tip--01 {
  top: 3%;
  left: 59%;
  background-color: red;
}

.tip--01:before {
  background-color: red;
  top: 60%;
  left: -30%;
}

.tip--02 {
  top: 15%;
  left: 75.5%;
  background-color: purple;
}

.tip--02:before {
  background-color: purple;
  top: 43%;
  left: -46%;
}

.tip--03 {
  top: 33%;
  left: 80.5%;
  background-color: blue;
}

.tip--03:before {
  background-color: blue;
  top: 25%;
  left: -30%;
}

.tip--04 {
  top: 52%;
  left: 77.5%;
  background-color: green;
}

.tip--04:before {
  background-color: green;
  top: 3%;
  left: -26%;
}

.tip--05 {
  top: 71.5%;
  left: 69.5%;
  background-color: pink;
}

.tip--05:before {
  background-color: pink;
  top: -22%;
  left: -29%;
}

.tip--06 {
  top: 79.7%;
  left: 47.6%;
  background-color: orange;
}

.tip--06:before {
  background-color: orange;
  top: -37%;
  left: 4%;
}

.tip--07 {
  top: 76.5%;
  left: 22%;
  background-color: red;
}

.tip--07:before {
  background-color: red;
  top: -27%;
  left: 58%;
}

.tip--08 {
  top: 64.7%;
  left: 5.6%;
  background-color: purple;
}

.tip--08:before {
  background-color: purple;
  top: -11%;
  left: 74%;
}

.tip--09 {
  top: 46%;
  left: 1%;
  background-color: blue;
}

.tip--09:before {
  background-color: blue;
  top: 13%;
  left: 67%;
}

.tip--10 {
  top: 24.8%;
  left: 0.4%;
  background-color: green;
}

.tip--10:before {
  background-color: green;
  top: 38%;
  left: 74%;
}

.tip--11 {
  top: 8.7%;
  left: 13.4%;
  background-color: pink;
}

.tip--11:before {
  background-color: pink;
  top: 61%;
  left: 54%;
}

.tip--12 {
  top: 0;
  left: 35.6%;
  background-color: orange;
}

.tip--12:before {
  background-color: orange;
  top: 73%;
  left: 14%;
}

.message-pop {
  position: relative;
  max-width: 380px;
  height: 380px;
  background-image: url(/site/themes/voteanc/img/Message_CR.jpg);
  background-size: cover;
  background-position: center;
}

.message-pop audio {
  position: absolute;
  left: 50%;
  width: 80%;
  bottom: 15px;
  transform: translateX(-50%);
}

.blogPageCarousel {
  padding: 20px 0 0;
}

.owl-carousel--containe {
  position: relative;
  display: block;
}

.single p {
  text-align: justify;
}

.single__caption {
  font-size: 14px;
}

.blogCarouselItem {
  text-align: center;
}

.blogCarouselItem-image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 100%;
}

.blogCarouselItem-title {
  margin: 10px 0 0;
  font-size: 16px;
  color: #333;
}

.owl-prev,
.owl-next {
  padding: 30px 10px;
  -webkit-appearance: none;
  background-color: transparent;
  font-size: 50px;
  position: absolute;
  top: 50%;
  width: auto;
  height: auto;
  line-height: initial;
  transform: translateY(-50%);
}

.owl-prev:focus,
.owl-next:focus {
  outline: none;
}

.owl-prev {
  left: -30px;
}

.owl-next {
  right: -30px;
}

.recentPostsContainer {
  background-color: #fff;
  padding: 15px;
}

.recentPosts {
  padding-left: 90px;
  min-height: 90px;
  position: relative;
  display: block;
}

.recentPosts-image {
  height: 80px;
  width: 80px;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.recentPosts-title {
  color: #454545;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.recentPosts-date {
  color: #bbb;
  margin: 0;
  font-size: 14px;
}

.musicIframe {
  max-width: 100%;
}

twitter-widget {
  margin: 0 auto !important;
}

.htmlCode {
  padding: 20px 0;
}

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