html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body {
  /* you need to set this to assign to the main element a min height of 100% */
  height: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #404040;
  margin: 0 auto;
  background: #002d72;
  overflow-x: hidden;
}

.wrapper {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.wrapper .holdmystuff {
  background: #ffffff;
  max-width: 60%;
  padding: 40px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  -webkit-box-shadow: 0px 0px 80px 0px rgba(30, 30, 30, 0.2);
  -moz-box-shadow: 0px 0px 80px 0px rgba(30, 30, 30, 0.2);
  box-shadow: 0px 0px 80px 0px rgba(30, 30, 30, 0.2);
  font-size: .9em;
}
.wrapper .holdmystuff .holder_svg {
  padding-bottom: 25px;
  border-bottom: 1px solid #efefef;
  margin-bottom: 25px;
}
.wrapper .holdmystuff .holder_svg svg {
  max-width: 40%;
}
.wrapper .holdmystuff p {
  padding-bottom: 20px;
  margin: 0 auto;
}
.wrapper .holdmystuff ul {
  padding: 0px;
  margin: 0 auto;
  list-style-type: none;
}
.wrapper .holdmystuff ul li {
  display: inline-block;
  margin: 0 auto;
  background: #e9e9e9;
  color: #303030;
  padding: 10px;
  text-decoration: none;
  margin-bottom: 1px;
}
.wrapper .holdmystuff ul li a {
  display: table-cell;
}

.slim_modal {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2;
  display: none;
  font-size: 1em;
  -webkit-transition: background 0.5s ease 0.06s;
  -moz-transition: background 0.5s ease 0.06s;
  -ms-transition: background 0.5s ease 0.06s;
  -o-transition: background 0.5s ease 0.06s;
  transition: background 0.5s ease 0.06s;
  overflow-y: scroll;
}
.slim_modal.none {
  background: rgba(10, 10, 10, 0);
}
.slim_modal.red {
  background: rgba(228, 30, 58, 0.8);
}
.slim_modal.tan {
  background: rgba(202, 180, 75, 0.8);
}
.slim_modal.green {
  background: rgba(111, 171, 85, 0.8);
}
.slim_modal .sm_content {
  background: whitesmoke;
  text-align: center;
  max-width: 800px;
}
@media only screen and (min-width: 320px) {
  .slim_modal .sm_content {
    padding: 0px;
    width: 100%;
    height: 100%;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
  }
}
@media only screen and (min-width: 414px) {
  .slim_modal .sm_content {
    padding: 0px;
    width: 100%;
    height: 100%;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
  }
}
@media only screen and (min-width: 769px) {
  .slim_modal .sm_content {
    padding: 15px;
    width: 80%;
    max-height: 90%;
    height: auto;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
  }
}
@media only screen and (min-width: 1025px) {
  .slim_modal .sm_content {
    padding: 15px;
    width: 80%;
    max-height: 100%;
    height: auto;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
  }
}
@media only screen and (min-width: 1401px) {
  .slim_modal .sm_content {
    padding: 15px;
    width: 80%;
    max-height: 100%;
    height: auto;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
  }
}
.slim_modal .sm_content .sm_content_inner_wrap {
  position: relative;
  margin: 0 auto;
  height: 100%;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 1px 0 rgba(30, 30, 30, 0.5);
  -moz-box-shadow: 0px 0px 1px 0 rgba(30, 30, 30, 0.5);
  box-shadow: 0px 0px 1px 0 rgba(30, 30, 30, 0.5);
  z-index: 2;
}
@media only screen and (min-width: 320px) {
  .slim_modal .sm_content .sm_content_inner_wrap {
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
  }
}
@media only screen and (min-width: 414px) {
  .slim_modal .sm_content .sm_content_inner_wrap {
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
  }
}
@media only screen and (min-width: 769px) {
  .slim_modal .sm_content .sm_content_inner_wrap {
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
  }
}
@media only screen and (min-width: 1025px) {
  .slim_modal .sm_content .sm_content_inner_wrap {
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
  }
}
@media only screen and (min-width: 1401px) {
  .slim_modal .sm_content .sm_content_inner_wrap {
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
  }
}
.slim_modal .sm_content .sm_content_inner_wrap .sm_close_button {
  padding: 10px;
  width: auto;
  display: block;
  background: #002d72;
  color: #fff;
}
.slim_modal .sm_content .sm_content_inner_wrap .sm_area_top, .slim_modal .sm_content .sm_content_inner_wrap .sm_area_bottom, .slim_modal .sm_content .sm_content_inner_wrap .sm_area_all {
  padding: 4em;
}
.slim_modal .sm_content .sm_content_inner_wrap .sm_area_top h3 span, .slim_modal .sm_content .sm_content_inner_wrap .sm_area_bottom h3 span, .slim_modal .sm_content .sm_content_inner_wrap .sm_area_all h3 span {
  display: block;
  font-size: .7em;
}
.slim_modal .sm_content .sm_content_inner_wrap .sm_area_top {
  /*background: rgba(30, 30, 30, 0.02);*/
  background: #f7f7f7;
}
.slim_modal .sm_content .sm_content_inner_wrap .sm_area_bottom {
  background: white;
}
.slim_modal .sm_content .sm_icon_menu {
  opacity: 1;
  box-sizing: border-box;
  position: absolute;
  top: 40px;
  background: whitesmoke;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.slim_modal .sm_content .sm_icon_menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0 auto;
}
.slim_modal .sm_content .sm_icon_menu ul li {
  font-size: 1.1em;
  height: 3em;
  line-height: 3em;
  background: #e6e6e6;
  padding: 0px 8px 0px 8px;
  margin-bottom: 1px;
  color: rgba(30, 30, 30, 0.4);
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.slim_modal .sm_content .sm_icon_menu ul li.sm_close {
  background: #f0161f;
  color: #fff;
}
.slim_modal .sm_content .sm_icon_menu ul li:nth-child(2) {
  margin-top: 10px;
}
.slim_modal .sm_content .sm_icon_menu ul li:hover {
  background: #ffffff;
  color: rgba(30, 30, 30, 0.7);
}
.slim_modal .sm_content .sm_icon_menu ul li::last-child {
  border: none;
}
.slim_modal .sm_content .sm_icon_menu.is_right {
  right: 0px;
  border-radius: 0px 4px 4px 0px;
  -webkit-border-radius: 0px 4px 4px 0px;
  -moz-border-radius: 0px 4px 4px 0px;
  -ms-border-radius: 0px 4px 4px 0px;
  -o-border-radius: 0px 4px 4px 0px;
}
@media only screen and (min-width: 320px) {
  .slim_modal .sm_content .sm_icon_menu.is_right {
    top: 70px;
    right: 0px;
    z-index: 9;
    -webkit-box-shadow: 0px 0px 0px 0px rgba(30, 30, 30, 0);
    -moz-box-shadow: 0px 0px 0px 0px rgba(30, 30, 30, 0);
    box-shadow: 0px 0px 0px 0px rgba(30, 30, 30, 0);
    padding: 1px;
    border: none;
  }
}
@media only screen and (min-width: 414px) {
  .slim_modal .sm_content .sm_icon_menu.is_right {
    top: 70px;
    right: 0px;
    z-index: 9;
    -webkit-box-shadow: 0px 0px 0px 0px rgba(30, 30, 30, 0);
    -moz-box-shadow: 0px 0px 0px 0px rgba(30, 30, 30, 0);
    box-shadow: 0px 0px 0px 0px rgba(30, 30, 30, 0);
    padding: 1px;
    border: none;
  }
}
@media only screen and (min-width: 769px) {
  .slim_modal .sm_content .sm_icon_menu.is_right {
    top: 15px;
    right: 15px;
    z-index: 1;
    -webkit-box-shadow: 15px 0px 30px 0px rgba(30, 30, 30, 0.2);
    -moz-box-shadow: 15px 0px 30px 0px rgba(30, 30, 30, 0.2);
    box-shadow: 15px 0px 30px 0px rgba(30, 30, 30, 0.2);
    border: 1px solid rgba(30, 30, 30, 0.1);
    border-left: none;
  }
}
@media only screen and (min-width: 1025px) {
  .slim_modal .sm_content .sm_icon_menu.is_right {
    top: 15px;
    right: 15px;
    z-index: 1;
    -webkit-box-shadow: 15px 0px 30px 0px rgba(30, 30, 30, 0.2);
    -moz-box-shadow: 15px 0px 30px 0px rgba(30, 30, 30, 0.2);
    box-shadow: 15px 0px 30px 0px rgba(30, 30, 30, 0.2);
    border: 1px solid rgba(30, 30, 30, 0.1);
    border-left: none;
  }
}
@media only screen and (min-width: 1401px) {
  .slim_modal .sm_content .sm_icon_menu.is_right {
    top: 15px;
    right: 15px;
    z-index: 1;
    -webkit-box-shadow: 15px 0px 30px 0px rgba(30, 30, 30, 0.2);
    -moz-box-shadow: 15px 0px 30px 0px rgba(30, 30, 30, 0.2);
    box-shadow: 15px 0px 30px 0px rgba(30, 30, 30, 0.2);
    border: 1px solid rgba(30, 30, 30, 0.1);
    border-left: none;
  }
}
.slim_modal .sm_content .sm_icon_menu.is_left {
  border-radius: 4px 0px 0px 4px;
  -webkit-border-radius: 4px 0px 0px 4px;
  -moz-border-radius: 4px 0px 0px 4px;
  -ms-border-radius: 4px 0px 0px 4px;
  -o-border-radius: 4px 0px 0px 4px;
}
@media only screen and (min-width: 320px) {
  .slim_modal .sm_content .sm_icon_menu.is_left {
    top: 70px;
    left: 0px;
    z-index: 9;
    -webkit-box-shadow: 0px 0px 0px 0px rgba(30, 30, 30, 0);
    -moz-box-shadow: 0px 0px 0px 0px rgba(30, 30, 30, 0);
    box-shadow: 0px 0px 0px 0px rgba(30, 30, 30, 0);
    padding: 1px;
    border: none;
  }
}
@media only screen and (min-width: 414px) {
  .slim_modal .sm_content .sm_icon_menu.is_left {
    top: 70px;
    left: 0px;
    z-index: 9;
    -webkit-box-shadow: 0px 0px 0px 0px rgba(30, 30, 30, 0);
    -moz-box-shadow: 0px 0px 0px 0px rgba(30, 30, 30, 0);
    box-shadow: 0px 0px 0px 0px rgba(30, 30, 30, 0);
    padding: 1px;
    border: none;
  }
}
@media only screen and (min-width: 769px) {
  .slim_modal .sm_content .sm_icon_menu.is_left {
    top: 15px;
    left: 15px;
    z-index: 1;
    -webkit-box-shadow: -15px 0px 30px 0px rgba(30, 30, 30, 0.2);
    -moz-box-shadow: -15px 0px 30px 0px rgba(30, 30, 30, 0.2);
    box-shadow: -15px 0px 30px 0px rgba(30, 30, 30, 0.2);
    border: 1px solid rgba(30, 30, 30, 0.1);
    border-right: none;
  }
}
@media only screen and (min-width: 1025px) {
  .slim_modal .sm_content .sm_icon_menu.is_left {
    top: 15px;
    left: 15px;
    z-index: 1;
    -webkit-box-shadow: -15px 0px 30px 0px rgba(30, 30, 30, 0.2);
    -moz-box-shadow: -15px 0px 30px 0px rgba(30, 30, 30, 0.2);
    box-shadow: -15px 0px 30px 0px rgba(30, 30, 30, 0.2);
    border: 1px solid rgba(30, 30, 30, 0.1);
    border-right: none;
  }
}
@media only screen and (min-width: 1401px) {
  .slim_modal .sm_content .sm_icon_menu.is_left {
    top: 15px;
    left: 15px;
    z-index: 1;
    -webkit-box-shadow: -15px 0px 30px 0px rgba(30, 30, 30, 0.2);
    -moz-box-shadow: -15px 0px 30px 0px rgba(30, 30, 30, 0.2);
    box-shadow: -15px 0px 30px 0px rgba(30, 30, 30, 0.2);
    border: 1px solid rgba(30, 30, 30, 0.1);
    border-right: none;
  }
}
.slim_modal .sm_content .sm_header {
  box-sizing: border-box;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  color: rgba(30, 30, 30, 0.7);
  text-transform: uppercase;
  margin: 0 auto;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media only screen and (min-width: 320px) {
  .slim_modal .sm_content .sm_header {
    position: relative;
    width: 100%;
    background: #e6e6e6;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    padding-top: 0;
  }
}
@media only screen and (min-width: 414px) {
  .slim_modal .sm_content .sm_header {
    position: relative;
    width: 100%;
    background: #e6e6e6;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    padding-top: 0;
  }
}
@media only screen and (min-width: 769px) {
  .slim_modal .sm_content .sm_header {
    position: absolute;
    width: 90%;
    background: whitesmoke;
    border-radius: 4px 4px 0px 0px;
    -webkit-border-radius: 4px 4px 0px 0px;
    -moz-border-radius: 4px 4px 0px 0px;
    -ms-border-radius: 4px 4px 0px 0px;
    -o-border-radius: 4px 4px 0px 0px;
    padding-top: 7.5px;
    text-align: center;
  }
}
@media only screen and (min-width: 1025px) {
  .slim_modal .sm_content .sm_header {
    position: absolute;
    width: 90%;
    background: whitesmoke;
    border-radius: 4px 4px 0px 0px;
    -webkit-border-radius: 4px 4px 0px 0px;
    -moz-border-radius: 4px 4px 0px 0px;
    -ms-border-radius: 4px 4px 0px 0px;
    -o-border-radius: 4px 4px 0px 0px;
    padding-top: 7.5px;
    text-align: center;
  }
}
@media only screen and (min-width: 1401px) {
  .slim_modal .sm_content .sm_header {
    position: absolute;
    width: 90%;
    background: whitesmoke;
    border-radius: 4px 4px 0px 0px;
    -webkit-border-radius: 4px 4px 0px 0px;
    -moz-border-radius: 4px 4px 0px 0px;
    -ms-border-radius: 4px 4px 0px 0px;
    -o-border-radius: 4px 4px 0px 0px;
    padding-top: 7.5px;
    text-align: center;
  }
}
.slim_modal .sm_content.pushup {
  -moz-transform: scale(0.98) translateY(20px);
  -o-transform: scale(0.98) translateY(20px);
  -ms-transform: scale(0.98) translateY(20px);
  -webkit-transform: scale(0.98) translateY(20px);
  transform: scale(0.98) translateY(20px);
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  -webkit-box-shadow: 0px 0px 0px 0px rgba(30, 30, 30, 0.4);
  -moz-box-shadow: 0px 0px 0px 0px rgba(30, 30, 30, 0.4);
  box-shadow: 0px 0px 0px 0px rgba(30, 30, 30, 0.4);
  opacity: 0;
}
.slim_modal .sm_content.pushup.show {
  -webkit-box-shadow: 0px 20px 80px 0px rgba(30, 30, 30, 0.4);
  -moz-box-shadow: 0px 20px 80px 0px rgba(30, 30, 30, 0.4);
  box-shadow: 0px 20px 80px 0px rgba(30, 30, 30, 0.4);
  opacity: 1;
}
.slim_modal .sm_content.pushdown {
  -moz-transform: scale(0.98) translateY(-20px);
  -o-transform: scale(0.98) translateY(-20px);
  -ms-transform: scale(0.98) translateY(-20px);
  -webkit-transform: scale(0.98) translateY(-20px);
  transform: scale(0.98) translateY(-20px);
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  -webkit-box-shadow: 0px 0px 0px 0px rgba(30, 30, 30, 0.4);
  -moz-box-shadow: 0px 0px 0px 0px rgba(30, 30, 30, 0.4);
  box-shadow: 0px 0px 0px 0px rgba(30, 30, 30, 0.4);
  opacity: 0;
}
.slim_modal .sm_content.pushdown.show {
  -webkit-box-shadow: 0px -20px 80px 0px rgba(30, 30, 30, 0.4);
  -moz-box-shadow: 0px -20px 80px 0px rgba(30, 30, 30, 0.4);
  box-shadow: 0px -20px 80px 0px rgba(30, 30, 30, 0.4);
  opacity: 1;
}
.slim_modal .sm_content.show {
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.slim_modal .sm_content.show .sm_icon_menu {
  -webkit-transition: all 0.5s ease 0.06s;
  -moz-transition: all 0.5s ease 0.06s;
  -ms-transition: all 0.5s ease 0.06s;
  -o-transition: all 0.5s ease 0.06s;
  transition: all 0.5s ease 0.06s;
}
@media only screen and (min-width: 320px) {
  .slim_modal .sm_content.show .sm_icon_menu.is_right {
    top: 70px;
    right: 0px;
  }
}
@media only screen and (min-width: 414px) {
  .slim_modal .sm_content.show .sm_icon_menu.is_right {
    top: 70px;
    right: 0px;
  }
}
@media only screen and (min-width: 769px) {
  .slim_modal .sm_content.show .sm_icon_menu.is_right {
    top: 15px;
    right: -25px;
  }
}
@media only screen and (min-width: 1025px) {
  .slim_modal .sm_content.show .sm_icon_menu.is_right {
    top: 15px;
    right: -25px;
  }
}
@media only screen and (min-width: 1401px) {
  .slim_modal .sm_content.show .sm_icon_menu.is_right {
    top: 15px;
    right: -25px;
  }
}
@media only screen and (min-width: 320px) {
  .slim_modal .sm_content.show .sm_icon_menu.is_left {
    top: 70px;
    left: 0px;
  }
}
@media only screen and (min-width: 414px) {
  .slim_modal .sm_content.show .sm_icon_menu.is_left {
    top: 70px;
    left: 0px;
  }
}
@media only screen and (min-width: 769px) {
  .slim_modal .sm_content.show .sm_icon_menu.is_left {
    top: 15px;
    left: -25px;
  }
}
@media only screen and (min-width: 1025px) {
  .slim_modal .sm_content.show .sm_icon_menu.is_left {
    top: 15px;
    left: -25px;
  }
}
@media only screen and (min-width: 1401px) {
  .slim_modal .sm_content.show .sm_icon_menu.is_left {
    top: 15px;
    left: -25px;
  }
}
.slim_modal .sm_content.show .sm_header {
  -webkit-transition: top 0.5s ease 0.1s;
  -moz-transition: top 0.5s ease 0.1s;
  -ms-transition: top 0.5s ease 0.1s;
  -o-transition: top 0.5s ease 0.1s;
  transition: top 0.5s ease 0.1s;
  opacity: 1;
}
@media only screen and (min-width: 320px) {
  .slim_modal .sm_content.show .sm_header {
    top: 0px;
    z-index: 9;
  }
}
@media only screen and (min-width: 414px) {
  .slim_modal .sm_content.show .sm_header {
    top: 0px;
    z-index: 9;
  }
}
@media only screen and (min-width: 769px) {
  .slim_modal .sm_content.show .sm_header {
    top: -40px;
    z-index: 1;
  }
}
@media only screen and (min-width: 1025px) {
  .slim_modal .sm_content.show .sm_header {
    top: -40px;
    z-index: 1;
  }
}
@media only screen and (min-width: 1401px) {
  .slim_modal .sm_content.show .sm_header {
    top: -40px;
    z-index: 1;
  }
}
.slim_modal .sm_content.show .sm_header.detached {
  -webkit-transition: opacity 0.5s ease 0.1s;
  -moz-transition: opacity 0.5s ease 0.1s;
  -ms-transition: opacity 0.5s ease 0.1s;
  -o-transition: opacity 0.5s ease 0.1s;
  transition: opacity 0.5s ease 0.1s;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  background: #f0161f;
  color: gold;
}
@media only screen and (min-width: 320px) {
  .slim_modal .sm_content.show .sm_header.detached {
    top: 0px;
    z-index: 9;
  }
}
@media only screen and (min-width: 414px) {
  .slim_modal .sm_content.show .sm_header.detached {
    top: 0px;
    z-index: 9;
  }
}
@media only screen and (min-width: 769px) {
  .slim_modal .sm_content.show .sm_header.detached {
    top: -60px;
    padding-top: 0;
    z-index: 1;
  }
}
@media only screen and (min-width: 1025px) {
  .slim_modal .sm_content.show .sm_header.detached {
    top: -60px;
    padding-top: 0;
    z-index: 1;
  }
}
@media only screen and (min-width: 1401px) {
  .slim_modal .sm_content.show .sm_header.detached {
    top: -60px;
    padding-top: 0;
    z-index: 1;
  }
}

.sm_content.red {
  background: #EF798A;
}
.sm_content.red .sm_header {
  background: #EF798A;
  color: #ffffff;
}
.sm_content.tan {
  background: #E1D59A;
}
.sm_content.tan .sm_header {
  background: #E1D59A;
  color: #ffffff;
}
.sm_content.green {
  background: #a9cd99;
}
.sm_content.codered {
  background: #f0161f;
}
.sm_content.green .sm_header {
  background: #a9cd99;
  color: #ffffff;
}
.sm_content.codered .sm_header {
  background: #f0161f;
  color: #ffffff;
}

.mod-active{
  background: #fff !important;
  color: gold !important;
}
.mod-off{
  background: #e6e6e6 !important;
  color: rgba(30, 30, 30, 0.4) !important;
}

.span-subtitle{
  color: gold;
  background:aliceblue;
  font-style: oblique;
}

div.vision{
  padding: 10px;
  margin:10px;
  margin-bottom: 20px;
  border: 1px solid;
  box-shadow: 5px 10px #888888;
  border-radius: 15px;
}

ul.flex > li.mission{
  margin-bottom: 10px;
}

ul.flex > li > p{
  margin-bottom: 5px;
  padding-left: 0.3em;
}

div.vision > span.header, ul.flex > li > span.header {
  margin-bottom: 10px;
  font-weight: bold;
}

ul.flex {
  list-style: none;
  padding: 0;
  text-align: left;
}
ul.flex > li {
  padding-left: 1.3em;
  margin-bottom: 5px;
  /*border-bottom:1px solid gold;*/
}
ul.flex > li:before {
  content: "\f13d"; /* FontAwesome Unicode */
  font-family: FontAwesome;
  display: inline-block;
  margin-left: -1.3em; /* same as padding-left set on li */
  width: 1.3em; /* same as padding-left set on li */
}

.sheets_paper{
  margin-top: 7px;
  border:1px solid #ddd;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1), 0 9px 0 -6px #fff, 0 9px 0 -5px #ddd, 0 9px 5px -5px rgba(0, 0, 0, 0.2), 0 18px 0 -11px #fff, 0 18px 0 -10px #ddd, 0 18px 5px -10px rgba(0, 0, 0, 0.2), 0 -9px 0 -6px #fff, 0 -9px 0 -5px #ddd, 0 -9px 5px -5px rgba(0, 0, 0, 0.2), 0 -18px 0 -11px #fff, 0 -18px 0 -10px #ddd, 0 -18px 5px -10px rgba(0, 0, 0, 0.2);
}

#cms-section {
   display: block;
   max-width: 1000px;
   margin-top: 7px;
   /*margin: 100px auto 50px auto;*/
   background: #fff;
   border-color: #eee;
   /*padding: 30px;*/
   min-height: 400px;
   border-radius: 2px;
   font-size: 14px;
   /*line-height: 32px;*/
   box-shadow: 0 0 3px rgba(0, 0, 0, 0.1), 0 9px 0 -6px #fff, 0 9px 0 -5px #ddd, 0 9px 5px -5px rgba(0, 0, 0, 0.2), 0 18px 0 -11px #fff, 0 18px 0 -10px #ddd, 0 18px 5px -10px rgba(0, 0, 0, 0.2), 0 -9px 0 -6px #fff, 0 -9px 0 -5px #ddd, 0 -9px 5px -5px rgba(0, 0, 0, 0.2), 0 -18px 0 -11px #fff, 0 -18px 0 -10px #ddd, 0 -18px 5px -10px rgba(0, 0, 0, 0.2);
}
 #cms-section .cms-header {
   padding: 0 0 10px 0;
   color: #3b9f58;
   font-size: 1em;
   /*margin: -30px -30px 0 -30px;*/
}
 #cms-section .cms-header-info {
   background: #f7f7f7;
   display: flex;
   padding: 10px 20px;
   line-height: 1em;
   color: #999;
}
 #cms-section .cms-header-info .site-map {
   flex: 1;
   font-size: 0.9em;
   line-height: 2em;
}
 #cms-section .cms-header-info .site-map span {
   color: #555;
}
 #cms-section .cms-header-info .cms-share {
   display: flex;
   font-size: 12px;
   text-align: right;
   width: 150px;
}
 #cms-section .cms-header-info .cms-share > div {
   margin: auto;
}
 #cms-section .cms-header-info .cms-share svg {
   margin: auto 5px auto auto;
   width: 24px;
   height: 24px;
}
 #cms-section .cms-header-info .cms-share svg:hover {
   animation: swingAnimated linear 1s infinite;
}
 #cms-section .cms-header-title {
   padding: 20px;
   text-align: center;
}
 #cms-section p {
   /*padding: 10px 0;*/
}
 #cms-section article {
   max-width: 850px;
   margin: 10px auto;
}

mark.highlighted { 
  background-color: red;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
}

div.showoff{
  padding: 20px;
  margin:30px;
-webkit-box-shadow: 4px -4px 15px 0px #FF1F1F, 12px -11px 7px 0px #FF9376, 20px -5px 7px 0px #FFE264, 20px 6px 7px 0px #F6FF33, 13px 12px 17px 0px #FF9527, 2px 17px 17px 0px #FF0000, -9px 21px 18px 0px #FFF212, -9px 6px 11px 0px #FF0808, -11px -9px 11px 0px #FFFA17, -11px -9px 11px 0px #FFFA17, 5px 5px 15px 5px rgba(0,0,0,0); 
box-shadow: 4px -4px 15px 0px #FF1F1F, 12px -11px 7px 0px #FF9376, 20px -5px 7px 0px #FFE264, 20px 6px 7px 0px #F6FF33, 13px 12px 17px 0px #FF9527, 2px 17px 17px 0px #FF0000, -9px 21px 18px 0px #FFF212, -9px 6px 11px 0px #FF0808, -11px -9px 11px 0px #FFFA17, -11px -9px 11px 0px #FFFA17, 5px 5px 15px 5px rgba(0,0,0,0);
}

div.showoff > span > mark.highlighted { 
  background-color: red;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 20px;
}

.subtitle-text{
  font-weight: 400;
  font-size: 13px;
  line-height: 1.4;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.justify-text{
  text-align: justify;
  text-justify: inter-word;
}

.button-inquiry {
    backface-visibility: hidden;
  position: relative;
  cursor: pointer;
  display: inline-block;
  white-space: nowrap;
  /*background: linear-gradient(180deg,#ddbb44 0%,#d6b540 30%,#c6a530 65%,#bc9a12 100%);*/
  background: linear-gradient(180deg,#6e9bca 0%,#6e9bca 30%,#6e9bca 65%,#6e9bca 100%);
  border-radius: 8px;
  border: 0px solid #6e9bca;
  border-width: 0px 0px 5px 0px;
  padding: 9px 15px 6px 15px;
  box-shadow: inset 0px 1px 3px rgba(255,255,255,.4);
    color: #fff;
  font-size: initial;
  font-family: Helvetica Neue;
  font-weight: 900;
  font-style: normal
  }
  .button-inquiry > div {
    color: #999;
  font-size: 10px;
  font-family: Helvetica Neue;
  font-weight: initial;
  font-style: normal;
  text-align: center;
  margin: 0px 0px 0px 0px
  }
  .button-inquiry > i {
    color: #fff;
  font-size: 1em;
  background: rgba(0,0,0,0.2);
  border-radius: 100px;
  border: 0px solid transparent;
  border-width: 0px 0px 0px 0px;
  padding: 5px 5px 5px 5px;
  margin: 0px 0px 0px 10px;
  position: static;
  box-shadow: inset 0px 1px 2px rgba(0,0,0,0.4),inset 0px -1px 0px rgba(255,255,255,.5)
  }
  .button-inquiry > .ld {
    font-size: initial
  }