/* #region VARIABLES */
:root {
  --dark-blue-a: #003a76;
  --dark-blue-b: #06488b;
  --blue: #0c529a;
  --text-a-muted: #525252;
  --text-b-muted: #8e8e8e;
  --text-c-muted: #999999;
  --text-blue: #0d38c9;

  --break-xxl: 1600px;
  --break-xl: 1200px;
  --break-l: 992px;
  --break-md: 768px;
  --break-sm: 576px;
}
/* #endregion */

/* Hiding the cookie consent blue circle on bottom left of the screen */
.cky-revisit-bottom-left {
  display: none !important;
}

/* #region BASE */
body {
  margin: 0 auto;
  font-family: "Roboto", sans-serif;
  background-color: #fafafa;
  max-width: 1760px;
  overflow-x: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
}
/* #endregion */

/* #region UTILITIES */
.container-fluid {
  max-width: 1760px;
}
.bg-lgray {
  background-color: #fafafa;
}
.text-blue {
  color: var(--text-blue) !important;
}
.spacer {
  flex: 1 1 auto;
}
.site-main {
  display: contents;
}
.hu-border {
  position: relative;
  margin-left: 10px;
}
.hu-border .border-red,
.hu-border .border-white,
.hu-border .border-green {
  position: absolute;
  left: -10px;
  height: 33%;
  background-color: red;
  width: 5px;
}
.hu-border .border-white {
  top: 33%;
  height: 34%;
  background-color: white;
}
.hu-border .border-green {
  bottom: 0;
  background-color: green;
}

/* overwrite for page top to be white & thin */
.page-info .hu-border .border-green,
.page-info .hu-border .border-white,
.page-info .hu-border .border-red {
  background-color: white;
  width: 2.5px;
}

.news-card {
  display: block;
  width: 350px;
  background-color: #fff;
  position: relative;
  padding-bottom: 100px;
}

.news-card:hover {
  text-decoration: none;
}

.news-card .news-image {
  width: 100%;
  height: 200px;
  background-size: cover !important;
  background-position: center !important;
}

.news-card .body {
  padding: 0 15px;
  width: 100%;
}
.news-card .footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 25px 25px 25px;
}
.news-card .news-title {
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--text-blue);
}

.news-card .news-description {
  font-size: 18px;
  text-align: justify;
  font-weight: 300;
  color: var(--text-a-muted);
}

.news-card .news-time {
  color: var(--text-b-muted);
  font-weight: 400;
}
.news-card .news-time svg {
  color: inherit !important;
  margin-top: -4.5px;
  margin-right: 10px;
  width: 20px;
}
.news-card .news-title,
.news-card .news-time {
  font-size: 24px;
}
@media (max-width: 1600px) {
  .news-card .news-title,
  .news-card .news-time {
    font-size: 20px;
  }
  .news-card .news-description {
    font-size: 16px;
  }
}
@media (max-width: 1200px) {
  .news-card .news-title,
  .news-card .news-time {
    font-size: 18px;
  }
  .news-card .news-description {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .news-card .news-title,
  .news-card .news-time {
    font-size: 17px;
  }
  .news-card .news-image {
    height: 150px;
  }
  .news-card .news-time svg {
    width: 25px;
    margin-top: -3px;
    margin-right: 5px;
  }
  .news-card .news-description {
    font-size: 14px;
  }
  .news-card .footer {
    padding: 0 15px 25px 15px;
  }
}
@media (max-width: 576px) {
  .news-card .news-time {
    font-size: 14px;
  }
  .news-card .news-time svg {
    width: 20px;
  }
  .news-card .news-image {
    height: 125px;
  }
  .news-card .footer {
    padding: 0 10px 25px 10px;
  }
  .news-card .body {
    padding: 0 10px;
  }
}

.tabs-container {
  position: relative;
}
.tabs-container .scroll-fade {
  position: absolute;
  height: 50px;
  width: 98.5%;
  left: 0;
  bottom: 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
}
.news-list-tab-content {
  max-height: 70vh;
  overflow-y: auto;
  padding-bottom: 50px;
}
.news-list-tab-content::-webkit-scrollbar {
  height: calc(100% - 60px) !important;
}

.news-list-card {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.news-list-card .news-image img {
  width: 125px;
}

.news-list-card .title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-blue);
}

.news-list-card .text {
  flex: 1 1;
}
.news-list-card:hover {
  text-decoration: none;
}

.news-list-card .time,
.news-list-card .description {
  font-size: 13px;
  color: var(--text-c-muted);
}

.content-area {
  background-color: #ffffff;
  padding-top: 20px;
  padding-bottom: 20px;
}

.nav-tabs {
  width: 100%;
  padding: 0 55px;
  border: none;
  border-bottom: 2px solid #dee2e6 !important;
}
.nav-tabs .nav-item {
  margin-right: 5px;
  outline: none !important;
}
.nav-tabs .nav-link {
  transition: 0.2s ease-in-out;
  font-weight: 700;
  font-size: 25px;
  outline: none !important;
  cursor: pointer;
  color: #000000 !important;
}
.nav-tabs .nav-link {
  background-color: #ffffff;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:hover {
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-bottom: 5px solid var(--blue) !important;
  background-color: #fafafa;
}
.tab-pane .fb-page {
  display: block;
  max-width: 500px;
  margin: auto;
}
@media (max-width: 1200px) {
  .nav-tabs .nav-link {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .nav-tabs {
    padding: 0 30px;
  }
}
@media (max-width: 576px) {
  .nav-tabs .nav-link {
    font-size: 16px;
  }
}
@media (max-width: 400px) {
  .news-list-card {
    flex-direction: column;
    max-width: 100%;
  }
  .news-list-card .news-image img {
    width: 100%;
  }
  .news-list-card .text {
    margin-left: 0 !important;
  }
}
.fb-page {
  width: 100%;
}
.fb-page,
.fb-page * {
  max-width: 100%;
}

.search-field {
  width: 180px;
  height: 30px;
  position: relative;
}
.search-field input {
  width: 100%;
  height: 100%;
  border-radius: 200px !important;
  background-color: rgba(211, 215, 219, 0.13);
  border: none;
  padding: 5px 10px 5px 30px;
  color: #fff;
  font-size: 14px;
}
.search-field .input-group-prepend {
}
.search-field .input-group-text {
  height: 100%;
  background-color: transparent;
  border: none;
  padding: 0;
  position: absolute;
  top: 0px;
  left: 8px;
  color: inherit !important;
}

.video-block {
  width: calc(50% - 20px);
  max-width: 100%;
  display: inline-block;
  margin: 10px;
}
.video-block iframe {
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 10px;
}
.video-block .entry-title {
  font-size: 1.25rem;
}

@media (max-width: 992px) and (min-width: 768px) {
  .video-block .entry-title {
  }
  .video-block p {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .video-block {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .txt-thin-sm {
    letter-spacing: -0.7px;
  }
}
/* #endregion */

/* #region HEADER */
.site-header {
  background-color: var(--blue);
  color: #ffffff !important;
  width: 100%;
}
.page-top {
  padding: 17px;
}
@media (min-width: 768px) {
  .page-top {
    padding: 1px;
  }
}
.page-top .btn {
  background-color: var(--dark-blue-b);
  font-size: 16px;
  font-weight: 700;
  padding: 7px 35px;
  color: inherit;
  margin: auto;
  display: block;
  width: fit-content;
}
.page-info * {
  color: inherit;
}
.page-info {
  padding: 0px 30px;
  margin: 15px 0px;
  display: flex;
  height: 70px;
}
.page-info .police-logo {
  max-width: 60px;
}
.page-info .police-logo img {
  width: 100%;
}
.page-info .page-logo,
.page-info .police-logo img,
.page-info .info,
.call-help {
  height: 100%;
}
.page-info .page-logo,
.page-info .police-logo,
.page-info .info {
  margin-right: 30px;
}
.page-info .info {
  padding: 10px;
}
.page-info .info .text {
  width: 100%;
  padding: 0 5px;
}
.page-info .info .text .pagename {
  font-size: 20px;
  font-weight: 700;
}
.page-info .info .text .description {
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
}
.call-help {
  border-radius: 200px;
  background-color: var(--dark-blue-b);
  padding: 15px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.call-help:hover {
  text-decoration: none;
  color: #fff !important;
}
.call-help .text {
  font-size: 18px;
  text-transform: uppercase;
}
.call-help .number {
  font-size: 40px;
  font-weight: 700;
}
.call-help .call-logo-container {
  height: 35px;
  margin: 0 10px 0 15px;
  position: relative;
}
.call-help .call-logo-container::before {
  content: "";
  z-index: 0;
  position: absolute;
  width: 65%;
  height: 65%;
  left: 17%;
  top: 17%;
  background-color: #fff;
}
.call-help .call-logo {
  height: 100%;
  position: relative;
  z-index: 1;
}
.page-info .info {
  flex: 1 1 auto;
}
@media (max-width: 1600px) {
}
@media (max-width: 1450px) {
  .page-info .info .text .description {
    font-size: 14px;
  }
}
@media (max-width: 1260px) {
  .page-info .info .text .description {
    font-size: 13px;
    letter-spacing: -0.5px;
  }
}

@media (max-width: 1200px) {
  .page-info .info {
    flex: 1 1 auto;
    padding: 0;
    margin: 0;
  }
  .page-info .info * {
    display: none;
  }
}
@media (max-width: 992px) {
  .page-info {
    height: 50px;
  }
  .call-help {
    padding: 10px 20px;
  }
  .call-help .text {
    font-size: 14px;
    text-transform: uppercase;
  }
  .call-help .number {
    font-size: 26px;
  }
  .call-help .call-logo-container {
    height: 26px;
    margin: 0 10px 0 15px;
    position: relative;
  }
}
@media (max-width: 576px) {
  .page-info .police-logo {
    display: none;
  }
  .page-info .page-logo {
    margin-right: 15px;
  }
  .page-info {
    height: 45px;
    padding: 0 20px;
  }
  .call-help {
    padding: 5px 10px;
  }
  .call-help .text {
    display: none;
  }
  .call-help .call-logo-container {
    margin: 0 10px 0 0px;
  }
}
.navbar {
  background-color: var(--dark-blue-a);
  padding: 10px 30px;
  color: inherit;
  max-width: 1760px;
  left: auto;
  right: auto;
  width: 100%;
}

.navbar *:focus-visible {
  outline: none !important;
}
@media (max-width: 768px) {
  .navbar {
    background-color: var(--blue);
  }
}
.navbar-toggler {
  border: none;
  color: #fff;
}
.navbar:not(.d-mobile-menu) .search-field {
  width: 150px;
  height: 30px;
}
.navbar-toggler {
  outline: none !important;
  border: none !important;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,<svg width='81' height='81' viewBox='0 0 81 81' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M60.7064 23.9436L56.5939 19.8311L40.2897 36.1352L23.9855 19.8311L19.873 23.9436L36.1772 40.2477L19.873 56.5519L23.9855 60.6644L40.2897 44.3602L56.5939 60.6644L60.7064 56.5519L44.4022 40.2477L60.7064 23.9436Z' fill='white'/></svg>") !important;
}
.navbar-toggler.collapsed .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,<svg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'><path stroke='rgb(255,255,255)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/></svg>") !important;
}
.navbar:not(.d-mobile-menu) .search-field input {
  background-color: rgba(211, 215, 219, 0.13);
  border: none;
  color: #fff;
  font-size: 14px;
}
.navbar .search-field svg path {
  color: #ffffff;
}
.navbar:not(.d-mobile-menu) .menu-header-search {
  width: 250px;
  display: flex;
  align-items: center;
  margin-top: 3px;
}
.menu-header-search .searchform {
  display: flex;
}
.navbar:not(.d-mobile-menu) .menu-header-search svg {
  margin-right: 15px;
  height: 30px;
}
.navbar:not(.d-mobile-menu) *:not(.dropdown-menu) .menu-item {
  margin-right: 100px;
  font-size: 20px;
  text-transform: uppercase;
  padding-top: 6px;
}
.navbar:not(.d-mobile-menu) .menu-item .nav-link {
  color: inherit;
  padding: 0;
}
@media (max-width: 1600px) {
  .navbar:not(.d-mobile-menu) *:not(.dropdown-menu) .menu-item {
    margin-right: 60px;
    font-size: 18px;
  }
}
@media (max-width: 1200px) {
  .navbar:not(.d-mobile-menu) *:not(.dropdown-menu) .menu-item {
    margin-right: 30px;
    font-size: 16px;
    padding-top: 7px;
  }
}
@media (max-width: 992px) {
  .navbar:not(.d-mobile-menu) {
    padding: 10px 20px;
  }
  .navbar:not(.d-mobile-menu) *:not(.dropdown-menu) .menu-item {
    margin-right: 20px;
    font-size: 13.5px;
    padding-top: 9px;
  }
  .navbar:not(.d-mobile-menu) .menu-header-search {
    width: 225px;
    margin-top: 3px;
  }
  .navbar:not(.d-mobile-menu) .menu-header-search svg:not(.search-icon) {
    margin-right: 10px;
    width: 25px;
    height: auto;
  }
}
.page-top .call-help {
  display: none;
}
@media (max-width: 768px) {
  .site-header {
    background-color: var(--dark-blue-a);
  }
  .navbar {
    background-color: var(--blue);
  }
  .page-top {
    justify-content: space-between;
  }
  .page-top .btn {
    background-color: transparent;
    padding: 0;
    margin: 0;
    font-weight: 400;
    display: inline-block;
  }
  .page-info {
    display: none;
  }
  .page-top .call-help {
    padding: 0;
    display: inline-block;
    color: #fff;
    float: right;
    margin-top: -5px;
    background: transparent;
  }
  .page-top .call-help .call-logo-container {
    display: inline-block;
    top: -5px;
  }
  .page-top .call-help .number {
    font-weight: 700;
  }
  .navbar-container {
    justify-content: space-between !important;
  }
  .navbar-container {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
}
.navbar .page-logo,
.navbar .police-logo img {
  height: 38px;
}
.navbar .police-logo {
  margin-right: 5px;
}
.navbar .page-logo {
  height: 60px;
  margin-top: -11px;
  margin-bottom: -11px;
}
@media (max-width: 576px) {
}
@media (max-width: 375px) {
  .navbar .police-logo {
    display: none;
  }
}
.dropdown-menu .menu-item {
  margin-right: 0 !important;
}
.dropdown-item.active,
.dropdown-item:active {
  background-color: var(--blue);
}

.d-mobile-menu {
  background-color: var(--blue);
  z-index: 200;
  width: 100%;
}
.d-mobile-menu ul li.menu-item:first-of-type {
  position: relative;
}
.d-mobile-menu ul li.menu-item:first-of-type::before {
  content: "";
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  position: absolute;
  display: block;
  width: calc(100% - 30px);
  left: 10px;
  top: -10px;
  height: 1px;
}
@media (min-width: 768px) {
  .d-mobile-menu {
    display: none;
  }
}
.d-mobile-menu .navbar-collapse .navbar-nav {
  padding-top: 20px;
}
.d-mobile-menu *:not(.dropdown-menu) .menu-item .nav-link {
  color: #fff;
  padding: 20px;
  font-size: 20px;
}
.d-mobile-menu .menu-header-search {
  padding: 40px 20px;
  width: 100%;
  background-color: var(--dark-blue-a);
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.d-mobile-menu .menu-header-search svg:not(.search-icon) {
  margin-bottom: -5px;
}
.d-mobile-menu .searchform {
  max-width: 400px;
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}
.navbar .dropdown-menu {
  background-color: var(--blue);
  border: none;
}
.navbar .dropdown-menu .dropdown-item {
  color: #ffffff !important;
}
.navbar .dropdown-item:hover,
navbar .dropdown-item:focus {
  text-decoration: none;
  background-color: var(--dark-blue-a);
}

.d-mobile-menu .dropdown-menu {
  padding-left: 10px;
  font-size: 20px;
}
/* #endregion */

/* #region FOOTER */
.site-footer {
  border-top: 4px solid var(--blue);
  background-color: #ffffff;
}

.bottom-menu {
  background-color: var(--blue);
}

.bottom-menu * {
  color: #ffffff;
}

.page-bottom {
  background-color: var(--dark-blue-a);
  height: 80px;
  color: #fff;
  display: flex;
  justify-content: center;
  font-weight: 400;
  padding: 25px 30px;
}

.bottom-menu ul {
  margin: 0;
  display: flex;
  flex-direction: row;
  justify-content: start;
  padding: 75px 60px;
}
.bottom-menu ul .menu-item {
  font-size: 16px;
  font-weight: 600;
  margin-right: 60px;
}

@media (max-width: 768px) {
  .bottom-menu ul .menu-item {
    margin-right: 30px;
  }
}

@media (max-width: 768px) {
  .bottom-menu ul {
    justify-content: center;
    padding: 60px 0;
  }
  .bottom-menu ul .menu-item {
    font-size: 14px;
    margin-right: 10px;
    margin-left: 10px;
  }
}

@media (max-width: 576px) {
  .bottom-menu ul {
    padding: 40px 0;
  }
}
@media (max-width: 350px) {
  .bottom-menu ul {
    padding: 40px 0;
    flex-direction: column;
  }
  .bottom-menu ul .menu-item {
    margin: 0 0 10px 0;
  }
}

.footer-info img {
  width: 45px;
}

.footer-info .info-title {
  font-size: 18px;
}
.footer-info .info-text {
  font-size: 15px;
}
@media (max-width: 768px) {
  .footer-info .info-title {
    font-size: 16px;
  }
  .footer-info .info-text {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .footer-info img {
    width: 37.5px;
  }
}

@media (max-width: 576px) {
  .footer-info.first,
  .footer-info.second {
    margin-bottom: 35px;
  }
  .footer-info.third {
  }
}
/* #endregion */

/* #region STICKY-POSTS */
.sticky-container {
  width: 100%;
  display: flex;
  padding: 40px;
  min-height: 450px;
  margin: auto;
}
.sticky-post,
.sticky-side {
  display: block;
}

.sticky-post {
  width: calc(55% - 15px);
}
.sticky-side {
  width: calc(45% - 15px);
}

.sticky-post {
  position: relative;
  background-size: cover !important;
  display: flex;
  align-items: flex-end;
  color: #fff;
  min-height: 450px;
  padding: 20px 20px 40px 20px;
}

/* FOR CONTENT-SINGLE */
.content-head .sticky-post {
  min-height: 575px;
}
.sticky-post::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: rgb(0, 0, 0, 0.25);
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(255, 255, 255, 0) 90%
  );
}
.sticky-post .sticky-post-text {
  z-index: 1;
}

.sticky-post:hover {
  text-decoration: none !important;
  color: #fff;
}
.sticky-post .news-title {
  font-size: 38px;
  font-weight: 700;
  margin-top: 15px;
}
.sticky-post .news-time {
  font-weight: 900;
  font-size: 24px;
}
.sticky-post .news-time svg {
  height: 24px;
  display: inline-block;
  margin-top: -5px;
}
.sticky-side {
  display: flex;
  justify-content: end;
}

.sticky-side .news-card {
  width: 50%;
  max-width: 350px;
}

.sticky-side .news-card:not(:last-of-type) {
  margin-right: 30px;
}
.sticky-side .news-card .news-time {
  font-weight: 400;
}
@media (max-width: 1600px) {
  .sticky-side .sticky-side .news-description {
    font-size: 14px;
  }
  .sticky-side .sticky-side .news-title {
    font-size: 18px;
  }
}
@media (max-width: 1450px) {
  .sticky-container {
    padding: 30px 20px;
  }
  .sticky-post,
  .sticky-side {
    width: calc(50% - 15px);
  }
  .sticky-post .news-title {
    font-size: 30px;
  }
  .sticky-post .news-time {
    font-size: 20px;
  }
}
@media (max-width: 1200px) {
  .sticky-container {
    max-width: 900px;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .sticky-post,
  .sticky-side {
    width: 100%;
  }
  .content-head .sticky-post {
    min-height: 450px;
  }
  .sticky-post {
    margin-bottom: 30px;
  }
  .sticky-post .news-time {
    font-size: 24px;
  }
  .sticky-post .news-title {
    font-size: 38px;
  }
  .sticky-side {
    justify-content: center;
  }
  .sticky-side .news-card {
    max-width: unset;
  }
  .sticky-side .sticky-side .news-description {
    font-size: 16px;
  }
  .sticky-side .sticky-side .news-title {
    font-size: 20px;
  }
}

@media (max-width: 992px) {
  .sticky-side .news-card:not(:last-of-type) {
    margin-right: 15px;
  }
}

@media (max-width: 768px) {
  .sticky-container {
    padding: 40px 20px;
  }
  .sticky-side {
    flex-direction: column;
  }
  .sticky-side .news-card {
    width: 100%;
    margin-bottom: 30px;
  }
  .sticky-side .news-card .news-image {
    height: 200px;
  }
  .sticky-side .news-card {
    padding-bottom: 50px;
  }
  .sticky-side .news-card .news-description {
    display: none;
  }
  .sticky-post {
    min-height: 350px;
  }
  .sticky-post .news-title {
    font-size: 26px;
  }
  .sticky-post .news-time {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .sticky-post {
    min-height: 275px;
    padding: 20px;
  }
  .content-head .sticky-post {
    min-height: 275px;
  }
  .sticky-container {
    padding: 30px 0px;
  }
  .sticky-post .news-title {
    font-size: 20px;
    margin-top: 10px;
  }
  .sticky-post .news-time {
    font-size: 16px;
  }
  .sticky-post .news-description {
    font-size: 14px !important;
  }
  .sticky-side .news-card .news-description {
    display: block;
  }
}
/* #endregion */

/* #region FRONT-PAGE */
.accident-map {
  width: 100%;
  max-width: 1400px;
  height: 800px;
  max-height: 75vh;
  margin: auto;
  display: block;
}

.pedestrian-security-programs {
  align-items: center;
  justify-content: space-evenly;
}

.pedestrian-security-programs .widget {
  height: auto;
  width: 20%;
}
.pedestrian-security-programs .widget img {
  width: 100%;
  height: auto;
}

.partners {
  align-items: center;
  justify-content: space-evenly;
}

.partners .widget {
  height: auto;
  width: 12.5%;
}
.partners .widget img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .pedestrian-security-programs,
  .partners {
    margin: 0;
  }
  .accident-map {
    max-height: 490px;
  }
}

@media (max-width: 576px) {
  .pedestrian-security-programs .widget {
    width: 60vw;
    margin-bottom: 75px;
    min-width: 200px;
  }
  .partners .widget {
    width: 30vw;
    margin: 0 15px 50px 15px;
    min-width: 100px;
  }
  .accident-map {
    max-height: 520px;
  }
}

/* #endregion */

/* #region POST DETAIL */
.content-head .thumbnail {
  width: 100%;
  padding-top: 56.25%;
  background-position: center !important;
  background-size: cover !important;
}
@media (max-width: 992px) and (min-width: 768px) {
  .news-side .news-list-card {
    flex-direction: column;
  }
  .news-side .news-list-card .news-image {
    width: 100%;
  }
  .news-side .news-list-card .news-image img {
    width: 100%;
  }
}
/* HÍRAJÁNLÓ */
.tabs-container .news-card {
  min-width: 300px;
  width: 22.5%;
}
/* #endregion */

/* #region PAGINATION */
.page-item.active .page-link {
  background-color: var(--blue);
  border-color: var(--blue);
}

@media (max-width: 768px) {
  .pagination .page-item {
    display: none;
  }
  .pagination .page-item .page-link {
    padding: 5px 8px;
  }
  /* hides items certain items from pagination to fit on smaller screens */
  .pagination .page-item:nth-child(-n + 4),
  .pagination .page-item:nth-child(7),
  .pagination .page-item:nth-child(8),
  .pagination .page-item:nth-child(11),
  .pagination .page-item:last-of-type {
    display: inline-block;
  }
}

@media (max-width: 576px) {
  .pagination .page-item:nth-child(8),
  .pagination .page-item:nth-child(11) {
    display: none;
  }
}
/* #endregion */

/* #region GALLERY */
#gallery-list {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 30px;
}
.gallery-icon {
  overflow: hidden;
  height: 0;
  padding-top: 56.25%;
  position: relative;
}

.gallery-icon a {
  display: table-cell;
  position: absolute;
  top: 0;
  left: 0;
}

#gallery-list a {
  display: flex;
  height: 400px;
  width: 100%;
  position: relative;
}

#gallery-list .entry-content {
  padding: 16px;
  width: 100%;
}

#gallery-list h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

#gallery-list .entry-desc {
  color: #c6c6c6;
  font-size: 16px;
  line-height: 1.2em;
  font-weight: 300;
  min-height: 60px;
}

#gallery-list .gallery-image-container {
  height: 100%;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
  position: relative;
  width: 100%;
}

.gallery br {
  display: none;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
}

dl.gallery-item {
  position: relative;
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
  display: block !important;
}

dl.gallery-item:hover {
  opacity: 0.7;
  transition: opacity 0.2s linear;
}

dl.gallery-item .wp-caption-text {
  width: 100%;
  z-index: 10;
  color: #0b0b0b;
  text-align: left;
  margin: 0 !important;
  padding-top: 16px;
}

dl.gallery-item img {
  width: 100%;
  border: 0 !important;
  margin: 0;
  z-index: 0;
}

#gallery-list .entry-content {
  position: absolute;
  bottom: 0;
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
}

.gallery-container {
  display: flex;
  position: relative;
  flex-direction: column;
}

.gallery-container .active-image {
  flex-grow: 1;
  overflow: hidden;
  height: 620px;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.gallery-container .active-image img {
  width: 100%;
  min-height: 100%;
}

.gallery-container .gallery-footer {
  text-decoration: none;
  position: absolute;
  bottom: 100px;
  color: white;
  padding: 20px 30px;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.gallery-container .gallery-footer h3 {
  font-size: 22px;
  margin: 0 0 20px;
}

.gallery-container .pager {
  display: flex;
  flex-direction: row;
  background: black;
  padding: 20px 10px;
}

.gallery-container .pager .fa {
  flex-grow: 0;
  width: 50px;
  cursor: pointer;
  line-height: 55px;
  font-size: 30px;
  text-align: center;
  padding: 0 10px;
  color: #929292;
}

.gallery-container .pager .fa:first-child {
  margin-right: 10px;
}

.gallery-container .pager .fa:last-child {
  margin-left: 10px;
}

.gallery-container .pager .pictures {
  overflow: hidden;
  flex-grow: 1;
}

.gallery-container .pager .pictures-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

.gallery-container .pager .pictures-container:not(.no-effect) {
  transition: transform 0.2s ease-in-out;
}

.gallery-container .pager .pictures .preview.active {
  border: 1px solid #fff;
}

.gallery-container .pager .preview {
  margin: 0 10px;
  width: 100px;
  height: 60px;
}

.gallery-container .pager .pictures img {
  width: 100%;
  min-height: 100%;
  cursor: pointer;
}

@media (max-width: 992px) {
  #gallery-list a {
    height: 300px;
  }
}
@media (max-width: 700px) {
  #gallery-list {
    grid-template-columns: 1fr;
  }
}
/* #endregion */

/* #region CONTACT */
.contact-form {
  text-align: left;
}

.contact-form .wpforms-field-label {
  width: 100%;
  font-size: 17px;
  font-weight: 400;
}

.contact-form input[type="text"],
.contact-form input[type="email"] {
  border-radius: 30px;
  background-color: #f5f5f5;
  padding: 6px 12px;
  width: 100%;

  border: none;
  height: 38px;
}

.contact-form {
  margin-bottom: 20px;
}

.contact-form button[type="submit"] {
  width: 100%;
  display: inline-block;
  border-radius: 30px;
  text-align: center;
  background-color: #c30839;
  color: white;
  margin-top: 10px;
  padding: 10px 0;
  border: 3px solid #93072c;
  outline: none !important;
}

.g-recaptcha > div {
  margin: 0 auto;
}

.contact-form .wpforms-error {
  color: #c30839;
}

.contact-form .form-control {
  border: none;
}

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

.contact-form button[type="submit"]:active,
.contact-form button[type="submit"].active {
  background-color: #93072c !important;
  outline: none !important;
}

.contact-form button[type="submit"]:focus {
  box-shadow: 0 0 0 0.2rem rgba(195, 8, 57, 0.6);
  outline: none !important;
}

.contact-form textarea {
  border: none;
  min-height: 260px !important;
  width: 100%;
}

.contact-form h3 {
  text-align: center;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  border-radius: 0;
  background-color: #f5f5f5;
}

.contact-form textarea {
  box-sizing: border-box;
  padding: 10px !important;
}

.contact-form textarea:focus {
  background-color: #f5f5f5 !important;
}

.contact-form textarea::-webkit-scrollbar {
  width: 10px;
}

/* Track */
.contact-form textarea::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.contact-form textarea::-webkit-scrollbar-thumb {
  background: #888;
}

.contact-row {
  max-width: 1140px;
  margin: 0 auto;
}

.contact-row p {
  margin: 0 !important;
}

.contact-row label {
  position: relative;
  margin-bottom: 0;
}
.contact-row input,
.contact-row textarea,
.contact-row select {
  margin-bottom: 30px;
}

.contact-row label .label {
  position: absolute;
  z-index: 20;
  pointer-events: none;
  top: 7px;
  left: 0.75rem;
  transform-origin: top left;
  transition: transform 0.1s linear, left 0.1s linear, top 0.1s linear;
}

.contact-row label.focused .label,
.contact-row label.filled .label {
  transform: scale(0.8);
  left: 0;
  top: calc(-1.1rem * 1.5);
}

/* Handle on hover */
.contact-form textarea::-webkit-scrollbar-thumb:hover {
  background: #555;
}
@media (min-width: 768px) {
  .contact-form {
    padding-left: 0 !important;
  }
}

.map-responsive,
.map-responsive iframe {
  min-height: 480px;
  max-width: 100%;
}

/* #endregion */

.seatbelt-container {
  background: #ffffff;
  box-shadow: 0px 9px 9px rgba(0, 0, 0, 0.25), 0px 0px 9px rgba(0, 0, 0, 0.25);
  position: relative;
  padding: 70px 70px 50px 70px;
}

.seatbelt-container h3 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 40px;
}

.seatbelt-container .text {
  max-width: 70%;
}

.seatbelt-container .join-img {
  margin-bottom: 90px;
  width: 100%;
}
.seatbelt-container .pres.pres-text svg {
  display: inline-block;
}
.seatbelt-container .pres.num svg {
  display: none;
}
.seatbelt-container .pres {
  font-weight: 700;
  background: #ffffff;
  box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  padding: 15px 20px;
  margin-right: 10px;
  min-width: 120px;
}
.seatbelt-container .pres.num {
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-self: center;
  padding: 0px 20px;
  text-align: center;
}
.seatbelt-container .pres svg {
  margin-right: 5px;
}
.seatbelt-container .video-container {
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.seatbelt-container .video-container .gradient-hack {
  content: "";
  /* background: rgb(255, 255, 255);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 181, 4, 1) 50%,
    rgba(255, 255, 255, 0) 100%
  ); */
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 5%;
  right: 21%;
}
#seatbelt{
  scroll-margin-top: 50px;
}
.seatbelt-container .video-container .video-thumbnail {
  transition: opacity .5s;
  cursor: pointer;
}
.seatbelt-container .video-container video,
.seatbelt-container .video-container .video-thumbnail {
  position: absolute;
  right: 5%;
  /* box-shadow: -5px 0px 10px #f2b504,
              5px 0px 10px inset #f2b504,
              -5px 0px 10px inset #f2b504,
              10px 0px 5px #f2b504,
              -5px 0px 5px #f2b504,
              10px 0px 5px inset #f2b504,
              -10px 0px 5px inset #f2b504,
              10px 0px 5px #f2b504; */
}

.seatbelt-container .video-container .clickhere {
  position: absolute;
  top: 36%;
  right: calc(8.5% + 3.5vw);
  font-size: 20px;
  z-index: 10;
  font-weight: 700;
  transition: opacity 0.5s;
  cursor: pointer;
}
.seatbelt-container video.vertical{
  pointer-events: none !important;
}
.seatbelt-container video.vertical,
.seatbelt-container .video-container .video-thumbnail {
  height: 100%;
  width: auto;
}


.seatbelt-container video.horizontal {
  width: 100%;
  height: auto;
  display: none;
  pointer-events: none !important;
}
.seatbelt-container video::-webkit-media-controls-panel,
video::-webkit-media-controls-start-playback-button {
  display: none !important;
  opacity: 1 !important;
}

@media (min-width: 1500px) {
  .seatbelt-container {
    padding: 100px 150px 70px 150px;
  }
  .seatbelt-container .text {
    max-width: 60%;
  }
  .seatbelt-container .video-container .gradient-hack {
    right: 25.5%;
  }
  .seatbelt-container .video-container video,
  .seatbelt-container .video-container .video-thumbnail {
    right: 10%;
  }
  .seatbelt-container .video-container .clickhere {
    right: calc(12% + 4vw);
  }
}
@media (max-width: 992px) {
  .seatbelt-container .video-container video,
  .seatbelt-container .video-container .video-thumbnail {
    right: 0;
  }
  .seatbelt-container .video-container .clickhere {
    right: 8%;
  }
  .seatbelt-container {
    padding: 60px 50px 40px 50px;
  }
}

@media (max-width: 768px) {
  .seatbelt-container {
    padding: 20px 15px 15px 15px;
  }
  .seatbelt-container h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .seatbelt-container .video-container .clickhere {
    right: 7%;
    font-size: 18px;
  }
  .seatbelt-container .join-img {
    margin-bottom: 50px;
  }

  .seatbelt-container .pres {
    border-radius: 10px;
    font-size: 16px;
    padding: 10px 15px;
    margin-right: 10px;
  }
  .seatbelt-container .pres.num {
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-self: center;
    padding: 0px 10px;
    text-align: center;
  }
  .seatbelt-container .pres svg {
    width: 30px;
  }
}

@media (max-width: 576px) {
  .seatbelt-container {
    padding: 20px 7.5px 20px 10px;
  }
  .seatbelt-container h3 {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .seatbelt-container .pres {
    font-size: 14px;
    padding: 5px 7.5px;
    min-width: 80px;
  }
  .seatbelt-container .pres.num {
    font-size: 20px;
  }
  .seatbelt-container .pres svg {
    width: 24px;
  }
  .seatbelt-container .video-container .clickhere {
    font-size: 13px;
  }
  .seatbelt-container .join-img {
    margin-bottom: 30px;
  }
}

@media (max-width: 430px) {
  .seatbelt-container {
    padding: 15px 7.5px 15px 10px;
  }
  .seatbelt-container h3 {
    font-size: 16px;
    letter-spacing: -0.2px;
  }
  .seatbelt-container .text {
    max-width: 64%;
  }
  .seatbelt-container .pres {
    font-size: 13px;
    padding: 2.5px 5px;
    min-width: 60px;
  }
  .seatbelt-container .pres.num {
    font-size: 18px;
  }
  .seatbelt-container .pres.pres-text {
    display: none;
  }
  .seatbelt-container .pres.num svg {
    display: inline-block;
  }
  .seatbelt-container .pres svg {
    width: 20px;
  }
  .seatbelt-container .video-container .clickhere {
    font-size: 14px;
    top: 33%;
    right: 5%;
  }
}

@media (max-width: 390px) {
  .seatbelt-container h3 {
    font-size: 14px;
  }
}
