@charset "UTF-8";

/* PYLONS -- beta v2.0 */

/* ----- Table of Contents -----

	• GLOBAL RULES
	• LAYOUT
	• TYPOGRAPHY
	• SECTIONAL CONTENT
		— Masthead & Main Navigation
		— Hero
    - Content
		— Contact
		— Social Links
		— Footer
	• IMAGE ELEMENTS
	• SUPPORTING ASIDES
	• RESPONSIVE

------ ------ ------ ------ ------ */

/* ===============================
		GLOBAL RULES
=============================== */

/* resets the BOX-MODEL flow of the document, allowing our magins & padding to be more accurate & intuitive */
*,
*:after,
*:before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

* ::-webkit-scrollbar {
  width: 0.5em;
  height: 0.5em;
}

*::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}
*::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

@font-face {
  font-family: "Pylons V3";
  src: url("../fonts/pylons/PylonsV3-Condensed.otf");
}

a {
  text-decoration: none !important;
}
html {
  scroll-behavior: smooth;
}

/* web-broswer client-specific styles */
#outlook a {
  padding: 0;
} /* Force Outlook to provide a "view in browser" menu link. */

/* Prevent Webkit and Windows Mobile platforms from changing default font sizes, while not breaking desktop design. */
body {
  background-color: #000000;
  color: #ffffff;
  font-family: "Inter", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  width: 100% !important;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

#ghost-portal-root .gh-portal-triggerbtn-container {
  /* display: none !important; */
  background-color: blue !important;
}

.carousel-inner {
  padding-left: 0vw !important;
}

.full-height {
  min-height: 100vh;
}

nav {
  z-index: 23561;
}

nav,
.hero,
.landing-container {
  background-image: url("../img/dotted-bg.svg") !important;
  background-repeat: repeat !important;
  background-position: bottom !important;
  background-color: transparent !important;
}

.landing-container {
  background-color: #ef4422 !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

@-webkit-keyframes landingPageImgAnimation {
  0% {
    background-image: url("../img/bg-2.png");
  }
  25% {
    background-image: url("../img/bg-3.png");
  }
  50% {
    background-image: url("../img/bg-4.png");
  }
  100% {
    background-image: url("../img/bg-5.png");
  }
}

@keyframes landingPageImgAnimation {
  0% {
    background-image: url("../img/bg-2.png");
  }
  25% {
    background-image: url("../img/bg-3.png");
  }
  50% {
    background-image: url("../img/bg-4.png");
  }
  100% {
    background-image: url("../img/bg-5.png");
  }
}

.landing-container-img {
  -webkit-animation-name: landingPageImgAnimation;
  animation-name: landingPageImgAnimation;
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  background-image: url("../img/bg-1.png");
  background-repeat: no-repeat;
  background-size: contain;
  height: calc(100vh - 287px) !important;
  max-width: 100%;
  background-position: center;
}

@media (min-width: 992px) {
  .navbar-expand-lg {
    justify-content: space-between !important;
  }
}
ul {
  padding: 0px !important;
}
.bg-pattern {
  background-color: #000000;
}
/* Support for HTML5 semantic element styling in older browsers */
article,
aside,
header,
nav,
section {
  display: block;
}
.upper-img {
  min-width: 309px;
  -o-object-fit: contain;
  object-fit: contain;
}
.whitepaper-section button {
  border: none;
  color: #ffffff;
  font-size: 40px;
  min-height: 80px;
  height: auto;
  width: auto;
  outline: none;
  padding: 10px;
  position: relative;
  background-color: transparent;
  /* background-image: url('../img/home-download-bg.png');
  background-repeat: no-repeat; */
}

#download-home-btn {
  outline: none;
  min-height: 100px;
}

@media (max-width: 700px) {
  .whitepaper-section button {
    font-size: 20px;
  }
}

/* ====================================================
    Blogs
 ====================================================== */
#blogs-container-id {
  width: 50%;
  overflow: visible;
}
.feature-img-header {
  position: relative;
}
.feature-img-header img {
  height: 100%;
  width: 100%;
}

.feature-img-header:nth-of-type(1) {
  width: 250px;
  margin-top: 30px;
  margin-right: 20%;
  margin-bottom: 8%;
  max-height: 164px;
}

.feature-img-header:nth-of-type(2) {
  width: 250px;
  transform: translate(115px, -100px);
  max-height: 164px;
}

.feature-img-header:nth-of-type(3) {
  width: 350px;
  max-height: 230px;
  /* border: 1px solid red; */
  transform: translate(35px, -135px);
}

@media (max-width: 600px) {
  .feature-img-header:nth-of-type(1) {
    width: 200px;
  }

  .feature-img-header:nth-of-type(2) {
    width: 200px;
    transform: translate(115px, -100px);
  }

  .feature-img-header:nth-of-type(3) {
    width: 300px;
    /* border: 1px solid red; */
    transform: translate(35px, -135px);
  }
}

@media (max-width: 500px) {
  #blogs-container-id {
    transform: translateX(-40px);
  }

  .feature-img-header:nth-of-type(1) {
    width: 150px;
    max-height: 97px;
  }

  .feature-img-header:nth-of-type(2) {
    max-height: 97px;
    width: 150px;
    transform: translate(90px, -60px);
  }

  .feature-img-header:nth-of-type(3) {
    width: 250px;
    /* border: 1px solid red; */
    transform: translate(40px, -75px);
    max-height: 165px;
  }
}

#blogs-container-id {
  position: relative;
}

.blogs-hero {
  max-height: auto;
  min-width: 300px;
}
.blogs-hero-headings .lg-text {
  color: #ef4422;
  font-size: 380px;
  line-height: 300px;
  font-family: "Pylons V3";
}

#posts-section-container {
  padding: 0rem 15rem 0px 10rem !important;
  overflow: hidden;
}

@media (max-width: 720px) {
  #posts-section-container {
    padding: 0px 20% !important;
    transform: translateX(-50px);
  }
}

@media (max-width: 1100px) {
  .blogs-hero {
    max-height: auto;
    flex-direction: column;
  }
  .blogs-hero .blogs-hero-headings,
  .blogs-container,
  #posts-section-container {
    width: 100% !important;
    margin-bottom: 100px;
  }
  .blogs-hero-headings .lg-text {
    font-size: 434px;
    line-height: 341px;
  }
  .blogs-hero-headings .side-text {
    position: static !important;
    margin-top: 50px;
  }

  #searchbox-section-container {
    justify-content: start !important;
    padding: 20px;
  }
}

@media (max-width: 400px) {
  .blogs-hero-headings .lg-text {
    font-size: 130px;
    line-height: 100px;
  }
  .post-buy-btn {
    height: 40px !important;
  }

  #searchbox-section-container input {
    width: 80%;
  }
}

.blogs-hero-headings .side-text {
  display: inline-block;
  width: 170px;
  top: 205px;
  right: 245px;
}

@media (max-width: 600px) {
  .blogs-hero-headings {
    margin: 2rem 0 0;
  }
  .blogs-hero-headings .lg-text {
    font-size: 280px;
    line-height: 220px;
  }
  .blogs-hero-headings .side-text {
    width: 100px;
  }
}
@media (max-width: 424px) {
  .blogs-hero-headings .lg-text {
    font-size: 185px;
    line-height: 150px;
  }
  .blogs-hero-headings .side-text {
    width: 100px;
  }
  .nav-item a {
    font-size: 18px !important;
  }
}

.blogs-hero-headings .lg-text:last-of-type {
  /* margin-top: -150px; */
}

.view-more-text {
  color: #ff8269;
  font-weight: 400;
}

.view-more-text:hover {
  cursor: pointer;
}

.blogs-container {
  max-height: 600px;
  overflow-y: auto;
  padding-top: 10px;
  transform: translate(0px, -64px);
}

@media (min-width: 1700px) {
  .blogs-hero-headings .side-text {
    top: 310px;
    left: 20px;
  }
}

@media (min-width: 1400px) and (max-width: 1600px) {
  .blogs-hero-headings .side-text {
    top: 310px;
    left: 20px;
  }
}

@media (max-width: 650px) {
  .post-item-wrapper .post-item {
    width: 60% !important;
    transform: skewX(-25deg) translate(70px, 10px);
  }
  .post-item h1 {
    font-size: 20px;
  }

  .plus-post-item {
    right: 0 !important;
    top: 45px !important;
  }
  .post-item .date-post-item {
    transform: skewX(25deg) translateY(6px) translateX(-15px);
  }
  #blogs-container-id {
    width: 100% !important;
  }
}

@media (max-width: 450px) {
  .post-item-wrapper .post-item {
    transform: skewX(-25deg) translate(30px, 10px);
  }

  .plus-post-item {
    right: 50 !important;
    top: 45px !important;
  }

  .plus-post-item .minus-img {
    height: 3px !important;
    width: 40px !important;
  }

  .plus-post-item img {
    height: 40px;
    width: 40px;
  }
}

@media (max-width: 400px) {
  .post-item-wrapper .post-item {
    transform: skewX(-25deg) translate(60px, 10px);
  }
  .post-item-wrapper .post-item {
    width: 50% !important;
  }

  .plus-post-item {
    right: 65px !important;
  }
}

.blogs-container-item:hover {
  color: #ef4422 !important;
}

.blogs-container-item {
  width: 300px;
  margin: 10px 0px;
}

.blogs-container-item .blog-date {
  font-size: 10px;
  margin: 5px 0px;
}

.blogs-item {
  height: 200px;
  max-width: 300px;
  width: 300px;
  margin: 20px 0px;
  background: #4b4b4b;
  position: relative;
}

.blogs-item:hover img {
  -webkit-filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg)
    saturate(600%) contrast(0.8);
  filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg)
    saturate(600%) contrast(0.8);
}

.blogs-hero .blogs-item::after {
  content: "";
  position: absolute;
  right: -85px;
  top: -12px;
  width: 150px;
  height: 60px;
  transform: rotate(35deg);
  background-color: #000; /* to see where it is */
}

.blogs-hero .blogs-item::after:hover {
  background-color: #000; /* to see where it is */
}

.searchbox-section input {
  height: 50px;
  background-color: transparent;
  color: #ffffff;
  border: none;
  font-size: 20px;
}
.searchbox-section input:focus-visible {
  border: none;
}

.post-item-wrapper {
  min-width: 350px;
}

.minus-img {
  height: 3px !important;
  width: 60px !important;
  margin-top: 25px;
}

.content-post img,
.content-post video,
.content-post iframe,
.content-post audio {
  width: 100% !important;
  height: 200px !important;
  max-height: 200px !important;
  object-fit: contain;
}

#content-container-id img,
#content-container-id video,
#content-container-id audio {
  width: 100% !important;
  height: 100% !important;
  max-height: 500px !important;
  max-width: 100% !important;
  object-fit: contain;
}

#content-container-id iframe {
  width: 100% !important;
  height: 100% !important;
  height: 500px !important;
  max-height: 500px !important;
  max-width: 100% !important;
}

.post-item {
  color: #ffffff;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.2s;
  margin: 50px 0px 20px 0px;
  border-right: 3px solid white;
  border-bottom: 3px solid white;
  height: auto;
  min-height: 100px;
  transform: skewX(-25deg);
}

.clip-text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.post-item h1 {
  padding-top: 25px;
  padding-left: 50px;
  transform: skewX(25deg);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  word-break: break-all;
  margin-right: 30px;
}
.post-item img {
  transform: skewX(25deg) translateX(-25px);
}

.post-details {
  background-color: transparent !important;
  color: #ffffff;
}

.view-full-blog-text {
  color: #ff8269 !important;
  margin: 10px 0px;
}

.view-full-blog-text:hover {
  cursor: pointer;
}
.content-post {
  max-height: 200px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  max-width: 91%;
}

.content-post p:nth-last-of-type(1) {
  height: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
/* .post-item:hover {
  color: #ef4421 !important;
}

.post-item:hover .post-default-img {
  filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg)
    saturate(600%) contrast(0.8) !important;
} */

.post-img-container {
  display: block;
}

.post-img {
  position: absolute;
  width: 150px;
  left: 0px;
  -o-object-fit: contain;
  object-fit: contain;
  height: 97px;
  -webkit-filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg)
    saturate(600%) contrast(0.8);
  filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg)
    saturate(600%) contrast(0.8);
  z-index: -1;
  top: 0px;
}
.post-img-container {
  z-index: -1;
}
/* .post-img-container::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -12px;
  z-index: -1;
  width: 150px;
  height: 60px;
  transform: rotate(35deg);
  background-color: #000;
} */

.date-post-item {
  text-align: right;
  transform: skewX(25deg) translateY(-15px) translateX(-15px);
}

.skew-25 {
  transform: skewX(25deg) translateX(17px);
}

.plus-post-item {
  position: absolute;
  right: -100px;
  top: 25px;
}

.plus-post-item:hover {
  cursor: pointer;
}

#form-btn {
  min-width: 8px;
  position: absolute;
  right: 0px;
  z-index: 12;
  background-image: url("../img/submit-btn.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

#form-btn:hover {
  cursor: pointer;
}

#signup-email-input:autofill {
  background-color: transparent !important;
}

/* ===============================
		LAYOUT
=============================== */

.wrapper2 {
  width: 100%;
  margin: 0 auto;
}

#masthead,
.hero,
.contact_email,
.contact_links {
  width: 1380px;
  margin: 0 auto;
  padding: 0 100px;
}

#masthead {
  display: flex;
}
#nav-end {
  margin-left: auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  height: 100px;
}
.center {
  margin: 0 auto;
  align-content: center;
}

.hide {
  display: none;
}

.nav-item a {
  font-size: 24px;
}

#pylonsNavbar {
  height: 100px !important;
  background: transparent !important;
}

.whitepaper-section,
.contact-section {
  height: auto;
  min-height: 600px;
}
.contact-section {
  padding: 0px 10px;
  justify-content: space-between;
}
.contact-section-item {
  min-height: 600px;
  height: 100%;
  width: 350px;
  padding: 100px 20px;
  margin: 10px;
}

.contact-section-item span {
  color: #ffffffdc;
}

.contact-section-item p {
  color: #ffffffdc;
  font-size: 18px;
}

@media (max-width: 780px) {
  #footer-logo-container {
    justify-content: center !important;
    align-items: center !important;
  }
  .contact-section {
    flex-direction: column;
  }
  .contact-section-item {
    min-height: 300px;
  }
}

@media (max-width: 1130px) {
  .contact-section {
    justify-content: center !important;
    align-items: center;
  }
}
.whitepaper-section {
  background: url("../img/whitepaper-bg.svg") repeat;
  background-size: contain;
}

.info-section-text-wrapper {
  width: 300px;
}

@-webkit-keyframes infoTextAnimation {
  0% {
    opacity: 0;
    transform: translateY(20%);
  }

  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}

@keyframes infoTextAnimation {
  0% {
    opacity: 0;
    transform: translateY(20%);
  }

  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}

.animated-info-text {
  -webkit-animation-name: infoTextAnimation;
  animation-name: infoTextAnimation;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

footer form input {
  width: 90%;
  height: 80px;
  padding: 0px 20px;
  position: relative;
  z-index: 1;
  background-color: transparent !important;
  font-size: 20px;
  border: none;
  border-top: 1px solid #ffffffcc;
}

footer form input:-webkit-autofill {
  background-color: transparent !important;
}

footer form button {
  width: 5%;
  height: 80px;
  padding: 0px 20px;
  background-color: transparent;
  position: relative;
  border: none;
  outline: none !important;
}

/* ====================================
    Post
  ==================================== */
.post-container {
  height: auto !important;
  min-height: 550px;
}

.post-header {
  height: auto;
  min-height: 300px;
}

.post-header-other {
  min-height: auto;
}

.post-header-img-container,
.post-header-img {
  max-width: 550px;
  height: 350px;
  max-height: 350px;
  z-index: 0;
}

.post-header-img {
  position: absolute;
  left: 0px;
  height: 100% !important;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  z-index: -1;
}

.post-header-img-container::after {
  content: "";
  position: absolute;
  right: -44px;
  top: -39px;
  width: 180px;
  height: 100px;
  transform: rotate(35deg);
  background-color: #000000;
}

.post-details {
  bottom: 10px;
}
.post-details span {
  display: flex;
  justify-content: center;
}

.post-details span,
.post-details h1 {
  color: #ffffff;
}

.content-container {
  margin: 140px 0px;
}

.post-buy-btn {
  height: 60px;
}

.post-buy-btn:hover {
  cursor: pointer;
}

#content-container-id p {
  word-wrap: break-word;
}

@media screen and (max-width: 700px) {
  #content-container-id {
    width: 75% !important;
  }
}

@media screen and (max-width: 900px) {
  #post-details-container,
  #post-details-container div:first-of-type {
    justify-content: center !important;
  }
}

@media screen and (max-width: 600px) {
  .post-buy-btn {
    height: 50px !important;
  }
}

@media screen and (max-width: 400px) {
  .post-buy-btn {
    height: 40px !important;
  }
}

/* ===============================
		TYPOGRAPHY
=============================== */

p {
  margin: 0 0 1em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /*font-family:;  #666 */
  font-weight: 700;
  line-height: 1.15em;
  margin-bottom: 0.75em;
  text-align: left;
}

/* set in "ems" for optimial scalibity, especially for mobile devices; it's pixel equivalent is denoted to the right, based on a standard 16px base web-browser pixel size */
h1 {
  font-size: 2.25em; /* 36px */
}
h2 {
  font-size: 1.875em; /* 30px */
}
h3 {
  font-size: 1.5em; /* 24px */
}
h4 {
  font-size: 1.313em; /* 21px */
}
h5 {
  font-size: 1.125em; /* 18px */
}
h6 {
  font-size: 0.875em; /* 14px */
}

/* default list styles */
ul {
  font-size: 0.9em;
  line-height: 1em;
  list-style-position: outside;
  padding: 0 35px 0;
}
li {
  margin-bottom: 1.2em;
}

code {
  background-color: rgba(
    0,
    0,
    0,
    0.1
  ); /* the last number sets the BG's opacity */
  color: LightSlateGray;
  padding: 2px;
  border-radius: 5px;
}

@media (max-width: 660px) {
  .info-section-text-wrapper h1,
  .info-section-text-wrapper p {
    text-align: center;
  }
}
/* ===============================
		SECTIONAL CONTENT
=============================== */

/* --- Masthead & Main Navigation --- */

#masthead {
  background: #fff;
  border: none !important; /* this overrides other border rules */
  color: #1212c4;
  margin: 0 auto;
  padding-top: 20px;
  padding-bottom: 20px;
}

#masthead .link_module {
  margin-bottom: 0;
  font-size: 1rem;
}

.primary_links {
  font-size: 1em;
  float: right;
}

.primary_links a:link {
  font-weight: 500;
  margin-left: 1em;
  position: relative;
  top: 10px;
}

.primary_links a:link {
  color: #1212c4;
  text-decoration: none;
}
.primary_links a:visited {
  color: #1212c4;
  text-decoration: none;
}
.primary_links a:hover {
  color: #1212c4;
  text-decoration: underline;
}
.primary_links a:active {
  color: #1212c4;
  text-decoration: underline;
}

/* --- Hero --- */

.hero {
  background-size: 1200px auto;
  background-repeat: no-repeat;
  background-position: 760px 0px;
  background-color: transparent !important;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero h1,
.hero p {
  color: #ef4422;
  width: 575px;
}

.hero h1 {
  width: 85%;
}

@media screen and (max-width: 1380px) {
  .hero h1,
  .hero p {
    width: auto;
  }
}

.hero h1 {
  color: #ef4422;
  font-size: 200px;
  font-weight: 400;
  line-height: 157px;
  font-family: "Pylons V3";
  margin-bottom: 40px;
  text-transform: uppercase;
}

@media screen and (max-width: 1000px) {
  .hero h1 {
    font-size: 7em;
    line-height: 90px;
  }
}

@media screen and (max-width: 800px) {
  .hero h1 {
    font-size: 5em;
    line-height: 70px;
  }
}

@media screen and (max-width: 500px) {
  .hero h1 {
    font-size: 4em;
    line-height: 55px;
  }
}

@media screen and (max-width: 350px) {
  .hero h1 {
    font-size: 3.5em;
    line-height: 50px;
  }
}

.hero p {
  color: #ffffff;
  font-size: 1.4em;
  font-weight: 300;
  line-height: 1.25em;
}

.hero p a:link {
  color: #ffffff;
  text-decoration: underline;
}
.hero p a:visited {
  color: #1212c4;
  text-decoration: underline;
}
.hero p a:hover {
  color: #080830;
  text-decoration: underline;
  background-color: #ffd2c2;
}
.hero p a:active {
  color: #1212c4;
  text-decoration: underline;
}

/* --- Content --- */

.content-area {
  padding: 40px;
  background-color: #ffffff;
  min-width: 430px;
  max-width: 1380px;
  margin: auto;
}

.content-area article {
  max-width: 600px;
  background-color: #f1f1f2;
}

.content-area h2 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3em;
  padding: 17px 58px 20px 26px;
}

.content-area p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25em;
  padding: 17px 58px 20px 26px;
  display: block;
  color: #080830;
}

.content-area a {
  color: #1212c4;
  text-decoration: none;
}
.content-area a:visited {
  color: #1212c4;
  text-decoration: none;
}
.content-area a:hover {
  color: #080830;
  text-decoration: none;
  background-color: #ffd2c2;
}
.content-area a:active {
  color: #1212c4;
  text-decoration: underline;
}

.content-area.post article {
  margin: auto;
  background-color: #ffffff;
}

.banner {
  height: 137px;
  background: url("../img/bg_pylons-pattern-desktop.gif");
  background-color: #f1f1f2;
  background-size: 40% 137px;
  background-repeat: no-repeat;
  background-position: right;
  max-width: 1380px;
  margin: auto;
}

article time {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  height: 33px;
  display: block;
}

article h1 {
  font-weight: 600;
}

.author-image {
  height: 44px;
  width: 44px;
  margin-bottom: 30px;
}
.author-name {
  display: inline-block;
  vertical-align: top;
  margin-top: 13px;
  margin-left: 10px;
}
/* --- Contact --- */

.contact_email {
  background-color: #1212c4;
  padding-top: 40px;
  padding-bottom: 40px;
}

.contact_email h2 {
  color: #ffffff;
  font-size: 1.6em;
  font-weight: 500;
}
.contact_email p {
  color: #ffffff;
  font-size: 1.1em;
  font-weight: 300;
}

.contact_email span i {
  margin-right: 0.25em;
}

.contact_email p a:link {
  color: #ffffff;
  text-decoration: none;
}
.contact_email p a:visited {
  color: #ffffff;
  text-decoration: none;
}
.contact_email p a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.contact_email p a:active {
  color: #ffffff;
  text-decoration: underline;
}

/* --- Links --- */

.contact_links {
  background-color: #ffffff;
  padding-top: 20px;

  text-align: center;
}

.link_module {
  /* background-color: peachpuff;
	border: 1px solid grey;*/
  text-align: center;
  /*width: 245px;*/

  display: inline-block;
  margin-bottom: 30px;
  vertical-align: top;
}

.link_module {
  color: #f1f1f2;
  font-size: 32px;
}

.link_module .fa-briefcase,
.link_module .fa-discord,
.link_module .fa-file-alt,
.link_module .fa-github,
.link_module .fa-reddit,
.link_module .fa-discord,
.link_module .fa-telegram,
.link_module .fa-instagram,
.link_module .fa-twitter {
  color: #1212c4;
  font-size: 32px;
}

.link_module p {
  color: #080830;
  font-size: 0.5em;
  margin-top: 0.8em;
}

.link_module a:link {
  color: #080830;
  text-decoration: underline;
}
.link_module a:visited {
  color: #080830;
  text-decoration: underline;
}
.link_module a:hover {
  color: #1212c4;
  text-decoration: underline;
}
.link_module a:active {
  color: #080830;
  text-decoration: underline;
}

.link_module .fa-briefcase:hover,
.link_module .fa-discord:hover,
.link_module .fa-file-alt:hover,
.link_module .fa-file-text:hover,
.link_module .fa-github:hover,
.link_module .fa-reddit:hover,
.link_module .fa-telegram:hover,
.link_module .fa-discord:hover,
.link_module .fa-github:hover,
.link_module .fa-instagram:hover,
.link_module .fa-twitter:hover {
  color: #080830;
}

.link_module .fa-briefcase i before:hover,
.link_module .fa-discord i before:hover,
.link_module .fa-file-alt i before:hover,
.link_module .fa-file-text i before:hover,
.link_module .fa-reddit i before:hover,
.link_module .fa-telegram i before:hover,
.link_module .fa-discord i before:hover,
.link_module .fa-github i before:hover,
.link_module .fa-instagram i before:hover,
.link_module .fa-twitter i before:hover {
  color: #080830;
}

/* --- Footer --- */
/* --- Footer --- */
/* --- Footer --- */

.copyright_info {
  float: left;
  line-height: 1.5em;
  width: 60%;
}

.secondary_links {
  float: right;
  width: 40%;
}
.secondary_links i {
  color: #ffb094;
  float: right;
  margin-left: 20px;
  font-size: 20px;
}

/* this rule is used to clear CSS floats */
.clearfix {
  clear: both;
}

/* ===============================
		IMAGE ELEMENTS
=============================== */

/*.bg-pattern { background: DarkGray url("../img/bg_tile_pylons.gif") repeat; }*/

#masthead .logo {
  width: 100px;
  height: auto;
}

.img-border {
  border: 1px solid Silver;
}

/* ===============================
		SUPPORTING ASIDES
=============================== */

.promo-plug {
  /*background-color: pink;*/
  width: 300px;
  margin-top: 30px;
}
.promo-plug p {
  color: #060606;
  font-size: 1em !important;
}
.promo-plug img {
  width: 250px;
  height: auto;
}

/* --- Icons (Font Awesome) --- */

.fa-briefcase:hover,
.fa-circle:hover,
.fa-discord:hover,
.fa-envelope:hover,
.fa-facebook:hover,
.fa-facebook-f:hover,
.fa-file-text:hover,
.fa-github:hover,
.fa-instagram:hover,
.fa-linkedin:hover,
.fa-linkedin-in:hover,
.fa-twitter:hover {
  color: #ffffff;
}

.fa-briefcase i:hover,
.fa-circle i:hover,
.fa-discord i:hover,
.fa-envelope i:hover,
.fa-facebook i:hover,
.fa-facebook-f i:hover,
.fa-file-text i:hover,
.fa-github i:hover,
.fa-instagram i:hover,
.fa-linkedin i:hover,
.fa-linkedin-in i:hover,
.fa-twitter i:hover {
  color: #ffffff;
}

.fa-briefcase i before:hover,
.fa-circle i before:hover,
.fa-discord i before:hover,
.fa-envelope i before:hover,
.fa-facebook i before:hover,
.fa-facebook-f i before:hover,
.fa-file-text i before:hover,
.fa-github i before:hover,
.fa-instagram i before:hover,
.fa-linkedin i before:hover,
.fa-linkedin-in i before:hover,
.fa-twitter i before:hover {
  color: #ffffff;
}

/* **** TESTING ONLY **** */

/* ===============================
		RESPONSIVE
=============================== */

/* anything less than 1180px will force the layout to transition from a "fixed layout" using pixels into a "fluid layout" using % to make the layout scale gracefully as the browser width decreases. */

@media screen and (max-width: 1380px) {
  #wrapper {
    background-color: hotpink; /* width: 90%; padding: 20px 2.5% ; */
  }

  #masthead,
  .hero,
  .contact_email,
  .contact_links {
    width: 100%;
  }
}

@media screen and (max-width: 1240px) {
  .hero {
    /*background: url("/pylons_2.0/img/bg_pylons-pattern-desktop-2.gif");
		background-size: 1200px auto;*/
    background-repeat: no-repeat;
    background-position: 530px 0px;
    background-size: 1200px auto;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media screen and (max-width: 1180px) {
  #masthead {
    flex-direction: column;
  }
  #nav-end {
    margin: auto;
  }
  /*.link_module { width: 23%; }*/
}

@media screen and (max-width: 700px) {
  .copyright_info,
  .secondary_links {
    float: none;
    clear: both;
    width: 100%;
    text-align: center;
  }

  .secondary_links i {
    float: none;
    font-size: 32px;
    display: inline-block;
    margin: 10px 0 0;
    padding: 0 5px 0;
  }
}

@media screen and (max-width: 639px) {
  .hero {
    background-image: url("../img/bg_pylons-pattern-mobile.png");
    background-size: 100% auto;
    background-position: 0 -50px;
    background-repeat: no-repeat;

    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 625px) {
  /* .hero h1 { width: 100%; margin-bottom: 70%; } */
}

@media screen and (max-width: 580px) {
  .hero {
    /* background-size: cover; */
    background-size: 600px auto;
    background-position: 0 -60px;

    padding: 40px;
  }

  .promo-plug {
    width: 100%;
  }
  .promo-plug img {
    margin-left: 8%;
    margin-right: 8%;
  }

  .link_module {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 15px;
    text-align: left;
    margin-top: 0.5rem;
  }

  .link_module .fa-briefcase,
  .link_module .fa-discord,
  .link_module .fa-file-alt,
  .link_module .fa-github {
    font-size: 42px;
  }

  .link_module .fa-stack {
    float: left;
    margin-right: 10px;
  }
  .link_module p {
    font-size: 1em;
  }
}

@media screen and (max-width: 540px) {
  .hide {
    display: inline-block;
  }

  .copyright_info {
    font-size: 1.1em;
  }

  .secondary_links i {
    font-size: 24px;
    width: 40px;
  }
}

@media screen and (max-width: 480px) {
  .hero {
    background-size: 500px auto;
    background-position: 0 25px;

    /* padding: 40px 0; */
  }
}

@media screen and (max-width: 440px) {
  #masthead .logo {
    width: 200px;
    height: auto; /*text-align: center; margin: 0 20%; */
  }

  .primary_links {
    font-size: 1em;
    float: none;
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #f1f1f2;
  }
  .primary_links a:link {
    top: 10px;
  }

  .hero {
    background-image: none;
  }

  .hero {
    background-image: url("../img/bg_pylons-pattern-mobile2.png");
    background-size: 100% auto;
    background-position: 0px -10px;
    background-repeat: no-repeat;
  }

  .contact_email {
    padding-top: 20px;
    padding-bottom: 12px;
  }
  .contact_email h2 {
    font-size: 1.4em;
    font-weight: 500;
  }

  .contact_links {
    padding-top: 40px;
    padding-bottom: 10px;
  }

  .link_module {
    margin-bottom: 40px;
  }
  .link_module p {
    font-size: 0.85em;
  }

  .copyright_info {
    font-size: 0.75em;
  }
}

@media screen and (max-width: 300px) {
  /* was 380px before */

  #masthead,
  .hero,
  .contact_email,
  .contact_links {
    width: 320px;
  }
}

  /* Top Alert Banner */
.topbanner {
  background: #0049ff;
}

.topbanner__content {
  padding: 16px;
  max-width: 670px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.topbanner__text {
  flex-grow: 1;
  line-height: 1.4;
  font-family: "Quicksand", sans-serif;
}

.topbanner__close {
  background: none;
  border: none;
  cursor: pointer;
}

.topbanner__text,
.topbanner__close > span {
  color: #ffffff;
}

  /*FAQ */
.faq_area {
    position: relative;
    min-height: 700px;
    z-index: 1;
    color: #ffffff;
    background-color: #000000;
}

.faq-accordian {
    position: relative;
    z-index: 1;
}
.faq-accordian .card {
    position: relative;
    z-index: 1;
    color: #000000;
    margin-bottom: 1.5rem;
 -webkit-clip-path: polygon(10px 0%, calc(100% - 10px) 0%, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0% calc(100% - 10px), 0% 10px);
  clip-path: polygon(10px 0%, calc(100% - 10px) 0%, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0% calc(100% - 10px), 0% 10px);
/* edge cutout */

}
.faq-accordian .card:last-child {
    margin-bottom: 0;
}
.faq-accordian .card .card-header {
    background-color: #ffffff;
    padding: 0;
    border-bottom-color: #ebebeb;
}
.faq-accordian .card .card-header h6 {
    cursor: pointer;
    padding: 1.75rem 2rem;
    color: #3f43fd;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.faq-accordian .card .card-header h6 span {
    font-size: 1.5rem;
}
.faq-accordian .card .card-header h6.collapsed {
    color: #070a57;
}
.faq-accordian .card .card-header h6.collapsed span {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}
.faq-accordian .card .card-body {
    padding: 1.75rem 2rem;
}
.faq-accordian .card .card-body p:last-child {
    margin-bottom: 0;
}

@media only screen and (max-width: 575px) {
    .support-button p {
        font-size: 14px;
    }
}

.support-button i {
    color: #EF4421;
    font-size: 1.25rem;
}
@media only screen and (max-width: 575px) {
    .support-button i {
        font-size: 1rem;
    }
}

.support-button a {
    text-transform: capitalize;
    color: #EF4421;
}
@media only screen and (max-width: 575px) {
    .support-button a {
        font-size: 13px;
    }
}