* {
  position: relative;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
  width: 100%;
  height: 100%;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #242526;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Squada One", sans-serif;
  font-weight: 600;
  color: #242526;
  line-height: 1;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

a {
  text-decoration: none;
  color: #882112;
  transition: all 0.3s ease-in-out;
}
a:hover {
  color: #1E4DB4;
}

img {
  max-width: 100%;
  height: auto;
}

.container, main > * {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: start;
  align-items: start;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: end;
  align-items: end;
}
nav ul li {
  margin: 0 1rem;
}
nav ul li a {
  color: rgba(244, 247, 251, 0.6);
  transition: all 0.3s ease-in-out;
  font-weight: 600;
}
nav ul li a:hover {
  color: #F4F7FB;
}

.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  opacity: 0.7;
}

main {
  flex: 1;
  padding-bottom: 100px;
}
main > * {
  flex-direction: column;
}
main h2,
main h3,
main h4,
main h5,
main h6 {
  color: #1E4DB4;
}
main section {
  max-width: 100%;
}
@media (max-width: 992px) {
  main {
    padding-bottom: 50px;
  }
}
main::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #1E4DB4;
  z-index: -1;
  -webkit-clip-path: shape(from 0% 100%, line to 100% 0%, line to 100% 100%, line to 0% 100%);
          clip-path: shape(from 0% 100%, line to 100% 0%, line to 100% 100%, line to 0% 100%);
}
@media (max-width: 992px) {
  main::after {
    height: 50px;
  }
}

.has-text-align-center {
  display: block;
}

.text-dark {
  color: #242526;
}

.gfield_description,
label,
legend {
  margin: 0 !important;
  padding: 0 !important;
}

.ginput_counter {
  color: #F4F7FB !important;
}

.gfield_required {
  color: #882112 !important;
}

input,
select,
textarea {
  border-radius: 10px;
  border: 1px solid rgba(36, 37, 38, 0.3);
  outline: none;
  color: rgba(36, 37, 38, 0.6);
  transition: all 0.3s ease-in-out;
  line-height: 1.5;
}
input::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: rgba(36, 37, 38, 0.3);
}
input::placeholder,
select::placeholder,
textarea::placeholder {
  color: rgba(36, 37, 38, 0.3);
}
input:hover,
select:hover,
textarea:hover {
  border-color: #882112;
}
input:focus, input:active,
select:focus,
select:active,
textarea:focus,
textarea:active {
  border-color: #1E4DB4;
}

.button,
button,
input[type=submit] {
  background-color: #1E4DB4;
  color: #F4F7FB !important;
  border: 1px solid #1E4DB4;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  border-radius: 10px;
  display: inline-block;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
}
.button:hover,
button:hover,
input[type=submit]:hover {
  background-color: #882112;
  border: 1px solid #882112;
  color: #F4F7FB !important;
}
.button:focus, .button:active,
button:focus,
button:active,
input[type=submit]:focus,
input[type=submit]:active {
  background-color: #242526;
  border: 1px solid #242526;
  color: #F4F7FB !important;
}
.button.button-small,
button.button-small,
input[type=submit].button-small {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
}
.button.button-outline,
button.button-outline,
input[type=submit].button-outline {
  border: 2px solid #1E4DB4;
  background-color: transparent;
  color: #1E4DB4 !important;
}
.button.button-outline:hover,
button.button-outline:hover,
input[type=submit].button-outline:hover {
  border: 2px solid #882112;
  color: #882112 !important;
}
.button.button-outline:focus, .button.button-outline:active,
button.button-outline:focus,
button.button-outline:active,
input[type=submit].button-outline:focus,
input[type=submit].button-outline:active {
  border: 2px solid #242526;
  color: #242526 !important;
}
.button.button-outline.button-grey,
button.button-outline.button-grey,
input[type=submit].button-outline.button-grey {
  color: rgba(36, 37, 38, 0.6) !important;
  border: 1px solid rgba(36, 37, 38, 0.6);
}
.button.button-outline.button-grey:hover,
button.button-outline.button-grey:hover,
input[type=submit].button-outline.button-grey:hover {
  border: 1px solid #882112;
  color: #882112 !important;
}
.button.button-outline.button-grey:focus, .button.button-outline.button-grey:active,
button.button-outline.button-grey:focus,
button.button-outline.button-grey:active,
input[type=submit].button-outline.button-grey:focus,
input[type=submit].button-outline.button-grey:active {
  border: 1px solid #1E4DB4;
  color: #1E4DB4 !important;
}

header {
  background-color: #242526;
  color: #F4F7FB;
}
header .container, header main > * {
  justify-content: space-between;
  align-items: center;
}
header .container .logo img, header main > * .logo img {
  max-width: 250px;
  height: auto;
  width: 100%;
}
header .container .menu, header main > * .menu {
  display: none;
  cursor: pointer;
  font-size: 1.25rem;
}
@media (max-width: 992px) {
  header .container .menu, header main > * .menu {
    display: block;
  }
}
header .container nav ul li a::after, header main > * nav ul li a::after {
  content: "";
  display: block;
  height: 1px;
  background-color: #F4F7FB;
  width: 0;
  transition: all 0.3s ease-in-out;
}
header .container nav ul li a:hover::after, header main > * nav ul li a:hover::after {
  width: 100%;
}
@media (max-width: 992px) {
  header .container nav, header main > * nav {
    position: fixed;
    top: -100vh;
    left: 0;
    width: 100%;
    background-color: #1E4DB4;
    z-index: 1000;
    padding: 4rem 2rem 100px 2rem;
    -webkit-clip-path: shape(from 0% 0%, line to 100% 0%, line to 100% calc(100% - 50px), line to 0% 100%);
            clip-path: shape(from 0% 0%, line to 100% 0%, line to 100% calc(100% - 50px), line to 0% 100%);
    transition: all 0.3s ease-in-out;
  }
  header .container nav.open, header main > * nav.open {
    top: 0;
  }
  header .container nav .menu, header main > * nav .menu {
    text-align: right;
  }
  header .container nav ul, header main > * nav ul {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  header .container nav ul li, header main > * nav ul li {
    margin: 1rem 0;
  }
  header .container nav ul li a, header main > * nav ul li a {
    font-size: 1.5rem;
    color: #F4F7FB;
    transition: color all 0.3s ease-in-out;
  }
  header .container nav ul li a:hover, header main > * nav ul li a:hover {
    color: "Roboto", sans-serif;
  }
}

footer {
  background-color: #242526;
  color: rgba(244, 247, 251, 0.6);
  margin-top: auto;
}
footer .container, footer main > * {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas: "social nav" "legal legal";
  grid-template-rows: auto;
  padding: 2rem;
  gap: 1rem;
}
@media (max-width: 767px) {
  footer .container, footer main > * {
    grid-template-columns: 1fr;
    grid-template-areas: "logo" "nav" "social" "legal";
  }
}
footer .container .logo, footer main > * .logo {
  grid-area: logo;
  display: none;
  justify-self: center;
}
footer .container .logo img, footer main > * .logo img {
  max-width: 250px;
}
@media (max-width: 767px) {
  footer .container .logo, footer main > * .logo {
    display: block;
  }
}
footer .container .social, footer main > * .social {
  display: flex;
  gap: 1rem;
  grid-area: social;
}
@media (max-width: 767px) {
  footer .container .social, footer main > * .social {
    justify-content: center;
  }
}
footer .container .social a, footer main > * .social a {
  color: rgba(244, 247, 251, 0.6);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  footer .container .social a, footer main > * .social a {
    font-size: 1.5rem;
  }
}
footer .container .social a:hover, footer main > * .social a:hover {
  color: #F4F7FB;
}
footer .container nav, footer main > * nav {
  grid-area: nav;
}
@media (max-width: 767px) {
  footer .container nav ul, footer main > * nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
footer .container nav ul li a, footer main > * nav ul li a {
  font-weight: 400;
}
footer .container nav ul li a:hover, footer main > * nav ul li a:hover {
  text-decoration: none;
}
footer .container .legal, footer main > * .legal {
  font-size: 0.75rem;
  flex-basis: 100%;
  text-align: center;
  grid-area: legal;
}
footer .container .legal nav, footer main > * .legal nav {
  margin-top: 0.5rem;
}
footer .container .legal nav ul, footer main > * .legal nav ul {
  justify-content: center;
  flex-direction: row;
}
footer .container .legal nav ul li, footer main > * .legal nav ul li {
  margin: 0 0.5rem;
}
footer .container .legal nav ul li a, footer main > * .legal nav ul li a {
  text-decoration: underline;
}

.single-hero {
  padding: 2rem;
  padding-bottom: 90px;
}
@media (max-width: 992px) {
  .single-hero .container, .single-hero main > * {
    flex-direction: column;
    gap: 1rem;
  }
}
.single-hero .container .hero-content, .single-hero main > * .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 1rem;
  max-width: 50%;
  padding: 2rem;
  background-color: rgba(244, 247, 251, 0.6);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}
.single-hero .container .hero-content .date, .single-hero main > * .hero-content .date {
  color: #882112;
}
@media (max-width: 992px) {
  .single-hero .container .hero-content, .single-hero main > * .hero-content {
    max-width: 100%;
  }
}
.single-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #1E4DB4;
  z-index: -1;
  -webkit-clip-path: shape(from 0% 100%, line to 100% 0%, line to 100% 100%, line to 0% 100%);
          clip-path: shape(from 0% 100%, line to 100% 0%, line to 100% 100%, line to 0% 100%);
}
@media (max-width: 992px) {
  .single-hero::after {
    height: 50px;
  }
}

.single main .container, .single main > * {
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 100px;
}
.single main .container > iframe, .single main > * > iframe {
  margin: auto;
}
.single main .container > iframe.truthsocial-embed, .single main > * > iframe.truthsocial-embed {
  min-height: 1100px;
}
.single main .container .media, .single main > * .media {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.single main .container .media .video-embed, .single main > * .media .video-embed {
  background-color: #242526;
  position: relative;
  top: 0;
  overflow: hidden;
  left: 0;
  width: 100%;
  padding-top: 56.25%;
  z-index: 1;
  background-color: #242526;
}
.single main .container .media .video-embed iframe, .single main > * .media .video-embed iframe,
.single main .container .media .video-embed video,
.single main > * .media .video-embed video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.single main .container .wp-block-embed.wp-block-embed-twitter, .single main > * .wp-block-embed.wp-block-embed-twitter {
  margin: auto;
}/*# sourceMappingURL=theme.css.map */