/*
Theme Name: St. Albert
Description: St. Albert custom theme
Author: Marcy Design
Version: 1.0
*/
@import url("https://fonts.googleapis.com/css?family=Open+Sans: 400,700|Raleway: 400,700&display=swap");
.button {
  display: inline-block;
  transition: all 0.2s ease;
  cursor: pointer;
  text-align: center;
  background: #f4f4f4;
  text-decoration: none;
  padding: 9px 25px;
  color: #333;
  border: none;
}
.button .fa {
  margin: 0 7px 0 0;
}
.button :disabled,
.button .disabled {
  cursor: default;
  opacity: 0.5;
}
.button :hover {
  background: #dadada;
  transform: scale(1.04);
}
.button.green {
  background: #50b981;
  color: #fff;
}
.button.green :hover {
  background: #3faa71;
}
.button.blue {
  background: #1e1ca4;
  color: #fff;
}
.button.blue :hover {
  background: #1288b7;
}
.button.grey {
  background: #333;
  color: #fff;
}
.button.grey :hover {
  background: #202020;
}
.button.black {
  background: #000;
  color: #fff;
}
.button.black :hover {
  background: #202020;
}

.form_style_1 {
  position: relative;
}
.form_style_1 .element_wrap {
  width: 100%;
  margin: 0 0 4% 0;
  display: inline-block;
  vertical-align: top;
}
.form_style_1 .element_wrap label {
  display: block;
  font-weight: bold;
  margin: 0 0 4px 0;
  opacity: 0.8;
}
.form_style_1 .element_wrap [type=text],
.form_style_1 .element_wrap [type=password],
.form_style_1 .element_wrap [type=email],
.form_style_1 .element_wrap textarea,
.form_style_1 .element_wrap select {
  width: 100%;
  padding: 8px 20px;
  border-radius: 3px;
  border: 1px solid #b5b5b5;
  box-sizing: border-box;
}
.form_style_1 .element_wrap [type=text].required,
.form_style_1 .element_wrap [type=password].required,
.form_style_1 .element_wrap [type=email].required,
.form_style_1 .element_wrap textarea.required,
.form_style_1 .element_wrap select.required {
  background: #ffe5e5;
  border: 1px solid #ff9393;
}
.form_style_1 .element_wrap select {
  width: 100%;
  padding: 7px 4%;
  border-radius: 3px;
}
.form_style_1 .element_wrap.one_half {
  width: 48.5%;
  margin: 0 0 3% 2%;
}
.form_style_1 .element_wrap.one_third {
  width: 31.5%;
  margin: 0 0 3% 2%;
}
.form_style_1 .element_wrap.two_thirds {
  width: 65.5%;
  margin: 0 0 3% 2%;
}
.form_style_1 .element_wrap.one_fourth {
  width: 23%;
  margin: 0 0 3% 2%;
}
.form_style_1 .element_wrap.one_fifth {
  width: 18%;
  margin: 0 0 3% 2%;
}
.form_style_1 .element_wrap.row_first {
  margin: 0 0 3% 0;
}
.form_style_1 .instructions {
  margin: 0 0 6px 0;
  opacity: 0.7;
  font-size: 14px;
}
.form_style_1 .form_loading {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.7);
  background-size: 60px 60px;
  transition: all 0.2s ease;
  display: none;
  z-index: 99;
  text-align: center;
}
.form_style_1 .form_loading svg {
  margin: 20px 0 0 0;
}
.form_style_1 [type=submit] {
  font-size: 16px;
  padding: 8px 30px;
}

.lightbox_blur {
  filter: blur(3px);
}

#vlb_lightbox_mask {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: none;
}

#vlb_lightbox {
  position: fixed;
  top: 10px;
  left: 50%;
  padding: 0px;
  background: #fff;
  z-index: 9999;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
  border-radius: 1px;
  transform: rotateY(90deg);
  transition: all 0.6s cubic-bezier(0.87, -0.41, 0.19, 1.44);
  opacity: 0;
  /* transform: scale(50); 
    */
  filter: blur(0);
  -webkit-transform: translateZ(0);
}
#vlb_lightbox.open {
  opacity: 1;
  transform: rotateY(0deg);
  top: 50px;
  transform: scale(1);
}
#vlb_lightbox .lb_title {
  margin: 0 0 10px 0;
}
#vlb_lightbox #vlb_lightbox_close {
  position: absolute;
  top: -20px;
  right: -13px;
  font-size: 33px;
  transition: all 0.2s ease;
  opacity: 0.7;
  z-index: 99;
  color: #fff;
}
#vlb_lightbox #vlb_lightbox_close :hover {
  opacity: 1;
}

#md_lightbox_mask {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 99999999;
  display: none;
}

#md_lightbox {
  position: fixed;
  top: 10px;
  left: 50%;
  padding: 20px;
  background: #fff;
  z-index: 99999999;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
  border-radius: 1px;
  transform: rotateY(90deg);
  transition: all 0.6s cubic-bezier(0.87, -0.41, 0.19, 1.44);
  opacity: 0;
  /* transform: scale(50); 
    */
  filter: blur(0);
  -webkit-transform: translateZ(0);
}
#md_lightbox.open {
  opacity: 1;
  transform: rotateY(0deg);
  top: 50px;
  transform: scale(1);
}
#md_lightbox .lb_title {
  margin: 0 0 10px 0;
}
#md_lightbox #lightbox_close {
  position: absolute;
  top: 2px;
  right: 5px;
  font-size: 25px;
  transition: all 0.2s ease;
  opacity: 0.5;
  z-index: 99;
}
#md_lightbox #lightbox_close :hover {
  opacity: 1;
}
#md_lightbox.lb_message {
  text-align: center;
}
#md_lightbox.lb_message .fas {
  display: block;
  text-align: center;
  font-size: 30px;
  margin: 0 0 10px 0;
}
#md_lightbox.lb_message p {
  font-size: 18px;
  margin: 20px 0;
}

* {
  box-sizing: border-box;
}

html,
body {
  font-family: "Open Sans", sans-serif;
  color: #333333;
  margin: 0;
}

.content_wrap {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
}

.clear {
  clear: both;
}

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

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

a {
  cursor: pointer;
  color: #333333;
}

img {
  border: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
  color: #4e4e4e;
}

.md-loading-mask {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.5);
  z-index: 99;
}

.md-loading-spinner {
  border: 5px solid #f3f3f3;
  border-radius: 50%;
  border-top: 5px solid #333;
  width: 50px;
  height: 50px;
  -webkit-animation: spin 1s linear infinite; /* Safari */
  animation: spin 1s linear infinite;
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.theme_sn a {
  display: inline-block;
  height: 20px;
  line-height: 20px;
  width: 20px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  transition: all 0.2s ease;
}
.theme_sn a:hover {
  transform: scale(1.2);
}
.theme_sn a .sr_text {
  display: none;
}

body {
  background: #fff;
}

#main_header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  padding: 3px 0 10px;
  background: #fff;
  z-index: 999;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}
#main_header .content_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #main_header .content_wrap {
    justify-content: center;
  }
}

#logo, #footer_logo {
  float: left;
  margin: 0 auto;
}
#logo img, #footer_logo img {
  height: 90px;
  width: auto;
}

#main_nav_buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
#main_nav_buttons a {
  background: #5da156;
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease-in-out;
}
#main_nav_buttons a:hover {
  background: #31603c;
}
#main_nav_buttons a:nth-child(2) {
  background: #fff;
  border: 2px solid #7d7d7d;
  color: #7d7d7d;
}
#main_nav_buttons a:nth-child(2):hover {
  border: 2px solid rgb(218, 128, 57);
  color: rgb(218, 128, 57);
}

#main_nav {
  text-align: center;
  flex-grow: 1000;
}
#main_nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1000px) {
  #main_nav ul li:first-child {
    display: none;
  }
}
#main_nav ul li {
  display: inline-block;
  position: relative;
}
#main_nav ul li a {
  display: inline-block;
  position: relative;
  line-height: 30px;
  padding: 0 0.75vw;
  text-decoration: none;
  transition: all 0.2s ease;
}
#main_nav ul li:hover {
  background: #efefef;
}
#main_nav ul li:hover .sub-menu {
  display: block;
}
#main_nav ul li.current-menu-item a {
  background: #efefef;
}
#main_nav ul li.menu-item-has-children > a:after {
  font-family: "Font Awesome 5 Pro";
  content: "\f078";
  display: inline-block;
  margin: 0 0 0 10px;
  font-size: 8px;
  vertical-align: top;
  transition: all 0.2s ease;
  opacity: 0.5;
  font-weight: bold;
}
#main_nav ul li.menu-item-has-children.submenu_open > a:after {
  transform: rotate(180deg);
}
#main_nav ul li.submenu_open > ul.sub-menu {
  max-height: 500px;
  transition: all 0.2s ease-in;
  opacity: 1;
  transform: scale(1);
  z-index: 9999;
  display: block;
  overflow: visible;
}
#main_nav ul.sub-menu {
  position: absolute;
  left: 0;
  top: 30px;
  background: #efefef;
  min-width: 150px;
  transition: all 0.2s ease-out;
  text-align: left;
  max-height: 0;
  opacity: 0;
  transform: scale(0.5);
  overflow: hidden;
}
#main_nav ul.sub-menu li {
  display: block;
}
#main_nav ul.sub-menu li a {
  line-height: 30px;
  display: block;
  white-space: nowrap;
  background: none;
  color: #333;
  font-weight: normal;
}
#main_nav ul.sub-menu li a:hover {
  background: #dadada;
}
#main_nav ul.sub-menu li.menu-item-has-children > a:after {
  font-family: "Font Awesome 5 Pro";
  content: "\f054";
  display: inline-block;
  font-size: 8px;
  vertical-align: top;
  font-weight: 700;
}
#main_nav ul.sub-menu ul.sub-menu {
  left: 100%;
  top: 0;
}
@media screen and (max-width: 768px) {
  #main_nav {
    display: none;
  }
}

#mobile_nav {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 260px;
  margin: 0 0 0 -261px;
  background: #fff;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.87, -0.41, 0.19, 1.44);
  z-index: 9999999;
  display: none;
}
#mobile_nav.open {
  box-shadow: 0 0 5px 0 #dadada;
  margin: 0;
}
#mobile_nav #menu_scroll {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 260px;
  background: #fff;
  text-align: center;
  overflow-y: scroll;
  direction: rtl;
}
#mobile_nav #nav_button {
  position: absolute;
  top: 0;
  left: 100%;
  width: 56px;
  height: 52px;
  line-height: 52px;
  font-size: 30px;
  text-align: center;
  color: #333333;
  transition: all 0.1s ease;
  cursor: pointer;
  z-index: 9999999;
}
#mobile_nav #nav_button #icon_holder:before {
  font-family: "Font Awesome 5 Pro";
  content: "\f0c9";
  display: inline-block;
  transition: all 0.2s ease;
  font-weight: 700;
}
#mobile_nav #nav_button i {
  margin: 0 7px 0 0;
}
#mobile_nav.open #nav_button {
  background: #333333;
  color: #fff;
}
#mobile_nav.open #nav_button #icon_holder:before {
  content: "\f00d";
}
#mobile_nav li {
  position: relative;
}
#mobile_nav li a {
  display: block;
  padding: 10px 5px;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid #f1f1f1;
  text-decoration: none;
  transition: all 0.1s ease;
  direction: ltr;
}
#mobile_nav li a:hover {
  background: #f1f1f1;
}
#mobile_nav li .submenu_toggle {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 11px;
  transition: all 0.2s ease;
  display: block;
  border-left: 1px solid #f1f1f1;
  background: #f9f9f9;
}
#mobile_nav li .submenu_toggle i {
  transition: all 0.2s ease;
}
#mobile_nav li .submenu_toggle.open i {
  transform: rotate(180deg);
}
#mobile_nav li .sub-menu {
  display: none;
}
#mobile_nav li .sub-menu a {
  display: block;
  padding: 10px 5px;
  color: #000000;
  font-size: 14px;
  font-weight: normal;
  background: none;
  border-bottom: 1px solid #f2f2f2;
  margin: 0;
  transition: all 0.1s ease;
  background: #f9f9f9;
}
#mobile_nav li .sub-menu a:hover {
  background: #f4f4f4;
}
@media screen and (max-width: 768px) {
  #mobile_nav {
    display: block;
  }
}

.admin-bar #main_header {
  top: 32px;
}
.admin-bar #mobile_nav {
  top: 46px;
}
@media screen and (max-width: 782px) {
  .admin-bar #main_header {
    top: 46px;
  }
}

#container {
  min-height: 350px;
  margin: 100px 0 0 0;
  padding: 40px 0;
}

.fl-builder #container {
  margin: 107px 0 0;
  padding: 0;
}

.entry-title {
  margin: 0 0 15px 0;
  font-family: var(--header_font);
  color: var(--header_font_color);
  font-size: 23px;
}

#content {
  width: 70%;
  float: left;
}

#sidebar {
  width: 25%;
  float: right;
}
#sidebar ul.sid {
  list-style: none;
  margin: 0;
  padding: 0;
}
#sidebar .widget-container {
  background: #f6f6f6;
  margin: 0 0 20px 0;
  padding: 20px 30px;
}
#sidebar .widget-title {
  margin: 0 0 10px 0;
  color: #3b3b3b;
  font-size: 17px;
}

.category .post {
  border-bottom: 1px solid #dadada;
  padding: 20px 0;
}
.category .post .entry-title {
  font-size: 20px !important;
  margin: 0 0 10px 0 !important;
}
.category .post .entry-meta {
  font-size: 14px;
  font-style: italic;
  opacity: 0.7;
  margin: 0 0 10px 0;
}
.category .post .thumbnail {
  float: left;
  height: 90px;
  width: 140px;
  margin: 5px 20px 20px 0;
}
.category .post p {
  margin: 0 0 10px 0;
}

.single .entry-meta {
  font-size: 14px;
  font-style: italic;
  opacity: 0.7;
  margin: 0 0 15px 0;
}

#main_footer {
  text-align: center;
  background: #fff;
  padding: 6px 0 24px;
}
#main_footer p {
  margin: 0;
  color: #565656;
}
#main_footer a {
  color: #dadada;
}
#main_footer .content_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#main_footer #footer_nav {
  flex-grow: 100;
  margin: 0 0 20px 0;
}
#main_footer #footer_nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#main_footer #footer_nav ul li {
  display: inline-block;
}
#main_footer #footer_nav ul li a {
  display: inline-block;
  padding: 5px;
  color: #565656;
  text-decoration: none;
}
#main_footer #footer_content {
  margin: 0 0 20px 0;
  width: 100%;
}
#main_footer #footer_content .credits {
  margin-top: 1rem;
}

.bb_equal-height-buttons {
  align-content: flex-end;
  flex: 1 1 0;
  display: grid;
}

.hp_module-orange .fl-module.fl-module-rich-text {
  background-color: rgba(218, 128, 57, 0.7);
  transition: all 0.3s ease-in-out;
}

.hp_module-blue .fl-module.fl-module-rich-text {
  background-color: rgba(79, 154, 153, 0.7);
  transition: all 0.3s ease-in-out;
}

.hp_module-green .fl-module.fl-module-rich-text {
  background-color: rgba(76, 159, 92, 0.7);
  transition: all 0.3s ease-in-out;
}

.hp_module-orange:hover .fl-module.fl-module-rich-text {
  background-color: rgb(218, 128, 57);
}

.hp_module-blue:hover .fl-module.fl-module-rich-text {
  background-color: rgb(79, 154, 153);
}

.hp_module-green:hover .fl-module.fl-module-rich-text {
  background-color: rgb(76, 159, 92);
}

.hp_module {
  overflow: hidden;
}

.hp_module .fl-col-content {
  overflow: hidden;
}

.hp_module .fl-module-content {
  position: relative;
  height: 250px;
  top: 125px;
  transition: all 0.6s ease;
  margin: 0;
}
.hp_module .fl-module-content h2 {
  text-align: center;
}
.hp_module .fl-module-content p {
  padding: 0 20px 0 20px;
  margin-top: 125px;
}

.hp_module .fl-col-content::after {
  top: 250px !important;
  transition: all 0.6s ease;
  right: -100px !important;
  left: -100px !important;
  bottom: -100px !important;
}

.hp_module:hover .fl-module-content {
  top: 0;
}
.hp_module:hover .fl-module-content p {
  margin-top: 0;
}

.hp_module:hover .fl-col-content::after {
  top: 15px !important;
}

.fl-builder-edit .hp_module .fl-module-content {
  position: static;
  top: auto;
}

@media screen and (max-width: 768px) {
  .hp_module .fl-module-content {
    position: static;
    top: auto;
    font-weight: bold;
    background-color: rgba(84, 84, 84, 0.4);
  }
}

#main_nav ul li.hideondesktop, #main_footer #footer_nav ul li.hideondesktop {
  display: none;
}

@media screen and (max-width: 768px) {
  #main_nav_buttons a {
    display: none;
  }
}
#footer_menu {
  display: inline-block;
}

#main_footer #footer_nav ul.sub-menu {
  display: none;
}

.theme_sn {
  display: inline-block;
}

#main_footer p a {
  color: #565656;
}

#hpabout .fl-rich-text p {
  margin-top: 0;
}

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