@font-face {
    font-family: 'BebasNeueRegular';
    src: url('./fonts/BebasNeue-webfont.eot');
    src: url('./fonts/BebasNeue-webfont.eot#iefix') format('embedded-opentype'),
         url('./fonts/BebasNeue-webfont.woff') format('woff'),
         url('./fonts/BebasNeue-webfont.ttf') format('truetype'),
         url('./fonts/BebasNeue-webfont.svg#BebasNeueRegular') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'TUBold';
    src: url('./fonts/tu_bold-webfont.eot');
    src: url('./fonts/tu_bold-webfont.eot#iefix') format('embedded-opentype'),
         url('./fonts/tu_bold-webfont.woff') format('woff'),
         url('./fonts/tu_bold-webfont.ttf') format('truetype'),
         url('./fonts/tu_bold-webfont.svg#TUBold') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'TURegular';
    src: url('./fonts/tu_regular-webfont.eot');
    src: url('./fonts/tu_regular-webfont.eot#iefix') format('embedded-opentype'),
         url('./fonts/tu_regular-webfont.woff') format('woff'),
         url('./fonts/tu_regular-webfont.ttf') format('truetype'),
         url('./fonts/tu_regular-webfont.svg#TURegular') format('svg');
    font-weight: normal;
    font-style: normal;
}

:root {

  --bg-primary: #1c2227;
  --bg-secondary: #2c3236;
  --bg-tertiary: #2f2f2f;
  --bg-dark: #15191d;


  --bg-primary-alt: rgb(0,0,0,.18);
  --bg-secondary-alt: rgb(0,0,0,.18);
  --bg-tertiary-alt: rgb(0,0,0,.18);

  --link-primary: #98d0f1;
  --link-secondary: #ffc81a;

  --color-primary: white;
  --color-secondary: #bbb;
  --color-tertiary: #ccc;

  --alert-red: #8c2a2a;
  --alert-green: #008a00;
  --alert-cool: #6ca0ff;

  --alert-text-red: #f66;
  --alert-text-green: #008a00;
  --alert-text-cool: #6ca0ff;

  --h1to6: white;

  --highlight-row-light: rgba(255,255,255,.04);
  --highlight-row-red: rgb(255, 0, 0,0.04);

}



html {
    -webkit-overflow-scrolling: touch;
    background: var(--bg-primary);

}
html::before {
  content: "";
  position: fixed;
  z-index: -3;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../images/background-fixed.jpg");
}

html::after {
  content: "";
  position: fixed;
  z-index: -2;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,rgba(28,34,39,.7) 0,#1c2227 30%,#1c2227 70%,rgba(28,34,39,.7) 100%);
}

html, body {
    height: 100%;
    /*background-color: var(--bg-primary);*/
}
body {
    margin: 0;
    min-width: 320px;
    height: 100%;
    font-family: TURegular, Sans-Serif, Arial, "Open Sans", Tahoma;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    color: var(--color-primary);
    background: transparent !important;
}
main {
    min-height: 100%;
    position: relative;
}

:placeholder {
  color: #ccc;
}

a, a:visited{
  color: var(--link-primary);
  text-decoration: none;
}
a:hover, a:active, a:focus {
  color: var(--link-secondary);
  text-decoration: none;
}
hr {
  margin-bottom: 1.42857em;
  border: 0;
  border-top: 1px solid rgba(255,255,255,.5);
}
hr:after {
    content: "";
    display: block;
    height: 4px;
    background-position: -80px top;
    background-size: 284px 40px;
    background-repeat: no-repeat;
    background-image: linear-gradient(135deg,transparent 0,transparent 40px,rgba(255,255,255,.5) 40px,rgba(255,255,255,.5) 200px,transparent 200px);
}

h1,h2,h3,h4,h5,h6 {
  color: var(--h1to6);
}
.admin-bar-active {
   margin-top: 28px;
}

/* Header */
.site-header {
  position: relative;
  height: auto;
  width: 100%;
}
.site-header__top--bar {
	height: 30px;
	background: #1b1b1b;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 150;
	width: 100%;
  line-height: 2;
}
.header-top__bar--name {
  padding-left: 30px;
  display: inline-block;
}
.highlight-name {
  color: goldenrod;
}
.header-top__bar--clock {
  display: inline-block;
  float: right;
  padding-right: 30px;
}

@keyframes flickerAnimation {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}
.time-separator {
  opacity: 0;
  animation: flickerAnimation 2s infinite;
  padding: 0 3px;
}

.site-header__top {
  height: 50px;
  background: transparent;
  position: absolute;
  top: 30px;
  left: 0;
  z-index: 150;
  width: 100%;
  backdrop-filter: blur(2px) saturate(0.5) brightness(0.7);
  -webkit-backdrop-filter: blur(2px) saturate(0.5) brightness(0.7);
}
/*.site-header__top::after {
  content: "";
  background-color: #222;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: .6;
}*/
.mobile-nav-toggle {
  position: absolute;
  top: 0;
  left: 20px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: 0.5s ease background;
}
.mobile-toggle {
  border: 1px solid white;
  background: none;
  color: #ffffff;
  position: relative;
  top: 10px;
  text-align: center;
  width: 25px;
  height: 25px;
  margin: 0 auto;
  z-index: 200;
}
.mobile-toggle:active, .mobile-toggle:focus {
  outline: 0;
}
.mobile-nav-toggle:hover, .mobile-nav-toggle.nav-show {
  background: #363a3e;
  transition: 0.5s ease background;
}

@media only screen and (min-width: 992px) {

  .mobile-nav-toggle, .mobile-toggle {
    display: none;
  }

}
.header-top__nav {
  position: absolute;
  top: 50px;
  left: 20px;
  height: auto;
  background: #363a3e;
  z-index: 200;
  max-width: 100%;
  min-width: 200px;
  display: none;
}
.header-top__nav.show-nav {
  display: block;
}
.top-nav__navbar {
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar--nav-item {
  transition: 0.2s ease background;
}
.navbar--nav-item:hover {
  background: rgba(0,0,0,.3);
  cursor: pointer;
  transition: 0.2s ease background;
}
.nav-item--link {
  display: inline-block;
  width: 100%;
  padding: 15px 10px;
}


@media only screen and (min-width: 992px) {

  .header-top__nav {
    position: absolute;
    top: 0;
    left: 20px;
    height: 100%;
    display: block;
    background: none;
    max-width: initial;
    min-width: initial;
  }
  .top-nav__navbar {

  }
  .navbar--nav-item {
    display: inline-block;
  }
  .navbar--nav-item:hover {
    cursor: pointer;
    background: rgba(54,58,62,.63);
  }
  .nav-item--link {
    display: inline-block;
    width: 100%;
    padding: 13px 10px;
  }

}

.header-top__user {
  position: relative;
  display: block;
  top: 0;
  right: 0;
  height: 100%;
}
.top-user__item {
  position: absolute;
  top: 0px;
  right: 0;
  min-width: 75px;
  text-align: center;
  height: 100%;
}
.header-top__user--search-box {
  display: none;
  top: 5px;
  right: 301px;
  width: 420px;
  z-index: 300;
}
.mobile-only {
  display: none;
}
@media only screen and (min-width: 800px) {
  #close-search-mobile {
    display: none;
  }
  #close-search {
    display: block;
  }
}
@media only screen and (max-width: 800px) {
  #close-search-mobile {
    display: block;
  }
  #close-search {
    display: none;
  }

}
#close-search-mobile .input-group-text, #close-search .input-group-text {
  height: 100%;
}

.header-top__user--search-box.show-search {
  display: block;
  background: none !important;
}
.header-search-box {
    background: black;
}

.header-top__user--inbox {
    right: 180px;
}


.private-message {
    display: inline-block;
    position: absolute;
    top: 30px;
    right: 5px;
}
.private-message a {
    color: #ccc;
    text-decoration: none;
    padding-left: 23px;
    margin-left: 10px;
}
.private-message-mobile {
  display:none;
}
@media only screen and (max-width: 800px) {
  .private-message-mobile {
      display: inline-block;
      position: absolute;
      top: 30px;
      z-index: 9000;
      left: 48px;
  }
}
.unread-count {
    background: linear-gradient(#7e0b09, #9e0002, #ce0e04, #e60303);
    border-radius: 50%;
    width: 19px;
    height: 19px;
    display: inline-block;
    color: white;
    text-shadow: 1px 1px black;
    box-shadow: inset 0 0 1px 1px #460000;
    border: 1.4px solid #88979d;
    animation: MoveUpDown 1s linear infinite;
    position: absolute;
    left: 13px;
    bottom: 0;
    font-size: 12px;
    text-align: center;
    line-height: 1.5;
    text-indent: -3px;
    font-family: serif;
}

@keyframes MoveUpDown {
  0% {
    top: 0;
  }
  50% {
    top: 10px;
  }
  100% {
    top: 0;
  }
}


.header-top__user--support, .header-top__user--search {
    right: 100px;
}
@media only screen and (max-width: 800px) {

  .header-top__user--search-box {
    left: 80px;
    width: 370px;
  }
}
@media only screen and (min-width: 800px) {

  .user-logged-in .header-top__user--search {
      right: 255px;
  }
}
.header-top__user--profile {
    width: 100px;
}
.top-user__item--link {
  vertical-align: middle;
  position: relative;
  top: 12px;
  width: 100%;
  height: 100%;
  display: inline-block;
  transition: 0.2s ease background;
}
button.top-user__item--link {
  border: none;
  background: none;
  color: var(--link-primary);
  cursor:pointer;
  width: 100%;
  height: 100%;
  top: 0;
  outline: none;
  transition: 0.2s ease background;
}
#search-toggle.showing-search {
  display: none;
}
.top-user__item:hover, button.top-user__item--link:hover, #profile-toggle.showing-profile {
  background: rgba(54,58,62,.63);
  outline: none;
  transition: 0.2s ease background;
}
#profile-toggle {
  cursor: pointer;
  transition: 0.2s ease background;
}
.profile-box {
  top: 0;
}
.profile-box-img {
  width: 45px;
  height: 45px;
  position: relative;
  top: 4px;
}
.profile-box-name {
  color: var(--link-secondary);
  position: relative;
  top: 4px;
}
.profile-box__dropdown {
  position: absolute;
  top: 50px;
  right: 0px;
  width: 220px;
  text-align: left;
  height: auto;
  background: #363a3e;
  z-index: 200;
  display: none;
}
.profile-box__dropdown.show-profile {
  display: block;
}
.dropdown-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dropdown-list-item {
  transition: 0.2s ease background;
}
.dropdown-list-item:hover {
  background: rgba(0,0,0,.3);
  cursor: pointer;
  transition: 0.2s ease background;
}
.dropdown-list-item a {
  display: inline-block;
  width: 100%;
  padding: 15px 10px;
}
.site-header__bottom {
  display: flex;
  position: relative;
  height: 225px;
  background-color: black;
}
.site-header__bottom::after {
    background: linear-gradient(rgb(154 154 154), rgb(78 78 78));
    bottom: 0px;
    content: "";
    height: 0.125rem;
    left: 0px;
    position: absolute;
    width: 100%;
}

@media only screen and (min-width: 1120px) {
  .header-banner__spacing {
    height: 100%;
    background-image: url(../images/community-forums-hero-small.jpg);
    /*background-image: url("../images/authBanner.jpeg");*/
    background-size: contain;
    background-size: cover;
    width: 100%;
    background-position-y: 30px;
  }
}
@media only screen and (max-width: 1120px) and (min-width: 800px) {
  .header-banner__spacing {
    height: 100%;
    background-image: url(../images/community-forums-hero-smaller.jpg);
    /*background-image: url("../images/authBanner.jpeg");*/
    background-size: contain;
    background-size: cover;
    width: 100%;
    background-position-y: 30px;
  }
}
@media only screen and (max-width: 800px) {
  .header-banner__spacing {
    height: 100%;
    background-image: url(../images/community-forums-hero-mobile.jpg);
    /*background-image: url("../images/authBanner.jpeg");*/
    background-size: contain;
    background-size: cover;
    width: 100%;
    background-position-y: 30px;
  }
  .mobile-only {
    display: block;
  }
  .header-top__user--support, .header-top__user--inbox {
    display: none;
  }
  .header-top__user--search {
    right: 100px;
  }
}

.forums-breadcrumb {
  position: absolute;
  top: 113px;
  width: 96%;
  height: 30px;
  left: 10px;
}
@media only screen and (min-width: 800px) {
  .forums-breadcrumb {
    left: 12%;
    max-width: 88%;
    word-break: break-word;
  }
}
.forums-breadcrumb__container {
  height: 100%;
  font-size: 1rem;
}
@media only screen and (max-width: 800px) {
  .forums-breadcrumb__container {
    font-size: 0.9rem;
  }
}
.forums-breadcrumb-list {
  margin: 0;
  font-family: TUBold;
  padding: 0;
}
.forum-breadcrumb {
  display: inline-block;
  color: white;
}
.forum-breadcrumb:not(:first-child) {
    margin-left: 5px;
}
.forum-breadcrumb--link:after {
  content: "/";
  margin-left: 10px;
}
.forum-breadcrumb--active {
  font-weight: bold;
}
.site-header__messages {
}

.forum-breadcrumb {
  text-shadow: 1px 1px 3px black;
}
.site-header__messages.has-message {
  background: var(--alert-red);
  color: white;
  padding: 10px;
  text-align:center;
}
.site-header__messages:not(.has-message) {
  display: none;
  margin-bottom: none;
}
.site-header__messages.has-message .forum-alert.forum-alert--error, .site-header__messages.has-message .pm_alert {
  color: inherit !important;
  background: transparent !important;
}

@media only screen and (min-width: 800px) {
  .site-header__messages.has-message .pm_alert,
  .site-header__messages.has-message .forum-alert.forum-alert--error {
    width: 80%;
    margin: 0 auto;
  }
}

/* Footer */
footer.page-footer {
    background-color: var(--bg-tertiary);
    color: #fff;
    font-size: 12px;
    line-height: 17px;
    padding: 20px 3.25% 23px;
}

footer .copyright-notice {

}

footer .site-version {

}



@-webkit-keyframes loader{
    0%{
        height:0
    }
    25%{
        height:100%
    }
    50%{
        height:0
    }
    100%{
        height:0
    }
}
@keyframes loader{
    0%{
        height:0
    }
    25%{
        height:100%
    }
    50%{
        height:0
    }
    100%{
        height:0
    }
}

.m-loader{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient:horizontal;
    -webkit-box-direction:normal;
    -ms-flex-flow:row wrap;
    flex-flow:row wrap;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
    height:100px;
    height:6.25rem;
    margin:auto;
    padding:0 8px;
    padding:0 .5rem;
    position:relative;
    width:100px;
    width:6.25rem
}
.m-loader__bar{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-flex:1;
    -ms-flex:1 1 0px;
    flex:1 1 0px;
    width:auto;
    margin-right:2px;
    margin-right:.125rem;
    margin-left:2px;
    margin-left:.125rem;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
    -webkit-transform:skew(-27deg);
    transform:skew(-27deg)
}
.m-loader__bar:after{
    position:absolute;
    top:50%;
    left:50%;
    -webkit-transform:translate(-50%, -50%);
    transform:translate(-50%, -50%);
    -webkit-animation:loader 1s infinite linear;
    animation:loader 1s infinite linear;
    background:#E1BB34;
    content:'';
    height:0;
    width:100%
}
.m-loader__bar:nth-child(1){
    height:40%
}
.m-loader__bar:nth-child(1):after{
    -webkit-animation-delay:0s;
    animation-delay:0s
}
.m-loader__bar:nth-child(2){
    height:70%
}
.m-loader__bar:nth-child(2):after{
    -webkit-animation-delay:.1s;
    animation-delay:.1s
}
.m-loader__bar:nth-child(3){
    height:100%
}
.m-loader__bar:nth-child(3):after{
    -webkit-animation-delay:.2s;
    animation-delay:.2s
}
.m-loader__bar:nth-child(4){
    height:70%
}
.m-loader__bar:nth-child(4):after{
    -webkit-animation-delay:.3s;
    animation-delay:.3s
}
.m-loader__bar:nth-child(5){
    height:40%
}
.m-loader__bar:nth-child(5):after{
    -webkit-animation-delay:.4s;
    animation-delay:.4s
}


.site-body {
  display: inline-block;
  width: 100%;
}

/* Container */
.page-content {
  padding: 20px;
  margin: 0 auto;
  position: relative;
}

@media only screen and (min-width: 800px) {
  .page-content {
    max-width: 80%;
  }
}



/* Buttons & Forms */
.button {
    min-width: 100px;
    min-height: 48px;
    border-radius: 8px;
    border: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    line-height: 24px;
    letter-spacing: 0.12em;
    font-weight: 500;
    background: #212736;
    color: white !important;
    cursor: pointer;
    padding: 8px 16px;
    background: radial-gradient(50% 50% at 50.24% 0%, rgba(57, 172, 255, 0.9) 0%, rgba(57, 125, 255, 0) 100%), #0c8ae6;
    box-shadow: 0px 6px 10px rgba(57, 172, 255, 0.5);
    display: inline-block;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 32px;
    text-decoration: none;
}

.button.secondary {
    background: #212736;
    box-shadow: none;
}

.button.green {
    background: radial-gradient(50% 50% at 50.24% 0%, rgba(69, 248, 205, 0.9) 0%, rgba(69, 248, 205, 0) 100%), rgba(28, 229, 182, 0.8);
    box-shadow: 0px 6px 10px rgba(69, 248, 205, 0.5);
    color: black !important;
}

.button.yellow {
    background: #E1BB34;
    box-shadow: 0px 6px 10px rgba(225, 187, 52, 0.5);
    color: black !important;
}

.button.red {
    background: radial-gradient(50% 50% at 50.24% 0%, #ff637f 0%, rgba(255, 99, 127, 0) 100%), #e94d69;
    box-shadow: 0px 6px 10px #e94d6950;
    color: black !important;
}

.button.disabled {
    pointer-events: none;
    opacity: .65;
}

.input-group .button {
    padding: 7px 22px
}

.button:hover {
    filter: brightness(1.3);
    color: #fff
}

.button:active,.button:focus {
    outline: 0
}

.button.small {
    transform: scale(.9);
    padding: 12px
}






@media only screen and (min-width: 800px) {
  .form-button-container {
    display: inline-block;
  }
}
@media only screen and (max-width: 800px) {
  .button:not(.small):not(.thread-controls--first-admin) {
    display: block;
    margin-bottom: 5px;
    width: 100%;
  }
  .form-button-container {
    width: 100%;
  }
  .button.mobile-small {
    transform: scale(0.9);
    font-size: 12px;
    padding: 12px 12px;
  }
}
/*.button {
  position: relative;
  z-index: 1;
  display: inline-block;
  -webkit-appearance: none;
  box-sizing: border-box;
  min-width: 165px;
  margin: 0;
  border: 0;
  padding: 10px 10px;
  font-size: 1em;
  line-height: 1.08696;
  text-transform: uppercase;
  text-align: center;
  text-shadow: none!important;
  background-color: #1572a4;
  cursor: pointer;
  transition: color .3s;
  outline: 0;
  color: white !important;
  text-decoration: none;
  margin-bottom: 5px;
}
.button.secondary, .button.secondary:before {
  background-color: #555;
}
.button.green, .button.green:before {
  background-color: #008a00;
}
.button.red, .button.red:before {
  background-color: #c5453b;
}


.button:before, .button:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
}
.button:before {
    z-index: -2;
    right: 0;
    border: 3px solid transparent;
    background-color: #1572a4;
    transition: background-color .3s;
}
.button:after {
    z-index: -1;
    right: 0;
    background: #ffc81a;
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -ms-transform-origin: top left;
    transform-origin: top left;
    transition: transform .3s;
}
.button:hover {
    color: #000 !important;
}
.button:hover:after {
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}
.button:focus:before, .button:focus:after {
  border-color: rgba(0,0,0,.4);
}

.button:active, .button:focus {
  outline: 0;
}
.button.small {
  min-width: 85px;
}
@media only screen and (min-width: 800px) {
  .form-button-container {
    display: inline-block;
    margin-right: 2px;
  }
}
@media only screen and (max-width: 800px) {
  .button:not(.small):not(.thread-controls--first-admin) {
    display: block;
    margin-bottom: 5px;
    width: 100%;
  }
  .form-button-container {
    width: 100%;
  }
}*/

/* bootstrap style changes */
.form-control, .form-control-plaintext {
  background: #ffffff1c;
  border-color: #8080808a;
  color: #bbb;
}
select.form-control option {
  background: #2f3236;
  color: #bbb;
}
.form-control:focus, .form-control-plaintext:focus {
  background: #ffffff1c;
  border-color: #8080808a;
  color: #bbb;
  outline: 0;
  box-shadow: none;
}

.card {
  background: #444;
}








/* Paging */
.forum-pagination--container {
  display: inline-block;
  width: 100%;
}
ol.paging {
	float: right;
	margin-top: 0;
	text-align: right;
	text-transform: uppercase;
  margin-right: 30px;
  position: relative;
  top: 10px;
  font-size: 1.2rem;
}

ol.paging li {
	display: inline;
	color: #3e3e3e;
}

 ol.paging li {
	color: #fff;
}

ol.paging li>span {
	box-sizing: border-box;
	min-width: 39px;
	padding: 5px;
	text-align: center;
	color: #d9d9d9;
}

 ol.paging li>span {
	color: rgba(217, 217, 217, .3);
}

ol.paging li a {
	display: inline-block;
	box-sizing: border-box;
	min-width: 39px;
	padding: 5px;
	text-align: center;
	color: #1572a4;
	transition: background-color .3s, color .3s;
}

 ol.paging li a {
	color: #98d0f1;
}

ol.paging li a:hover {
	background-color: #ffc81a;
	color: #000;
}

ol.paging li.current a {
	border: 2px solid #3e3e3e;
	color: #3e3e3e;
}

 ol.paging li.current a {
	border-color: #fff;
	color: #fff;
}

ol.paging li .dots {
	display: inline-block;
	box-sizing: border-box;
	min-width: 39px;
	padding: 5px;
	text-align: center;
	color: #000;
}

 ol.paging li .dots {
	color: #fff;
}

ol.paging li.dots-0 {
	display: none;
}

ol.paging li.dots-1 {
	display: none;
}

ol.paging li.dots-2 {
	display: none;
}

ol.paging li.dots-3 {
	display: none;
}

@media all and (max-width:38.57143em) {
	ol.paging li.padding {
		display: none;
	}
	ol.paging li.dots-2 {
		display: inline;
	}
	ol.paging li.dots-3 {
		display: inline;
	}
}

ol.paging.paging--next-previous {
	display: table;
	width: 100%;
	float: none;
}

ol.paging.paging--next-previous li {
	display: table-cell;
	width: 50%;
	text-align: left;
}

ol.paging.paging--next-previous li:last-child {
	text-align: right;
}

ol.paging.paging--next-previous li a.hide {
	display: none;
}

ol.paging.hide {
	display: none;
}






/***** Headline *****/
.headlines {
  /* height: 100px; */
}

.headline-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: auto;
  margin-bottom: 56px;
  /* transform: translateY(-130px); */
}

.headlne-column {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 25px;
}

.headline-container a:hover .headline-img-container {
  transition-duration: 0.2s;
  opacity: 0.1;
}

.headline-img-container {
  transition-duration: 0.5s;
}

.headline-img-container svg {
  transition-duration: 0.5s;
  fill: #dbdbdb;
  width: 50px;
}

.headline-container a:hover .headline-img-container svg {
  transform: scale(0.5);
  stroke-width: 1.5;
  transition-duration: 0.5s;
  transform: translate(0, 50%);
}

.headline-container a:hover .headline-link-title {
  transition-duration: 0.5s;
  transform: translate(0, -50%);
}

.headline-container a:hover h2 {
  color: #39ACFF;
  transition-duration: 0.25s;
  filter: drop-shadow(0px 6px 10px #39ACFF);
}

.headline-link {
  position: relative;
  display: inline-block;
  width: 175px;
  height: 170px;
  text-align: center;
  margin-bottom: 24px;
}

.headline-link-title {
  width: 75%;
  height: 64px;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: auto;
  transition-duration: 0.5s;
}

.headline-link-title h2 {
  color: white;
  text-align: center;
  transition-duration: 0.25s;
  font-family: pf-light;
  letter-spacing: 0.05em;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
}

.headline-link img {
  width: 100px;
}

@media (min-width: 995px) {
  .headline-container {
    width: 100%;
    margin: 32px 0 56px 0;
    gap: 0;
  }

  .headline-container a {
    margin: 0 16px;
  }

  .headline-link {
    margin-bottom: 0;
    width: 200px;
  }

  .headline-link h2 {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .headline-container {
    gap: 24px;
  }

  .headlines {
    /* height: 240px; */
  }

  .headlne-column {
    width: 100%;
    display: flex;
    gap: 0px;
    justify-content: center;
  }
}

@media (max-width: 1200px) {
  .headline-container a {
    margin: 0;
  }
}

.headlines a {
   text-decoration: none;
}



.a-social-button {
    text-align: center;
    text-decoration: none;
    height: 40px;
    height: 2.5rem;
    position: relative;
    border-radius: 0;
    cursor: pointer;
    display: block;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0,0,0,0.5);
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.5);
    vertical-align: top;
    line-height: 40px;
    line-height: 2.5rem;
    -webkit-transition: border 0.075s linear;
    transition: border 0.075s linear;
    overflow: hidden;
    margin: 0 0 16px 0;
    margin: 0 0 1rem 0;
    width: 100%
}
.a-social-button:hover {
  text-decoration: none;
}

.a-social-button:before {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 100%;
    height: 19px;
    height: 1.1875rem
}

.a-social-button:not(:empty):before {
    height: 100%;
    vertical-align: middle;
    display: block;
    float: left;
    width: 39px;
    width: 2.4375rem;
    top: inherit;
    left: inherit;
    -webkit-transform: none;
    transform: none;
    line-height: inherit;
    position: inherit
}
.a-social-button--service-discord {
    color: rgba(7,24,32,0.5);
    background-color: #7289DA;
    font-size:1.2rem;
}

.a-social-button--service-discord:hover,.a-social-button--service-discord:focus {
    color: rgba(7,24,32,0.5)
}

.a-social-button--service-discord:hover {
    background-color: #4564ce
}

.a-social-button--service-discord:before {
    color: rgba(7,24,32,0.5);
    background-position: center center;
    background-repeat: no-repeat;
    content: '';
    height: 100%;
    background-image: url("../images/discord-white.svg");
    background-size: 1.375rem 1.375rem;
    width: 22px;
    width: 1.375rem
}

.a-social-button--service-discord:not(:empty):before {
    background-color: rgba(0,0,0,0.15)
}
