@charset "UTF-8";
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn.visible {
  opacity: 0;
  animation: fadeIn 1s ease-in-out forwards;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut.visible {
  opacity: 0;
  animation: fadeOut 1s ease-in-out forwards;
}
@keyframes zoomOut {
  0% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes zoomOut {
  0% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}
.zoomOut.visible {
  opacity: 0;
  animation: zoomOut 1s ease-in-out forwards;
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(90px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(90px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
.slideInLeft.visible {
  opacity: 0;
  animation: slideInLeft 1s ease-in-out forwards;
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(-90px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(-90px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
.slideInRight.visible {
  opacity: 0;
  animation: slideInRight 1s ease-in-out forwards;
}
@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-90px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-90px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
.slideInDown {
  opacity: 0;
  animation: slideInDown 0.6s ease-in-out forwards;
}
@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(90px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@-webkit-keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(90px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
.slideInUp {
  opacity: 0;
  animation: slideInUp 1s ease-in-out forwards;
}
.hidden {
  opacity: 0;
}
html, body {
  position: relative;
  overflow-x: hidden;
}
body {
  font-family: "PT Serif", serif;
  font-size: 17px;
  color: #333;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  animation: fadeIn 0.5s ease-in;
}
@media (max-width: 767px) {
  body {
    font-size: 16px;
  }
}
a {
  display: inline-block;
  color: #457b9d;
  transition: 0.2s;
}
a:hover {
  color: #111;
}
a[href*="//"]:not([href*="perinton.gov"]):after {
  content: "";
  font-family: "Font Awesome 5 Pro";
  font-weight: 600;
  font-size: 75%;
  margin-left: 7px;
  margin-bottom: 2px;
}
.header__social a:after, .footer__social a:after, #nav-panel .social a:after {
  display: none;
}
a[href$=".pdf"], a[href$=".doc"], a[href$=".docx"], a[href^="mailto:"] {
  display: inline-flex;
}
a[href$=".pdf"]:before, a[href$=".doc"]:before, a[href$=".docx"]:before, a[href^="mailto:"]:before {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  margin-right: 7px;
}
a[href$=".pdf"]:before {
  content: "";
}
a[href$=".doc"]:before, a[href$=".docx"]:before {
  content: "";
}
a[href^="mailto:"]:before {
  content: "";
}
.wp-block-image a[href$=".pdf"]:before {
  display: none;
}
a.button, button.button, p.button a, .gform_button, .form-submit #submit {
  background: #a8dadc;
  color: #1a1c27;
  font-size: 95%;
  font-weight: 700;
  font-family: "Raleway", sans-serif;
  line-height: 1.1;
  border: 0;
  padding: 10px 20px;
  border-radius: 5px;
  transition: 0.4s;
}
a.button:hover, a.button:focus, button.button:hover, button.button:focus, p.button a:hover, p.button a:focus, .gform_button:hover, .gform_button:focus, .form-submit #submit:hover, .form-submit #submit:focus {
  color: #fff;
  background: #231f20;
  text-decoration: none;
}
a.button.outline, button.button.outline, p.button a.outline, .gform_button.outline, .form-submit #submit.outline {
  background: #fff;
  color: #666;
}
a.button i, button.button i, p.button a i, .gform_button i, .form-submit #submit i {
  margin-right: 7px;
}
h1, h2, h3, h4 {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
}
h1 {
  font-size: 300%;
  font-family: "Raleway", sans-serif;
  font-style: italic;
}
@media (max-width: 767px) {
  h1 {
    font-size: 200%;
  }
}
h2 {
  font-size: 200%;
  color: #1d3557;
}
@media (max-width: 767px) {
  h2 {
    font-size: 150%;
  }
}
p + h2, .entry-content > h2 {
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
}
h3 {
  font-size: 140%;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  h3 {
    font-size: 120%;
  }
}
h4 {
  font-size: 110%;
}
@media (max-width: 767px) {
  h4 {
    font-size: 105%;
  }
}
.mark, mark {
  background-color: #f7f38c;
  padding: 2px 5px;
}
img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}
video {
  max-width: 100%;
}
iframe {
  max-width: 100%;
}
.embed-container, .wp-block-embed-youtube .wp-block-embed__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.embed-container iframe, .embed-container object, .embed-container embed, .wp-block-embed-youtube .wp-block-embed__wrapper iframe, .wp-block-embed-youtube .wp-block-embed__wrapper object, .wp-block-embed-youtube .wp-block-embed__wrapper embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1300px;
  }
}
#alert-bar {
  background: #F31431;
  text-align: center;
  color: #fff;
  padding: 10px 0;
}
#alert-bar p {
  font-family: "Raleway", sans-serif;
  font-size: 90%;
  line-height: 1.3;
  margin: 0;
}
@media (max-width: 767px) {
  #alert-bar p {
    font-size: 80%;
  }
}
#alert-bar p a {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
}
#alert-bar p a:hover {
  color: #333;
  text-decoration: none;
}
#header {
  position: relative;
  z-index: 11;
}
#header .header__main {
  position: relative;
  background-color: #457b9d;
  padding: 25px 0 0 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: 0.5s;
}
@media (max-width: 991px) {
  #header .header__main {
    background-color: #fff;
    padding: 10px 0;
  }
}
#header .header__main.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  transition: 0.1s;
}
#header .header__main .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  #header .header__main .container {
    justify-content: space-between;
  }
}
#header .header__main .header__logo {
  position: absolute;
  top: -25px;
  left: 15px;
  width: 180px;
  padding: 10px;
  margin: 0 -10px;
}
@media (max-width: 1200px) {
  #header .header__main .header__logo {
    width: 160px;
  }
}
@media (max-width: 991px) {
  #header .header__main .header__logo {
    position: relative;
    top: auto;
    left: 0;
    width: 200px;
    padding: 0 10px;
  }
}
#header .header__main .header__logo img {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  #header .header__main .header__logo .header__logo--desktop {
    display: none;
  }
}
#header .header__main .header__logo .header__logo--mobile {
  display: none;
  margin: 0;
}
@media (max-width: 991px) {
  #header .header__main .header__logo .header__logo--mobile {
    display: block;
    padding: 10px;
  }
}
#header .header__main .header__main-content {
  color: #fff;
  text-align: right;
}
#header .header__main .header__main-content .header__main__top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  #header .header__main .header__main-content .header__main__top {
    display: none;
  }
}
#header .header__main .header__main-content .header__main__top .header__social {
  margin-right: 20px;
}
#header .header__main .header__main-content .header__main__top .header__social a {
  color: #fff;
  padding: 3px;
  transition: 0.2s;
}
#header .header__main .header__main-content .header__main__top .header__social a:hover {
  transform: scale(1.3);
}
#header .header__main .header__main-content .header__main__top .header__extra {
  margin-right: 20px;
}
#header .header__main .header__main-content .header__main__top .header__extra .button {
  color: #fff;
  border: 1px solid #a8dadc;
  background: none;
  padding: 5px 10px;
}
#header .header__main .header__main-content .header__main__top .header__extra .button:hover {
  background: #a8dadc;
  color: #111;
}
#header .header__main .header__main-content .header__main__top .searchform {
  margin-right: 20px;
}
#header .header__main .header__main-content .header__main__top .searchform label {
  display: none;
}
#header .header__main .header__main-content .header__main__top .searchform div {
  display: flex;
  align-items: center;
}
#header .header__main .header__main-content .header__main__top .searchform div input[type="text"] {
  width: 300px;
  border: none;
  background: rgba(255, 255, 255, 0.75);
  padding: 5px 40px 5px 15px;
  font-size: 90%;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  transition: 0.2s;
}
#header .header__main .header__main-content .header__main__top .searchform div input[type="text"]:focus {
  background: white;
}
#header .header__main .header__main-content .header__main__top .searchform div button {
  background: none;
  border: none;
  margin-left: -30px;
}
#header .header__main .header__main-content .header__main__top select {
  height: 32px;
  width: 150px;
  margin-right: 15px;
  border: none;
  background: #a8dadc;
  padding: 0 5px;
  font-size: 80%;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
}
#header .header__main .header__main-content .header__main__top #howdoi {
  position: relative;
  text-align: left;
}
#header .header__main .header__main-content .header__main__top #howdoi #howdoi-toggle {
  background-color: #1d3557;
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  color: #fff;
  text-align: left;
  border: none;
  padding: 4px 12px;
  width: 150px;
}
#header .header__main .header__main-content .header__main__top #howdoi #howdoi-toggle:after {
  content: "";
  font-family: "Font Awesome 5 Pro";
  font-weight: 600;
  float: right;
}
#header .header__main .header__main-content .header__main__top #howdoi #howdoi-toggle.active:after {
  content: "";
}
#header .header__main .header__main-content .header__main__top #howdoi #howdoi-container {
  visibility: hidden;
  position: absolute;
  z-index: 9;
  right: 0;
  width: 600px;
  opacity: 0;
  transition: 0.5s;
}
#header .header__main .header__main-content .header__main__top #howdoi #howdoi-container .howdoi-content {
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.05);
  color: #333;
  font-size: 90%;
  padding: 20px;
}
#header .header__main .header__main-content .header__main__top #howdoi #howdoi-container .howdoi-content .howdoi-content__overview h3 {
  border-bottom: 1px solid #457b9d;
  padding-bottom: 5px;
}
#header .header__main .header__main-content .header__main__top #howdoi #howdoi-container .howdoi-content .howdoi-content__links a {
  display: block;
  margin-bottom: 5px;
}
#header .header__main .header__main-content .header__main__top #howdoi #howdoi-container.active {
  visibility: visible;
  opacity: 1;
  transition: 0.2s;
}
@media (max-width: 991px) {
  #header .header__main .header__main-content #menu {
    display: none;
  }
}
#header .header__main .header__main-content #menu .menu {
  position: relative;
  padding: 0;
  margin: 0;
  list-style: none;
}
#header .header__main .header__main-content #menu .menu .menu-item {
  display: inline-block;
}
#header .header__main .header__main-content #menu .menu .menu-item a {
  font-family: "Raleway", sans-serif;
  font-size: 90%;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px 20px;
}
@media (max-width: 1200px) {
  #header .header__main .header__main-content #menu .menu .menu-item a {
    padding: 7px 14px;
  }
}
#header .header__main .header__main-content #menu .menu .menu-item a:hover, #header .header__main .header__main-content #menu .menu .menu-item a:focus {
  background-color: rgba(0, 0, 0, 0.1);
  text-decoration: none;
}
#header .header__main .header__main-content #menu .menu .menu-item .sub-menu.mega-menu {
  width: 100%;
  background: #1a1c27;
  text-align: left;
  padding: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  display: flex;
}
#header .header__main .header__main-content #menu .menu .menu-item .sub-menu.mega-menu div {
  flex: 1;
}
#header .header__main .header__main-content #menu .menu .menu-item .sub-menu .menu-item {
  display: block;
  position: relative;
}
#header .header__main .header__main-content #menu .menu .menu-item .sub-menu .menu-item a {
  display: block;
  padding: 5px 10px;
  font-size: 85%;
  line-height: 1.3;
  text-transform: none;
  border-left: 0px solid #a8dadc;
  transition: 0.1s;
}
@media (max-width: 1200px) {
  #header .header__main .header__main-content #menu .menu .menu-item .sub-menu .menu-item a {
    font-size: 75%;
  }
}
#header .header__main .header__main-content #menu .menu .menu-item .sub-menu .menu-item a:hover, #header .header__main .header__main-content #menu .menu .menu-item .sub-menu .menu-item a:focus {
  background: #457b9d;
  color: #fff;
  border-top: none;
  transition: 0.2s;
}
#header .header__main .header__main-content #menu .menu .menu-item .sub-menu .menu-item.menu-item-has-children > a {
  font-weight: 700;
  text-transform: uppercase;
}
#header .header__main .header__main-content #menu .menu .menu-item .sub-menu .menu-item .sub-menu {
  position: relative;
  opacity: 1;
  width: auto;
  padding-left: 0;
  margin: 0;
}
#header .header__main .header__main-content #menu .menu .menu-item .sub-menu .menu-item .sub-menu .menu-item a {
  display: flex;
}
#header .header__main .header__main-content #menu .menu .menu-item .sub-menu .menu-item .sub-menu .menu-item a:before {
  content: "";
  display: block;
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  font-size: 50%;
  margin-right: 6px;
  margin-top: 6px;
}
#header .header__main .header__main-content #menu .menu > li {
  transition: 0.2s;
}
#header .header__main .header__main-content #menu .menu > li:hover {
  background: #1a1c27;
}
#header .header__main .header__main-content #nav-toggle {
  display: none;
  position: relative;
  z-index: 99;
  background: none;
  border: none;
  color: #457b9d;
  width: 32px;
  padding: 5px;
  transition: 0.2s;
  outline: none;
}
@media (max-width: 991px) {
  #header .header__main .header__main-content #nav-toggle {
    display: block;
  }
}
#header .header__main .header__main-content #nav-toggle:before, #header .header__main .header__main-content #nav-toggle:after {
  background-color: #457b9d;
  content: "";
  display: block;
  height: 3px;
  transition: all 200ms ease-in-out;
}
#header .header__main .header__main-content #nav-toggle:before {
  box-shadow: 0 8px 0 #457b9d;
  margin-bottom: 13px;
}
#header .header__main .header__main-content #nav-toggle.active {
  transform: rotate(90deg);
}
#header .header__main .header__main-content #nav-toggle.active:before {
  background-color: #457b9d;
  box-shadow: 0 0 0 transparent;
  transform: translateY(8px) rotate(45deg);
}
#header .header__main .header__main-content #nav-toggle.active:after {
  background-color: #457b9d;
  transform: translateY(-8px) rotate(-45deg);
}
#nav-panel .nav-panel__overlay {
  position: absolute;
  z-index: 9;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0);
  visibility: hidden;
  transition: 0.2s;
}
#nav-panel .nav-panel__container {
  position: fixed;
  z-index: 999;
  top: 0;
  height: 100vh;
  width: 100%;
  max-width: 300px;
  transform: translateX(-100%);
  background: #457b9d;
  padding: 10px 20px 20px 20px;
  transition: 0.3s ease-in-out;
  overflow-y: scroll;
}
#nav-panel .nav-panel__container .nav-panel__logo {
  text-align: center;
  padding: 10px 20px;
  margin-bottom: 15px;
}
#nav-panel .nav-panel__container .nav-panel__logo img {
  margin: 0;
  width: 100px;
}
#nav-panel .nav-panel__container .searchform {
  margin-right: 0;
  margin-bottom: 30px;
  text-align: center;
}
#nav-panel .nav-panel__container .searchform label {
  display: none;
}
#nav-panel .nav-panel__container .searchform div {
  display: flex;
  align-items: center;
}
#nav-panel .nav-panel__container .searchform div input[type="text"] {
  width: 100%;
  border: none;
  background: rgba(255, 255, 255, 0.75);
  padding: 5px 40px 5px 15px;
  font-size: 90%;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  transition: 0.2s;
}
#nav-panel .nav-panel__container .searchform div input[type="text"]:focus {
  background: white;
}
#nav-panel .nav-panel__container .searchform div button {
  background: none;
  border: none;
  margin-left: -40px;
}
#nav-panel .nav-panel__container #mobile-menu {
  margin: 0 -10px 20px;
}
#nav-panel .nav-panel__container #mobile-menu .menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
#nav-panel .nav-panel__container #mobile-menu .menu .menu-item a {
  display: block;
  padding: 10px 20px;
  color: #333;
}
@media (max-width: 1200px) {
  #nav-panel .nav-panel__container #mobile-menu .menu .menu-item a {
    padding: 10px;
  }
}
#nav-panel .nav-panel__container #mobile-menu .menu .menu-item .sub-menu {
  display: none;
  padding: 0px 0px 10px 20px;
  list-style: none;
}
#nav-panel .nav-panel__container #mobile-menu .menu .menu-item .sub-menu .menu-item a {
  color: #457b9d;
  font-size: 90%;
  padding: 5px 10px;
}
#nav-panel .nav-panel__container #mobile-menu .menu .menu-item:first-child {
  border-top: 0;
}
#nav-panel .nav-panel__container #mobile-menu .menu .menu-item.current-menu-item a {
  color: #457b9d;
}
#nav-panel .nav-panel__container #mobile-menu .menu .menu-item-has-children > a:hover {
  text-decoration: none;
}
#nav-panel .nav-panel__container #mobile-menu .menu .menu-item-has-children > a:after {
  content: "";
  font-family: "Font Awesome 5 Pro";
  font-weight: 600;
  color: #457b9d;
  float: right;
}
#nav-panel .nav-panel__container #mobile-menu .menu .menu-item-has-children.active > a:after {
  content: "";
}
#nav-panel .nav-panel__container #mobile-menu .menu > .menu-item a {
  font-weight: 600;
}
#nav-panel .nav-panel__container #mobile-menu .menu > .menu-item:first-child a {
  border-top: 0;
}
#nav-panel .nav-panel__container #mobile-menu .menu > .menu-item > a {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
#nav-panel .nav-panel__container #mobile-menu .menu > .menu-item > a:hover {
  text-decoration: none;
}
#nav-panel .nav-panel__container .nav-panel__extra {
  font-size: 85%;
  text-align: center;
  margin-bottom: 30px;
}
#nav-panel .nav-panel__container .nav-panel__extra h2 {
  font-size: 150%;
  color: #fff;
  padding-bottom: 5px;
  border-bottom: 1px solid #1a1c27;
}
#nav-panel .nav-panel__container .nav-panel__extra p:last-child {
  margin-bottom: 0;
}
#nav-panel .nav-panel__container .nav-panel__extra a {
  color: #fff;
}
#nav-panel .nav-panel__container .social {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
#nav-panel .nav-panel__container .social .social-link {
  color: #fff;
  background: #a8dadc;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  opacity: 0.9;
}
#nav-panel .nav-panel__container .social .social-link:last-child {
  margin-right: 0;
}
#nav-panel .nav-panel__container .social .social-link:hover {
  opacity: 1;
  text-decoration: none;
}
#nav-panel .nav-panel__container .nav-panel__bottom {
  font-size: 75%;
  text-align: center;
}
#nav-panel.active .nav-panel__overlay {
  visibility: visible;
  background: rgba(0, 0, 0, 0.4);
}
#nav-panel.active .nav-panel__container {
  transform: translateX(0);
}
.admin-bar #nav-panel {
  top: 32px;
}
@media (max-width: 785px) {
  .admin-bar #nav-panel {
    top: 45px;
  }
}
#footer {
  background-color: #1a1c27;
  padding: 60px 0 0;
  color: #fff;
  font-size: 90%;
}
@media (max-width: 767px) {
  #footer {
    padding: 30px 0 0;
  }
}
#footer .footer__title {
  text-transform: uppercase;
}
#footer .footer__nav {
  margin-bottom: 20px;
}
#footer .footer__nav .menu {
  padding: 0;
  margin: 0;
  list-style: none;
}
#footer .footer__nav .menu .menu-item a {
  color: #a8dadc;
}
#footer .footer__nav .menu .menu-item a:hover {
  color: #fff;
}
#footer .footer__contact {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 10px;
  margin-top: -20px;
}
@media (max-width: 991px) {
  #footer .footer__contact {
    margin-top: 0;
    margin-bottom: 20px;
  }
}
#footer .footer__contact .footer__contact-locations .footer__contact-location {
  margin-bottom: 20px;
}
#footer .footer__contact .footer__contact-locations .footer__contact-location p {
  margin-bottom: 0;
}
#footer .footer__contact .footer__contact-locations .footer__contact-location p.footer__contact-location-title {
  font-family: "Raleway", sans-serif;
  font-size: 110%;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 5px;
}
#footer .footer__contact .footer__contact-locations .footer__contact-location p.footer__contact-location-phone {
  font-weight: 700;
}
#footer .footer__contact .footer__contact-locations .footer__contact__button-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 600px) {
  #footer .footer__contact .footer__contact-locations .footer__contact__button-wrapper .button {
    padding: 10px;
    font-size: 88%;
  }
}
#footer .footer__branding {
  margin-top: 30px;
  border-top: 1px solid #111;
  padding: 30px 0;
  text-align: center;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  #footer .footer__branding {
    justify-content: center;
    margin: 0;
    padding: 20px 0;
  }
}
#footer .footer__branding .footer__logo {
  width: 120px;
  margin-bottom: 0px;
  margin-right: 30px;
}
@media (max-width: 767px) {
  #footer .footer__branding .footer__logo {
    width: 100px;
  }
}
#footer .footer__branding .footer__social a {
  font-size: 26px;
  color: #fff;
  margin-right: 15px;
}
#footer .footer__branding .footer__social a:last-child {
  margin-right: 0;
}
#footer .footer__branding .footer__social a:hover, #footer .footer__branding .footer__social a:focus {
  color: #a8dadc;
}
#footer .footer__bottom {
  background-color: #111;
  color: #fff;
  text-align: center;
  padding: 8px 0;
  font-size: 80%;
}
#footer .footer__bottom p {
  margin: 0;
}
#footer .footer__bottom p a:hover {
  color: #fff;
}
@media (max-width: 600px) {
  #footer .footer__bottom p .footer__bottom-block {
    display: block;
    text-align: left;
  }
}
@media (max-width: 600px) {
  #footer .footer__bottom p .footer__bottom-sep {
    display: none;
  }
}
#content {
  position: relative;
  padding: 0px 0 60px;
}
#content .header {
  position: relative;
  background: #333;
  padding: 30px 0;
}
#content .header .entry-title {
  color: #fff;
  line-height: 1.1;
  font-family: "PT Serif", serif;
  text-align: center;
  margin: 0;
}
#content .header.has-feat-img {
  height: 350px;
}
@media (max-width: 991px) {
  #content .header.has-feat-img {
    height: 300px;
  }
}
@media (max-width: 767px) {
  #content .header.has-feat-img {
    height: 200px;
  }
}
#content .header.has-feat-img .header__feat-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 600px) {
  #content .header.has-feat-img .header__feat-img {
    overflow: hidden;
  }
}
#content .header.has-feat-img .header__feat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#content .header.has-feat-img .header__terms {
  color: #a8dadc;
  font-weight: 700;
  letter-spacing: 1px;
}
#content .header.has-feat-img .header__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}
#content .header.has-feat-img .header__content .entry-title {
  position: relative;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
  opacity: 0;
  animation: 1s slideInUp 0.3s ease-in-out forwards;
  max-width: 80%;
  margin: 0 auto 5px;
}
@media (max-width: 991px) {
  #content .header.has-feat-img .header__content .entry-title {
    max-width: 90%;
  }
}
@media (max-width: 767px) {
  #content .header.has-feat-img .header__content .entry-title {
    max-width: 100%;
  }
}
#content .header.has-feat-img .header__content .entry-subtitle {
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
  opacity: 0;
  animation: 1s slideInUp 0.4s ease-in-out forwards;
  max-width: 70%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  #content .header.has-feat-img .header__content .entry-subtitle {
    max-width: 80%;
  }
}
@media (max-width: 767px) {
  #content .header.has-feat-img .header__content .entry-subtitle {
    max-width: 90%;
  }
}
#content .breadcrumb-container {
  background: #a8dadc;
}
#content .breadcrumb-container #breadcrumbs {
  padding: 15px 0;
  font-size: 85%;
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  #content .breadcrumb-container #breadcrumbs {
    padding: 10px 0;
    font-size: 65%;
  }
}
#content .breadcrumb-container #breadcrumbs span {
  font-weight: 400;
}
#content .breadcrumb-container #breadcrumbs span.breadcrumb_last {
  font-weight: 700;
}
#content .breadcrumb-container #breadcrumbs a {
  color: #1a1c27;
}
#content .page-container {
  display: flex;
  padding-top: 40px;
}
@media (max-width: 991px) {
  #content .page-container {
    flex-flow: column;
  }
}
#content .page-container .page__content {
  width: 100%;
}
#content .page-container .page__content article .wp-post-image {
  float: right;
  margin: 0 0 2rem 2rem;
}
#content .page-container .page__content #comments #comments-list {
  margin-bottom: 30px;
}
#content .page-container .page__content #comments #comments-list ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
#content .page-container .page__content #comments #comments-list ul li.comment {
  padding-bottom: 15px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
}
#content .page-container .page__content #comments #comments-list ul li.comment:last-child {
  padding-bottom: 0px;
  border-bottom: none;
  margin-bottom: 0px;
}
#content .page-container .page__content #comments #comments-list ul li.comment .comment-body .comment-author img {
  display: none;
}
#content .page-container .page__content #comments #comments-list ul li.comment .comment-body .comment-meta {
  font-size: 85%;
  margin-bottom: 10px;
}
#content .page-container .page__content #comments #comments-list ul li.comment .comment-body .reply a {
  display: inline-block;
  font-size: 90%;
  border: 1px solid #457b9d;
  color: #333;
  padding: 2px 10px;
}
#content .page-container .page__content #comments #comments-list ul li.comment .comment-body .reply a:hover {
  background-color: #457b9d;
  color: #fff;
  text-decoration: none;
}
#content .page-container .page__content #comments #respond {
  background-color: #eee;
  border: 1px solid #ccc;
  padding: 30px;
  border-radius: 10px;
}
#content .page-container .page__content #comments #respond form .comment-form-comment label {
  display: block;
}
#content .page-container .page__content #comments #respond form .comment-form-comment textarea {
  border: 1px solid #ccc;
  width: 100%;
  padding: 10px 15px;
}
#content .page-container #sidebar {
  width: 300px;
  flex-shrink: 0;
  margin-right: 40px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  #content .page-container #sidebar {
    width: 100%;
    margin-right: 0;
  }
}
#sidebar #primary ul.widget-sidebar {
  padding: 0;
  list-style: none;
}
#sidebar #primary ul.widget-sidebar .widget-container {
  margin-bottom: 30px;
}
#sidebar #primary .menu-sidebar {
  background-color: #457b9d;
  color: #fff;
  border-radius: 10px;
  padding: 0 0 15px;
  overflow: hidden;
}
#sidebar #primary .menu-sidebar h3 {
  font-size: 105%;
  background-color: #1d3557;
  text-transform: uppercase;
  padding: 10px 15px;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
}
#sidebar #primary .menu-sidebar h3 a {
  color: #fff;
}
#sidebar #primary .menu-sidebar h3 a:hover {
  color: #a8dadc;
  text-decoration: none;
}
#sidebar #primary .menu-sidebar h3 #sidebar-menu-toggle {
  display: none;
  appearance: none;
  -webkit-appearance: none;
  background: none;
  border: none;
  color: #fff;
}
#sidebar #primary .menu-sidebar h3 #sidebar-menu-toggle:after {
  content: "";
  font-family: "Font Awesome 5 Pro";
  font-weight: 600;
}
#sidebar #primary .menu-sidebar h3 #sidebar-menu-toggle.active:after {
  content: "";
}
@media (max-width: 991px) {
  #sidebar #primary .menu-sidebar h3 #sidebar-menu-toggle {
    display: block;
  }
}
#sidebar #primary .menu-sidebar .menu {
  list-style-type: none;
  padding: 0 10px;
  position: relative;
}
#sidebar #primary .menu-sidebar .menu li.page_item, #sidebar #primary .menu-sidebar .menu li.menu-item {
  position: relative;
}
#sidebar #primary .menu-sidebar .menu li.page_item a, #sidebar #primary .menu-sidebar .menu li.menu-item a {
  display: flex;
  color: #fff;
  font-weight: 700;
  font-size: 100%;
  line-height: 1.2;
  padding: 10px;
  padding-right: 30px;
}
#sidebar #primary .menu-sidebar .menu li.page_item a:hover, #sidebar #primary .menu-sidebar .menu li.menu-item a:hover {
  background: #1d3557;
  text-decoration: none;
}
#sidebar #primary .menu-sidebar .menu li.page_item.current_page_item > a, #sidebar #primary .menu-sidebar .menu li.page_item.current_menu_item > a, #sidebar #primary .menu-sidebar .menu li.menu-item.current_page_item > a, #sidebar #primary .menu-sidebar .menu li.menu-item.current_menu_item > a {
  color: #a8dadc;
}
#sidebar #primary .menu-sidebar .menu li.page_item.page_item_has_children > a, #sidebar #primary .menu-sidebar .menu li.menu-item.page_item_has_children > a {
  /*
						&:after {
							color: #fff;
							content: '\f107';
							font-family: $FA;
							font-weight: 600;
							margin-left: auto;
							display: inline-block;
							position: relative;
							z-index: 2;
						}
*/
}
#sidebar #primary .menu-sidebar .menu li.page_item.page_item_has_children.active > a, #sidebar #primary .menu-sidebar .menu li.menu-item.page_item_has_children.active > a {
  background: #1d3557;
  /*
						&:after {
							content: '\f106';
						}
*/
}
#sidebar #primary .menu-sidebar .menu li.page_item.page_item_has_children > .icon, #sidebar #primary .menu-sidebar .menu li.menu-item.page_item_has_children > .icon {
  display: inline-block;
  position: absolute;
  top: 5px;
  right: 5px;
  padding: 2px 10px;
  border: 1px solid #a8dadc;
  background: #1d3557;
}
#sidebar #primary .menu-sidebar .menu li.page_item.page_item_has_children > .icon:hover, #sidebar #primary .menu-sidebar .menu li.page_item.page_item_has_children > .icon:focus, #sidebar #primary .menu-sidebar .menu li.menu-item.page_item_has_children > .icon:hover, #sidebar #primary .menu-sidebar .menu li.menu-item.page_item_has_children > .icon:focus {
  background: rgba(0, 0, 0, 0.3);
}
#sidebar #primary .menu-sidebar .menu li.page_item.page_item_has_children > .icon:after, #sidebar #primary .menu-sidebar .menu li.menu-item.page_item_has_children > .icon:after {
  display: block;
  content: "";
  font-family: "Font Awesome 5 Pro";
  font-weight: 600;
  color: #fff;
  float: right;
}
#sidebar #primary .menu-sidebar .menu li.page_item.page_item_has_children.active > .icon:after, #sidebar #primary .menu-sidebar .menu li.menu-item.page_item_has_children.active > .icon:after {
  content: "";
}
#sidebar #primary .menu-sidebar .menu li.page_item ul.children, #sidebar #primary .menu-sidebar .menu li.menu-item ul.children {
  list-style: none;
  display: none;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
}
#sidebar #primary .menu-sidebar .menu li.page_item ul.children li:before, #sidebar #primary .menu-sidebar .menu li.menu-item ul.children li:before {
  left: 0px;
}
#sidebar #primary .menu-sidebar .menu li.page_item ul.children li a, #sidebar #primary .menu-sidebar .menu li.menu-item ul.children li a {
  font-size: 90%;
}
#sidebar #primary .menu-sidebar .menu li.page_item ul.children .page_item_has_children > .icon, #sidebar #primary .menu-sidebar .menu li.menu-item ul.children .page_item_has_children > .icon {
  padding: 4px 10px 2px;
  font-size: 90%;
}
#sidebar #primary .menu-sidebar .menu > li.page_item > a:before, #sidebar #primary .menu-sidebar .menu > li.menu-item > a:before {
  content: "›";
  left: 20px;
  margin-right: 5px;
  margin-top: -2px;
}
#searchform div {
  display: flex;
  align-items: center;
}
#searchform div label {
  display: none;
}
#searchform div input[type="text"] {
  width: 100%;
  padding: 5px 10px;
  border: 1px solid #ccc;
  border-right: none;
  border-radius: 0px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#searchform div input[type="submit"] {
  background: #457b9d;
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 90%;
  border: none;
  border-radius: 0px;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  padding: 8px 12px 7px;
}
#hero {
  overflow: hidden;
  background-size: cover;
  background-position: center center;
}
.home #content, .page-id-3998 #content {
  padding: 0;
}
.home #content article, .page-id-3998 #content article {
  padding: 30px 0;
}
.home #hero, .page-id-3998 #hero {
  position: relative;
  height: 70vh;
  background-color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .home #hero, .page-id-3998 #hero {
    height: 70vh;
  }
}
@media (max-width: 991px) {
  .home #hero, .page-id-3998 #hero {
    height: 40vh;
  }
}
@media (max-width: 767px) {
  .home #hero, .page-id-3998 #hero {
    height: auto;
    flex-wrap: wrap;
  }
}
.home #hero > .container, .page-id-3998 #hero > .container {
  order: 1;
}
.home #hero .hero__gallery, .page-id-3998 #hero .hero__gallery {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  animation: 1s fadeIn forwards;
}
.home #hero .hero__gallery .slick-list, .home #hero .hero__gallery .slick-track, .page-id-3998 #hero .hero__gallery .slick-list, .page-id-3998 #hero .hero__gallery .slick-track {
  height: 100%;
}
.home #hero .hero__gallery .hero__gallery-image-container, .page-id-3998 #hero .hero__gallery .hero__gallery-image-container {
  height: 100%;
  width: 100%;
}
.home #hero .hero__gallery .hero__gallery-image-container img, .page-id-3998 #hero .hero__gallery .hero__gallery-image-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.1);
  transition: 4s;
}
.home #hero .hero__gallery .hero__gallery-image-container.slick-active img, .home #hero .hero__gallery .hero__gallery-image-container.slick-current img, .page-id-3998 #hero .hero__gallery .hero__gallery-image-container.slick-active img, .page-id-3998 #hero .hero__gallery .hero__gallery-image-container.slick-current img {
  transform: scale(1);
  transition: 4s;
}
.home #hero .overlay, .page-id-3998 #hero .overlay {
  top: auto;
  bottom: 0;
  height: auto;
  background: linear-gradient(to top, #457b9d 0%, rgba(69, 123, 157, 0.1) 100%);
  order: 2;
}
@media (max-width: 767px) {
  .home #hero .overlay, .page-id-3998 #hero .overlay {
    height: auto;
    position: relative;
  }
}
.home #hero .overlay .container, .page-id-3998 #hero .overlay .container {
  position: relative;
  height: 100%;
}
@media (max-width: 767px) {
  .home #hero .overlay .container, .page-id-3998 #hero .overlay .container {
    height: auto;
    padding: 0;
  }
}
.home #hero .hero__content, .page-id-3998 #hero .hero__content {
  margin-bottom: 30px;
  position: relative;
  text-align: center;
}
@media (max-width: 991px) {
  .home #hero .hero__content, .page-id-3998 #hero .hero__content {
    max-width: 500px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .home #hero .hero__content, .page-id-3998 #hero .hero__content {
    margin: 0;
    padding: 30px 0;
    width: 100%;
  }
}
.home #hero .hero__content .hero__logo, .page-id-3998 #hero .hero__content .hero__logo {
  display: none;
  width: 130px;
  margin: 0 auto 20px;
  opacity: 0;
  animation: 1s slideInUp 0.2s ease-in-out forwards;
}
@media (max-width: 767px) {
  .home #hero .hero__content .hero__logo, .page-id-3998 #hero .hero__content .hero__logo {
    display: block;
  }
}
.home #hero .hero__content .hero__title, .page-id-3998 #hero .hero__content .hero__title {
  color: #fff;
  font-size: 400%;
  font-family: "PT Serif", serif;
  font-weight: 700;
  text-transform: none;
  font-style: italic;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  margin-bottom: 15px;
  opacity: 0;
  animation: 1s slideInUp 0.4s ease-in-out forwards;
  margin-top: -7%;
}
@media (max-width: 991px) {
  .home #hero .hero__content .hero__title, .page-id-3998 #hero .hero__content .hero__title {
    font-size: 300%;
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .home #hero .hero__content .hero__title, .page-id-3998 #hero .hero__content .hero__title {
    font-size: 250%;
  }
}
.home .homepage__alert, .page-id-3998 .homepage__alert {
  margin: 0 !important;
}
.home .homepage__news, .page-id-3998 .homepage__news {
  height: calc(100% - 30px);
  margin: 0 !important;
  background: url(../img/docks.jpg) center center no-repeat;
  background-size: cover;
  padding-bottom: 20px !important;
}
.home .homepage__news h2, .page-id-3998 .homepage__news h2 {
  color: #fff;
}
.home .homepage__news ul, .page-id-3998 .homepage__news ul {
  padding: 0;
  margin: 0;
}
.home .homepage__news ul li, .page-id-3998 .homepage__news ul li {
  padding-bottom: 15px;
  margin-bottom: 25px;
  border-bottom: 1px solid #fff;
}
.home .homepage__news ul li a, .page-id-3998 .homepage__news ul li a {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #a8dadc;
  font-size: 110%;
}
.home .homepage__news ul li a:hover, .page-id-3998 .homepage__news ul li a:hover {
  color: #fff;
}
.home .homepage__news ul li time, .page-id-3998 .homepage__news ul li time {
  color: #fff;
  font-style: italic;
}
.hero__links {
  position: absolute;
  z-index: 2;
  width: 100%;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  margin-left: -15px;
  margin-right: -15px;
  background: #457b9d;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .hero__links {
    display: none;
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .hero__links {
    position: relative;
    margin: 0;
    width: 100%;
  }
}
.hero__links .hero__link {
  flex: 1;
  flex-shrink: 0;
  color: #fff;
  padding: 16px;
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  transition: 0.4s;
}
@media (max-width: 991px) {
  .hero__links .hero__link {
    flex-basis: 33.3333333%;
  }
}
@media (max-width: 767px) {
  .hero__links .hero__link {
    flex-basis: 50%;
  }
}
.hero__links .hero__link .hero__link__img-wrapper {
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .hero__links .hero__link .hero__link__img-wrapper {
    background-color: #1d3557;
    width: 70px;
    height: 70px;
    border-radius: 100%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  }
}
.hero__links .hero__link .hero__link__img-wrapper img {
  height: 45px;
  width: auto;
  filter: invert(1);
  margin: 0;
}
@media (max-width: 1200px) {
  .hero__links .hero__link .hero__link__img-wrapper img {
    height: 40px;
  }
}
.hero__links .hero__link span {
  display: block;
}
@media (max-width: 1200px) {
  .hero__links .hero__link span {
    font-size: 90%;
  }
}
.hero__links .hero__link:hover, .hero__links .hero__link:focus {
  background: rgba(0, 0, 0, 0.4);
  transition: 0.4s;
  text-decoration: none;
}
.hero__links--mobile {
  display: none;
  position: relative;
  margin: 0;
  border-radius: 0;
}
@media (max-width: 991px) {
  .hero__links--mobile {
    display: block;
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .hero__links--mobile {
    position: relative;
    margin: 0;
    width: 100%;
  }
}
.hero__links--mobile .container {
  display: flex;
  flex-flow: wrap;
}
@media (max-width: 991px) {
  .hero__links--mobile .hero__link {
    flex-basis: 33.3333333%;
    flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .hero__links--mobile .hero__link {
    flex-basis: 50%;
  }
}
.hero__links--mobile .hero__link .hero__link__img-wrapper {
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .hero__links--mobile .hero__link .hero__link__img-wrapper {
    background-color: #1d3557;
    width: 70px;
    height: 70px;
    border-radius: 100%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  }
}
.hero__links--mobile .hero__link .hero__link__img-wrapper img {
  height: 50px;
  width: auto;
  filter: invert(1);
  margin: 0;
}
@media (max-width: 1200px) {
  .hero__links--mobile .hero__link .hero__link__img-wrapper img {
    height: 40px;
  }
}
.hero__links--mobile .hero__link span {
  display: block;
}
@media (max-width: 1200px) {
  .hero__links--mobile .hero__link span {
    font-size: 90%;
  }
}
.hero__links--mobile .hero__link:hover {
  background: rgba(0, 0, 0, 0.4);
  transition: 0.4s;
  text-decoration: none;
}
.entry-summary {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  padding: 0;
}
.entry-summary .entry-summary__image {
  flex-basis: 25%;
  padding: 1rem;
  text-align: center;
}
.entry-summary .entry-summary__image img {
  margin-bottom: 0;
}
.entry-summary .entry-summary__content {
  flex-basis: 75%;
  padding: 1rem;
}
.entry-summary .entry-summary__content h2 {
  font-size: 175%;
  margin-bottom: 5px;
}
.entry-summary .entry-summary__content time {
  color: #666;
}
#content .wp-paginate li {
  line-height: 1;
}
#content .wp-paginate li a, #content .wp-paginate li .current {
  padding: 8px 12px;
  font-family: "Raleway", sans-serif;
}
#content .wp-paginate li a {
  display: inline-block;
  border: 2px solid #ccc;
  background: #fff;
  color: #666;
}
#content .wp-paginate li a:hover {
  color: #333;
  border-color: #457b9d;
}
#content .wp-paginate li .current {
  font-weight: 700;
  color: #1a1c27;
  opacity: 1;
  background: #eee;
  border: 2px solid #457b9d;
  padding: 6px 12px;
}
.single-lost_and_found #content .page-container {
  display: block;
}
#menu .menu .mega-menu {
  position: absolute;
  left: -9999px;
  opacity: 0;
  -webkit-transition: 0.2s linear opacity;
}
#menu .menu li:hover ul, #menu .menu li:focus ul, #menu .mega-menu.show-menu {
  left: 0;
  opacity: 0.99;
}
body .gform_wrapper {
  max-width: 800px;
  margin: 0px;
}
body .gform_wrapper .gform_body ul li.gfield {
  margin-top: 0;
  margin-bottom: 15px;
}
body .gform_wrapper .gform_body ul li.gfield .ginput_container {
  margin-top: 0;
}
body .gform_wrapper .gform_body ul li.gfield .ginput_container input {
  margin: 0;
}
body .gform_wrapper .gform_body ul li.gfield .ginput_container input[type="text"], body .gform_wrapper .gform_body ul li.gfield .ginput_container input[type="email"], body .gform_wrapper .gform_body ul li.gfield .ginput_container input[type="password"], body .gform_wrapper .gform_body ul li.gfield .ginput_container textarea {
  padding: 7px 12px !important;
  border: 1px solid #ccc;
  border-radius: 0;
  box-shadow: none;
  font-size: 16px;
  appearance: none;
  -webkit-appearance: none;
}
body .gform_wrapper .gform_body ul li.gfield .ginput_container input[type="text"]::placeholder, body .gform_wrapper .gform_body ul li.gfield .ginput_container input[type="email"]::placeholder, body .gform_wrapper .gform_body ul li.gfield .ginput_container input[type="password"]::placeholder, body .gform_wrapper .gform_body ul li.gfield .ginput_container textarea::placeholder {
  color: #777;
}
body .gform_wrapper .gform_body ul li.gfield .ginput_container textarea {
  height: 200px;
}
body .gform_wrapper .gform_body ul li.gfield .ginput_container .gfield_radio .gchoice {
  font-size: 1.1rem;
  margin: 0 0 3px 0;
}
body .gform_wrapper .gform_footer {
  margin: 0;
}
body .gform_wrapper .gform_footer .gform_button {
  border: 0;
  outline: none;
  margin: 0 auto;
}
body .gform_wrapper .boxed {
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #eeeeee;
  padding: 10px 25px 25px;
  margin-bottom: 40px;
}
body .gform_wrapper .boxed .gform_title {
  border-bottom: 1px solid #457b9d;
  padding-bottom: 5px;
}
.gform_confirmation_wrapper.boxed {
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #eeeeee;
  padding: 25px;
  margin-bottom: 40px;
}
#mega-menu-wrap-main-menu {
  height: auto;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item > a.mega-menu-link {
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px 20px;
  height: auto;
  line-height: inherit;
}
@media (max-width: 1200px) {
  #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item > a.mega-menu-link {
    padding: 7px 12px;
    font-size: 14px;
  }
}
#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item > a.mega-menu-link:focus {
  background: #1a1c27 !important;
  text-decoration: none;
}
@media only screen and (min-width: 992px) {
  #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item > a.mega-menu-link:focus {
    background: #1a1c27;
  }
}
#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item:hover {
  background-color: #1a1c27;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item.mega-menu-item-has-children > a.mega-menu-link {
  padding-right: 7px;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-megamenu > ul.mega-sub-menu {
  background-color: #1a1c27;
  padding: 15px 5px;
  opacity: 0.99;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-flyout > ul.mega-sub-menu {
  width: 275px;
  background-color: #1a1c27;
  padding: 15px;
  opacity: 0.99;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column {
  padding: 0 10px;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
  padding: 0;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-flyout > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
  color: #fff;
  background-color: transparent;
  padding: 5px 10px;
  font-family: "Raleway", sans-serif;
  font-size: 100%;
  line-height: 1.3;
  text-transform: none;
  transition: 0.1s;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-flyout > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover {
  color: #fff;
  background-color: #457b9d;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item-has-children > a.mega-menu-link {
  text-transform: uppercase;
  border-bottom: 1px solid #457b9d;
  margin-bottom: 5px;
  font-size: 110%;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item {
  position: relative;
  padding: 0;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
  position: relative;
  color: #eee;
  padding: 5px 10px;
  font-family: "Raleway", sans-serif;
  font-size: 100%;
  line-height: 1.2;
  text-transform: none;
  transition: 0.1s;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover {
  color: #fff;
  background-color: #457b9d;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu > li.current-menu-item > a.mega-menu-link {
  color: #457b9d;
}
#content .gform_wrapper {
  margin: 0px;
}
#content .gform_wrapper .gform_body ul li.gfield {
  margin-top: 0;
  margin-bottom: 15px;
}
#content .gform_wrapper .gform_body ul li.gfield .ginput_container {
  margin-top: 0;
  margin-bottom: 0;
}
#content .gform_wrapper .gform_body ul li.gfield .ginput_container input {
  margin-top: 0;
  margin-bottom: 0;
}
#content .gform_wrapper .gform_body ul li.gfield .ginput_container input, #content .gform_wrapper .gform_body ul li.gfield .ginput_container textarea {
  padding: 7px 12px;
  border: 1px solid #ccc;
  border-radius: 0;
  box-shadow: none;
  font-size: 16px;
}
#content .gform_wrapper .gform_body ul li.gfield .ginput_container input::placeholder, #content .gform_wrapper .gform_body ul li.gfield .ginput_container textarea::placeholder {
  color: #777;
}
#content .gform_wrapper .gform_body ul li.gfield .ginput_container textarea {
  height: 200px;
}
#content .gform_wrapper .gform_body ul li.gfield .gfield_description {
  padding-top: 6px;
}
#content .gform_wrapper .gform_footer {
  margin: 0;
  text-align: center;
}
#content .gform_wrapper .gform_footer .gform_button {
  border: 0;
  outline: none;
  margin: 0 auto;
}
