/* ==========================================================================
   General
/* ========================================================================== */
html, body {
  height: 100%;
}

body {
  padding: 0;
  margin: 0;
  color: #000;
  font-size: 16px;
  font-family: Montserrat, sans-serif;
  line-height: 1.8;
}

a {
  color: #1F2224;
  text-decoration: none;
  transition: 0.4s;
}
a:hover {
  color: black;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: Montserrat, sans-serif;
}

img,
iframe {
  max-width: 100%;
}

strong {
  font-weight: 600;
}

.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}

.alignright {
  float: right;
  margin: 0 0 20px 20px;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

.bg-grey {
  background-color: rgb(120, 120, 120) !important;
}

.bg-light {
  background-color: rgb(235, 236, 240) !important;
}

.bg-light-red {
  background-color: #d64d4d !important;
}

.btn-light-red {
  display: inline-block;
  font-weight: 600;
  padding: 4px 20px;
  font-size: 14px;
  text-align: center;
  min-width: 200px;
  border-radius: 8px;
  border: 1px solid #d64d4d;
  color: #d64d4d;
  background-color: #d64d4d;
}
.btn-light-red:hover {
  background-color: #c32d2d;
  color: #fff;
}

.btn-red {
  display: inline-block;
  font-weight: 600;
  padding: 4px 20px;
  font-size: 14px;
  text-align: center;
  min-width: 200px;
  border-radius: 8px;
  background-color: #c32d2d;
  color: #fff !important;
}
.btn-red:hover {
  background-color: #d64d4d;
  color: #fff !important;
}

.btn-blue {
  display: inline-block;
  font-weight: 600;
  padding: 4px 20px;
  font-size: 14px;
  text-align: center;
  min-width: 200px;
  border-radius: 8px;
  background-color: #0b67ba;
  color: #fff !important;
}
.btn-blue:hover {
  background-color: #0e82ea;
  color: #fff !important;
}

.btn-large {
  height: 60px;
  font-size: 22px;
  padding: 0;
  line-height: 60px;
}

.btn-outlined {
  display: inline-block;
  font-weight: 600;
  padding: 4px 20px;
  font-size: 14px;
  text-align: center;
  min-width: 200px;
  border: 1px solid #fff;
  color: #fff;
}
.btn-outlined:hover {
  background-color: #fff;
  color: #1F2224;
}

.btn-outlined-dark {
  display: inline-block;
  font-weight: 600;
  padding: 4px 20px;
  font-size: 14px;
  text-align: center;
  min-width: 200px;
  border: 1px solid #1F2224;
  color: #1F2224;
}
.btn-outlined-dark:hover {
  background-color: #1F2224;
  color: #fff;
}

/* ==========================================================================
   Header
/* ========================================================================== */
#fixed-header {
  position: fixed;
  padding: 20px 0;
  left: 0;
  top: 0;
  width: 100%;
  transition: 0.3s;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
}
#fixed-header.scrolled {
  background-color: #fff;
}
#fixed-header.scrolled #logo-container {
  height: 64px;
}
#fixed-header.scrolled #logo {
  opacity: 0;
  max-width: 80px;
}
#fixed-header.scrolled #logo-reverse {
  opacity: 1;
  max-width: 80px;
}
#fixed-header #logo-container {
  position: relative;
  width: 150px;
  height: 120px;
}
#fixed-header #logo {
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.3s;
  max-width: 150px;
}
#fixed-header #logo-reverse {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: 0.3s;
  max-width: 150px;
}

#top-wrapper {
  color: rgb(235, 236, 240);
  font-size: 14px;
  transition: 0.3s;
}
#top-wrapper a {
  color: rgb(235, 236, 240);
}
#top-wrapper a:hover {
  color: #d64d4d;
}

#fixed-header.scrolled #top-wrapper {
  color: #1F2224;
}
#fixed-header.scrolled #top-wrapper a {
  color: #1F2224;
}
#fixed-header.scrolled #top-wrapper a:hover {
  color: #d64d4d;
}

/* ==========================================================================
   Navigation
/* ========================================================================== */
#nav-wrapper {
  flex: 1;
  align-content: space-around;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-nav li {
  margin-left: 30px;
}
.main-nav li a {
  display: block;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.3s;
  color: #fff;
}
.main-nav li a:hover {
  color: #d64d4d;
}

#fixed-header.scrolled .main-nav li a {
  color: #000;
}
#fixed-header.scrolled .main-nav li a:hover {
  color: #d64d4d;
}

/* ==========================================================================
   Home
/* ========================================================================== */
#main {
  position: relative;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: url("../img/main.jpg") center/cover;
}
#main:before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  content: "";
  background: rgba(31, 34, 36, 0.6);
  z-index: 0;
}
#main #main-title {
  position: relative;
  z-index: 1;
  text-align: center;
}
#main #main-title h1 {
  text-transform: uppercase;
  font-size: 36px;
  margin: 0;
}
#main #main-title #tagline-top {
  font-size: 20px;
}
#main #main-title #tagline-bottom {
  font-size: 18px;
}

/* ==========================================================================
   Content
/* ========================================================================== */
#page-header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-position: center;
  background-size: cover;
  height: 400px;
  background: url("../img/main.webp") center/cover;
}
#page-header h1.page-title {
  position: relative;
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-size: 60px;
  margin: 40px 0 0;
}
#page-header:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(31, 34, 36, 0.4);
  z-index: 0;
}

.featured-image img {
  height: auto;
  margin-bottom: 30px;
}

/* ==========================================================================
   BLOG
/* ========================================================================== */
.article-photo {
  position: relative;
  padding-top: 80%;
  background-position: center;
  background-size: cover;
}
.article-photo a {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  text-indent: 150%;
  overflow: hidden;
  white-space: nowrap;
}

/* Pagination */
.pagination {
  margin-top: 20px;
}

.pagination ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.pagination li {
  float: left;
}

.pagination li span,
.pagination li a {
  display: block;
  padding: 5px 10px;
  margin-right: 2px;
  background: #e2e2e2;
  text-decoration: none;
}

.pagination li span {
  background: #f3f3f3;
}

.pagination .next,
.pagination .prev {
  position: relative;
  top: auto;
  margin: 0 2px 0 0;
  right: auto;
  left: auto;
}

/* ==========================================================================
   Forms
/* ========================================================================== */
form input[type=text],
form input[type=email],
form input[type=tel],
form textarea,
form select {
  display: inline-block;
  width: 100%;
  margin-bottom: 15px !important;
  height: 50px !important;
  border-radius: 0 !important;
  border: 1px solid #ccc !important;
}
form textarea {
  display: block;
  height: 100px !important;
  padding: 6px 10px;
  font-size: 14px;
}
form input[type=submit],
form input[type=reset],
form button[type=submit] {
  margin: 0 !important;
  border-radius: 0 !important;
  border: 0 !important;
  padding: 10px 20px !important;
  height: 50px !important;
  background: #1F2224 !important;
  color: #fff !important;
  text-transform: uppercase;
}
form button {
  padding: 15px 40px;
  font-family: Montserrat, sans-serif;
  font-weight: bold;
  border: 0 !important;
  box-shadow: none !important;
}

.frm_style_formidable-style.with_frm_style .form-field {
  margin: 0 !important;
}

.with_frm_style .vertical_radio .frm_checkbox {
  float: left;
  width: 50%;
  margin-bottom: 10px;
}

/* ==========================================================================
   Footer
/* ========================================================================== */
#footer-wrapper {
  font-weight: 300;
  color: #fff;
  text-align: center;
  background: #000;
}
#footer-wrapper a {
  color: #fff;
}
#footer-wrapper a:hover {
  color: #000;
}
#footer-wrapper #footer-top-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #000 url("../img/footer-bg.jpg") center/cover;
}
#footer-wrapper #footer-top-wrapper #footer-top {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  color: #fff;
}
#footer-wrapper #footer-top-wrapper:before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  content: "";
  background: rgba(0, 0, 0, 0.8);
  z-index: 0;
}
#footer-wrapper #footer-mid {
  padding: 20px;
  font-weight: 500;
  background: #c32d2d;
}
#footer-wrapper #footer-mid #footer-social a {
  display: inline-block;
  font-size: 20px;
  margin: 0 6px;
}
#footer-wrapper .footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
#footer-wrapper .footer-nav ul li {
  margin: 0 10px;
}
#footer-wrapper .footer-nav ul li a {
  font-weight: 500;
  text-transform: uppercase;
}
#footer-wrapper .footer-nav ul li a:hover {
  color: #000;
}
#footer-wrapper #footer-bottom {
  padding: 20px;
  font-size: 12px;
}
#footer-wrapper #footer-bottom a {
  color: #fff;
}
#footer-wrapper #footer-bottom a:hover {
  color: #d64d4d;
}

/* ==========================================================================
   Responsive
/* ========================================================================== */

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