/* Colors */
/* Functions */
/*=============================================
=            SETTINGS  & Defaults           =
=============================================*/
html,
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  --gutter-x: 10px;
  --gutter-x2: -10px;
  font-family: "Barlow", sans-serif;
  font-size: 18px;
  line-height: 25px;
  color: #1a1a1a;
  background-color: #ffffff;
  position: relative;
}
html.modal-opened,
body.modal-opened {
  position: fixed !important;
  overflow: hidden !important;
  width: 100%;
}
a {
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #1a1a1a;
}
.w-100 {
  width: 100%;
}
.h-100 {
  height: 100%;
}
.text-center {
  text-align: center;
}
h1 {
  font-family: "Barlow", sans-serif;
  font-weight: bold;
  font-size: 50px;
  line-height: 70px;
}
h2 {
  font-family: "Barlow", sans-serif;
  font-weight: bold;
  font-size: 36px;
  line-height: 1.2;
}
h3 {
  font-family: "Barlow", sans-serif;
  font-weight: bold;
  font-size: 21px;
  line-height: 1.2;
}
p,
ul,
ol {
  margin: 20px 0;
}
section ul.white-check {
  margin: 15px 0;
  list-style: none;
}
ul.white-check li {
  background: url("../../imgs/icons/check-white.png") no-repeat left top;
  padding-left: 54px;
  margin: 15px 0;
  background-size: auto 21px;
  background-position: 15px 4px;
}
section ul.blue-check {
  margin: 15px 0;
  list-style: none;
}
ul.blue-check li {
  background: url("../../imgs/icons/check-blue.png") no-repeat left top;
  padding-left: 54px;
  margin: 15px 0;
  background-size: auto 21px;
  background-position: 6px 4px;
}
ul.blue-check li a {
  font-weight: bold;
  color: #143f90;
}
ul.white-check li a {
  font-weight: bold;
}
ul.blue-check li a:hover,
ul.white-check li a:hover {
  text-decoration: underline;
}
.black-text {
  color: #1a1a1a;
}
.black-text a {
  font-weight: bold;
}
.orange-text {
  color: #feae4d;
}
.red-text {
  color: #e16d47;
}
.blue-text {
  color: #17a6d8;
}
.white-text {
  color: #fff;
}
.white-text a {
  color: #fff;
  font-weight: bold;
}
.bg-blue {
  background-color: #17a6d8;
}
.bg-green {
  background-color: #93c36f;
}
.bg-red {
  background-color: #e16d47;
}
.bg-orange {
  background-color: #feae4d;
}
.btn {
  display: flex;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.btn:hover {
  filter: brightness(0.9);
}
.btn:hover::after {
  margin-left: 10px;
}
.btn::after {
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  content: "";
  width: 25px;
  height: 18px;
  margin-left: 15px;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  align-items: center;
}
.btn.badge-link::after {
  display: none;
}
.btn.btn-cta {
  background: #f1bd43;
  font-weight: normal;
  color: #fff;
  border-radius: 30px;
  text-align: center;
  justify-content: center;
  padding: 5px 20px;
  align-items: center;
  margin: 0 15px 50px 15px;
}
.btn.btn-cta::after {
  display: none;
}
.btn.black-arrow::after {
  background-image: url("../../imgs/icons/black-arrow.png");
}
.btn.white-arrow::after {
  background-image: url("../../imgs/icons/white-arrow.png");
}
.btn.red-arrow::after {
  background-image: url("../../imgs/icons/red-arrow.png");
}
.btn.blue-arrow::after {
  background-image: url("../../imgs/icons/blue-arrow.png");
}
.btn.orange-arrow::after {
  background-image: url("../../imgs/icons/orange-arrow.png");
}
.btn.green-arrow::after {
  background-image: url("../../imgs/icons/green-arrow.png");
}
/*=============================================
=            Styles            =
=============================================*/
.search-box {
  position: fixed;
  transform: translate(-100%);
  visibility: hidden;
  opacity: 0;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #aed293;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-box.active {
  transform: translate(0);
  opacity: 1;
  visibility: visible;
}
.search-box .close-search {
  position: absolute;
  top: -300px;
  right: 0;
  width: 30px;
  height: 30px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background: #e16d47;
}
.search-box .close-search:hover {
  filter: brightness(0.9);
}
.search-box .input-holder {
  width: 60%;
  height: 70px;
  position: relative;
}
.search-box .input-holder .search-now {
  position: absolute;
  background-image: url("../../imgs/icons/search-icon.png");
  right: 15px;
  filter: grayscale(1) invert(1);
  top: 10px;
  cursor: pointer;
  width: 25px;
  height: 25px;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  border: none;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.search-box .input-holder .search-now:hover {
  opacity: 0.5;
}
.search-box .input-holder input[type="text"] {
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
  height: 100%;
  background: #fff;
  border: 5px solid #93c36f;
  font-size: 1.5em;
  color: #1a1a1a;
  text-indent: 1em;
  min-height: 44px;
}
.search-box .input-holder input[type="text"]:focus {
  border: 2px solid #93c36f;
}
header {
  position: sticky;
  top: 0;
  height: auto;
  width: 100%;
  background: #fff;
  z-index: 9;
}
header.mobile-menu-opened {
  position: unset;
  z-index: unset;
}
header .top-bar {
  height: 26.99px;
  font-size: 15px;
}
header .top-bar .search img {
  width: 18px;
  margin-right: 7px;
}
header .top-bar img {
  width: 15px;
  height: 15px;
  object-fit: scale-down;
}
header .top-bar > * {
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
header .top-bar .socials a {
  color: #fff;
}
.socials {
  gap: 1rem;
}
header .top-bar > *:not(.language-selector):hover {
  filter: brightness(0.9);
}
header .top-bar > *:nth-child(1) {
  background: #93c36f;
}
header .top-bar > *:nth-child(2) {
  background: #e16d47;
}
header .top-bar > *:nth-child(3) {
  background: #17a6d8;
}
header .top-bar > *:nth-child(4) {
  background: #feae4d;
}
header .top-bar > *:nth-child(4):hover {
  filter: none;
}
header .header-bar {
  padding: 10px 60px;
  padding-top: 0;
  padding-bottom: 0; border-top: 1px #000000 solid;
}
header .header-bar .logo {
  flex-shrink: 1;
  max-height: 80px;
  width: auto;
  filter: blur(0);
  -webkit-filter: blur(0);
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
header .header-bar .nav {
  z-index: 99;
  padding: 0 30px;
}
header .header-bar .nav a {
  font-size: 15px;
}
header .header-bar .nav .menu {
  white-space: nowrap;
  flex-shrink: 0;
  font-family: "Barlow", sans-serif;
  margin-left: 40px;
  margin-top: 0;
  margin-bottom: 0;
}
header .header-bar .nav .menu li {
  position: relative;
  font-family: "Barlow", sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  color: #2c384c;
  width: fit-content;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (min-width: 992px) {
  header .header-bar .nav .menu > li.btn-green {
    background: #86af61;
    transition: all 0.3s;
  }
  header .header-bar .nav .menu > li.btn-green a {
    color: #fff;
  }
  header .header-bar .nav .menu > li.btn-green a:hover,
  header .header-bar .nav .menu > li.btn-green a:active,
  header .header-bar .nav .menu > li:last-child a:focus {
    color: #fff;
  }
  header .header-bar .nav .menu > li.btn-green:hover {
    filter: brightness(0.9);
  }
}
header .header-bar .nav .menu li a {
  padding: 15px;
}
header .header-bar .nav .menu li a:hover,
header .header-bar .nav .menu li a:active,
header .header-bar .nav .menu li a:focus {
  color: #93c26f;
}
header .header-bar .nav .menu li:hover > ul.sub-menu {
  opacity: 1;
  top: 65px;
  pointer-events: initial;
}
header .header-bar .nav .menu li ul.sub-menu {
  opacity: 0;
  position: absolute;
  z-index: 9;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #1a1a1a;
  pointer-events: none;
  text-align: left;
  min-width: 200px;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header .header-bar .nav .menu li ul.sub-menu::after {
  content: "";
  width: 100%;
  height: 20px;
  position: absolute;
  top: 20px;
  background: none;
  left: 0;
  z-index: 0;
}
header .header-bar .nav .menu li ul.sub-menu:before {
  content: " ";
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translate(-50%, 0);
  border: 10px solid;
  border-color: transparent transparent #1a1a1a transparent;
}
header .header-bar .nav .menu li:hover ul.sub-menu:before,
header .header-bar .nav .menu li:hover ul.sub-menu:after {
  top: -20px;
}
header .header-bar .nav .menu li ul.sub-menu li {
  padding: 0;
  margin: 0;
  text-align: left;
}
header .header-bar .nav .menu li ul.sub-menu li:hover > a {
  color: #93c36f;
}
header .header-bar .nav .menu li ul.sub-menu li:hover > a::after {
  margin-left: 10px;
  opacity: 1;
}
header .header-bar .nav .menu li ul.sub-menu li:hover > ul.sub-menu {
  opacity: 1;
  top: 0;
  pointer-events: initial;
}
header .header-bar .nav .menu li ul.sub-menu li:after {
  display: none;
}
header .header-bar .nav .menu li ul.sub-menu li a {
  color: #fff;
  text-align: left;
  white-space: nowrap;
  margin: 0;
  width: 100%;
  padding: 10px;
  display: flex;
  align-items: center;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}
header .header-bar .nav .menu li ul.sub-menu li a::after {
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
  display: flex;
  content: "";
  background-image: url("../../imgs/icons/green-arrow.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  margin-left: 0px;
  height: 16px;
  margin-top: 7px;
}
header .header-bar .nav .menu li ul.sub-menu li ul.sub-menu {
  top: 20px;
  left: 100%;
  transform: translateX(0);
}
header .header-bar .nav .menu li ul.sub-menu li ul.sub-menu:before {
  display: none;
}
header .header-bar .nav .menu li:last-child {
  margin-right: 0;
}
a.mobile-hamburger-menu {
  z-index: 99999;
  display: flex;
  flex-direction: column;
  padding: 10px;
  width: 40px;
  height: 36px;
  margin-left: 50px;
  position: relative;
}
a.mobile-hamburger-menu .hamburger-menu {
  position: relative;
  transform: translateY(7px);
  background: #888888;
  transition: all 0ms 300ms;
  width: 20px;
  height: 2px;
}
a.mobile-hamburger-menu .hamburger-menu.animate {
  background: rgba(255, 255, 255, 0);
}
a.mobile-hamburger-menu .hamburger-menu.animate:before {
  bottom: 0;
  width: 20px;
  transform: rotate(-45deg);
  transition: width 300ms cubic-bezier(0.23, 1, 0.32, 1),
    bottom 300ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
a.mobile-hamburger-menu .hamburger-menu.animate:after {
  top: 0;
  width: 20px;
  transform: rotate(45deg);
  transition: width 300ms cubic-bezier(0.23, 1, 0.32, 1),
    top 300ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
a.mobile-hamburger-menu .hamburger-menu:after,
a.mobile-hamburger-menu .hamburger-menu:before {
  height: 2px;
}
a.mobile-hamburger-menu .hamburger-menu:before {
  content: "";
  position: absolute;
  right: 0;
  width: 29px;
  bottom: 7px;
  background: #888888;
  transition: width 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
    bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
a.mobile-hamburger-menu .hamburger-menu:after {
  content: "";
  position: absolute;
  right: 0;
  width: 11px;
  top: 7px;
  background: #888888;
  transition: width 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
    top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
#side-menu {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9999;
}
#side-menu .backdrop {
  background-color: rgba(147, 195, 111, 0.8);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  flex: 1;
  width: 100%;
  height: 100%;
}
#side-menu .content {
  padding: 70px 0 50px;
  width: 75%;
  background-color: #fff;
  box-shadow: -3px 0 10px 0 #00000026;
  margin-right: calc((50% + 56px) * -1);
  overflow-y: auto;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
#side-menu .content.in {
  margin-right: 0;
  padding-top: 100px;
}
#side-menu .content ul.menu {
  margin-bottom: 35px;
}
.admin-bar #side-menu .content ul.menu {
  margin-top: 40px;
}
#side-menu .content ul.menu li.opened.menu-item-has-children > a:after {
  transform: translateY(-50%) rotate(180deg);
  top: 65%;
}
#side-menu .content ul.menu li.opened > ul.sub-menu {
  max-height: 600px;
}
#side-menu .content ul.menu li.menu-item-has-children > a span.sub-menu {
  position: absolute;
  right: 10px;
  width: 40%;
  height: 48px;
}
#side-menu .content ul.menu li.menu-item-has-children > a span.sub-menu:after {
  content: " ";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 40%;
  right: 16px;
  transform: translateY(-50%);
  background: url("../../imgs/icons/chevron-down.svg") no-repeat center;
  background-size: contain;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  content: "\f078";
}
#side-menu .content ul.menu li a {
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 16px;
  color: grey;
  font-size: 14px;
  border-bottom: 1px solid #eaeaea;
  position: relative;
}
#side-menu .content ul.menu li ul.sub-menu {
  max-height: 0;
  overflow: hidden;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin: 0;
}
#side-menu .content ul.menu li ul.sub-menu li {
  background-color: #f9f9f9;
}
#side-menu .content ul.menu li ul.sub-menu li ul.sub-menu li {
  background-color: #f3e8d9;
}
#side-menu .content ul.menu li ul.sub-menu li ul.sub-menu li a {
  border-bottom-color: #fff;
}
#side-menu .content .lang-list li .name {
  margin-left: 10px;
}
#side-menu .content ul.social-menu li {
  margin-right: 16px;
}
#side-menu .content ul.social-menu li:last-child {
  margin-right: 0;
}
#side-menu .content ul.social-menu li a {
  width: 38px;
  height: 38px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
#side-menu .content ul.social-menu li a[href*="facebook.com"] {
  background-color: #2e61e1;
}
#side-menu .content ul.social-menu li a[href*="instagram.com"] {
  background-color: #a50a6a;
}
#side-menu .content ul.social-menu li a[href*="twitter.com"] {
  background-color: #1da1f2;
}
#side-menu .content ul.social-menu li a img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}
/*=============================================
=            Homepage            =
=============================================*/
.header-section {
  background-size: cover;
  position: relative;
  z-index: 0;
  max-height: 400px;
  background-position: center;
}
.header-section::after {
  content: "";
  width: 100%;
  height: 50%;
  background: #454545;
  background: linear-gradient(to top, #1a1a1a, transparent);
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
}
.header-section.page-header {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-section.page-header::after {
  display: none;
}
.header-section.page-header .header-text {
  padding: 30px 20px;
  max-width: 540px;
  background: rgba(0, 0, 0, 0.705);
  position: absolute;
  left: 61px;
  bottom: unset;
  align-self: center;
  text-align: left;
}
.header-section.page-header .header-text.more-pad {
  padding: 100px 60px;
}
.header-section.page-header .header-text .t1 {
  margin-bottom: 0px;
  font-size: 65px;
}
.header-section.page-header .header-text .t2 {
  font-size: 25px;
  line-height: 35px;
}
.header-section .header-text {
  position: absolute;
  color: #fff;
  text-align: center;
  border: 3.7px solid #fff;
  padding: 31px 81px;
  bottom: -4px;
}
.header-section .header-text .t1 {
  font-size: 63px;
  line-height: 75px;
  font-weight: 900;
}
.header-section .header-text .t2 {
  font-size: 35px;
  font-style: italic;
}
.welcome-to-metrowest {
  --gutter-x: 70px;
  padding-top: 75px;
  padding-bottom: 5%;
  position: relative;
  /*background-image: url(../../imgs/hill-behind-photo.jpg);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100%;*/
}
.welcome-to-metrowest:has(.video-wrapper) {
  --gutter-x: 0;
  padding-top: 40px;
}
.welcome-to-metrowest .title {
  font-size: 47px;
  line-height: 56px;
}
.welcome-to-metrowest .text {
  font-size: 26px;
  line-height: 37px;
  margin-bottom: 100px;
}
.welcome-to-metrowest.removebg {
  background-image: none;
  padding-bottom: 50px;
}
.welcome-to-metrowest .row:nth-child(2n) {
  flex-direction: row-reverse;
  padding: 40px 0;
}
.welcome-to-metrowest:has(.video-wrapper) .welcome-text {
  padding: 35px;
}
.welcome-text div h3 {
  padding: 10px 0 0 0;
}
section ul {
  list-style: disc;
  margin-left: 1em;
}
section p a {
  font-weight: bold;
  color: #143f90;
}
section p a:hover,
section p a:focus,
section p a:active {
  text-decoration: underline;
}
.home-illustration {
  z-index: 2;
  margin-top: -100px;
  margin-bottom: -5px;
}
.home-illustration > img {
  width: 100%;
}
.categories-slider {
  margin-top: -5px;
}
.categories-slider .slide {
  max-height: 500px;
  height: 500px;
  display: block;
  position: relative;
}
.categories-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.categories-slider .slide:hover::after {
  background: linear-gradient(to top, #1a1a1a 10%, transparent 70%);
}
.categories-slider .slide:hover .inner .text::after {
  transform: translate(10px);
}
.categories-slider .slide::after {
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #1a1a1a 2%, transparent 70%);
  position: absolute;
  top: 0;
  left: 0;
}
.categories-slider .slide .inner {
  padding: 0 40px;
  z-index: 2;
  color: #fff;
  position: absolute;
  bottom: 0;
}
.categories-slider .slide .inner .title {
  font-weight: bold;
  font-size: 28px;
}
.categories-slider .slide .inner .text {
  font-size: 16px;
  line-height: 1.3;
  margin: 10px 0 20px 0;
  display: flex;
  align-items: flex-end;
}
.categories-slider .slide .inner .text::after {
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  content: "";
  background-image: url("../../imgs/icons/orange-arrow.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 100px;
  height: 25px;
  margin-right: -20px;
  margin-bottom: -15px;
  margin-left: auto;
}
.announcements-carousel {
  color: #fff;
  padding: 10px 0 15px 0;
}
.announcements-carousel p {
  margin: 5px 0;
}
.announcements-carousel .learn-more {
  color: #fff;
  font-weight: bold;
  font-size: 17px;
  display: flex;
  align-items: center;
}
.announcements-carousel .learn-more:hover::after {
  margin-left: 15px;
}
.announcements-carousel .learn-more::after {
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  content: "";
  background-image: url("../../imgs/icons/orange-arrow.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  margin-left: 10px;
  margin-top: 5px;
}
.announcements-carousel .owl-dots .owl-dot:hover span {
  background: #feae4d;
  filter: brightness(1.1);
}
.announcements-carousel .owl-dots .owl-dot span {
  background: #feae4d;
}
.announcements-carousel .owl-dots .owl-dot.active span {
  background: #feae4d;
  filter: brightness(1.1);
}
.fun .fun-left {
  position: relative;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.fun .fun-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fun .fun-text {
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 60px;
  bottom: 128px;
  font-size: 50px;
  border: 4px solid #fff;
  padding: 68px 51px 47px 43px;
  font-weight: bold;
  line-height: 1.2em;
  text-shadow: 2px 2px 3px #1a1a1a;
  box-shadow: 0px 0px 8px #1a1a1a;
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 0;
  height: 0;
  margin: 35px 0;
}
.video-wrapper iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.what-is-happening {
  margin-left: 30px;
  padding: 30px 0;
  padding-right: 50px;
}
.what-is-happening h2 {
  margin-bottom: 10px;
}
.what-is-happening .sub-title {
  font-size: 20px;
  padding-bottom: 10px;
  border-bottom: 1.9px solid #1a1a1a;
}
.what-is-happening .events .event {
  margin-top: 30px;
}
.what-is-happening .events .event img {
  max-width: 100%;
  max-height: 100%;
  width: 166px;
  height: 166px;
  object-fit: cover;
}
.what-is-happening .events .event .event-details {
  margin-left: 15px;
}
.what-is-happening .events .event .event-details .date {
  font-size: 20px;
  font-weight: bold;
}
.what-is-happening .events .event .event-details .title {
  margin: 0;
}
.what-is-happening .events .event .event-details .text {
  font-style: italic;
  margin: 5px 0;
}
.what-is-happening .events .event .readmore {
  font-weight: bold;
  font-size: 18px;
  margin-top: 0.5em;
}
.tribe-common.tribe-events.tribe-events-view.tribe-events-view--list * {
  font-family: inherit;
}
.tribe-events-event-image img {
  display: block;
  height: auto;
  max-width: 100%;
}
.what-is-happening .see-all {
  font-size: 23px;
  margin-top: 25px;
}
.metro-fest {
  background-image: url("../../imgs/metrofest-banner.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  height: 694px;
  margin-top: -3px;
  color: #fff;
}
.metro-fest img {
  margin-top: 40px;
}
.metro-fest p {
  margin: 42px 0;
  font-size: 30px;
}
.metro-fest a {
  margin-top: 40px;
  color: #fff;
  font-size: 26px;
}
.colored-boxes {
  padding: 15px 0;
}
.colored-boxes .area {
  margin-bottom: 15px;
}
.colored-boxes .colored-box {
  padding: 30px;
}
.colored-boxes .colored-box h3 {
  font-weight: normal;
}
.colored-boxes .colored-box p {
  margin: 10px 0;
}
.colored-boxes .colored-box a {
  font-size: 20px;
}
.colored-boxes .ads-boxes {
  margin-left: 30px;
}
.colored-boxes .ads-boxes .adbox {
  height: 50%;
  min-width: 256px;
}
.colored-boxes .ads-boxes .adbox:first-child {
  margin-bottom: 10px;
}
.colored-boxes .ads-boxes .adbox img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.announcements .sec-title {
}
.announcements .announcement {
  margin-top: 35px;
}
.announcement-list .col-lg-6:last-child .announcement {
  margin-bottom: 35px;
}
.announcements .announcement img {
  max-width: 100%;
  max-height: 100%;
  width: 150px;
  height: 150px;
  object-fit: cover;
}
.announcements .announcement .event-details {
  margin-left: 26px;
}
.announcements .announcement .event-details .title {
  font-weight: bold;
}
.announcements .announcement .event-details .text {
  line-height: 1.5em;
  width: 80%;
}
.announcements .announcement .readmore {
  font-weight: bold;
  font-size: 18px;
  margin-top: 0.5em;
}
.hidden {
  display: none;
}
footer .footer-illustration {
  margin-bottom: -10px;
}
footer .footer-illustration img {
  width: 100%;
}
footer .newsletter {
  margin-top: -3px;
  background: #1a1a1a;
  color: #fff;
  padding: 15px 0;
}
footer .newsletter h2 {
  color: #17a6d8;
}
footer .newsletter h3 {
  font-weight: normal;
}
footer .newsletter .subs-newsletter {
  display: flex;
  align-items: center;
  height: 72px;
  max-width: 1100px;
  width: 100%;
  flex-shrink: 1;
  margin-left: 50px;
}
footer .newsletter .subs-newsletter .gform_wrapper {
  width: 100%;
  height: 72px;
}
footer .newsletter .subs-newsletter input,
.gform_wrapper.gravity-theme .gform_footer input {
  height: 100%;
  font-size: 25px;
}
footer .newsletter .subs-newsletter input[type="text"] {
  width: 80%;
  text-indent: 1.5em;
  font-family: inherit;
  font-size: 25px;
  height: 72px;
}
footer .newsletter .subs-newsletter input[type="submit"] {
  color: #fff;
  width: 100%;
  background: #b1005d;
  border: none;
  cursor: pointer;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-family: inherit;
  height: 72px;
  -webkit-appearance: none;
}
footer .newsletter .subs-newsletter .gform_wrapper .gform_body {
  width: 79%;
  text-indent: 1.5em;
  font-family: inherit;
  float: left;
}
footer .newsletter .subs-newsletter .gform_wrapper .gform_footer {
  float: left;
  height: 72px;
  margin: 0;
  padding: 0;
}
.gform_wrapper.gravity-theme .gform_footer input {
  color: #fff;
  background: #b1005d;
  border: none;
  cursor: pointer;
  padding: 10px 20px;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
footer .newsletter .subs-newsletter input[type="submit"]:hover,
.gform_wrapper.gravity-theme .gform_footer input:hover {
  filter: brightness(0.9);
}
footer .r-bar {
  display: flex;
}
footer .r-bar span {
  width: 25%;
  height: 27px;
}
/*footer .r-bar span:nth-child(1) {
  background: #86AF61;
}
footer .r-bar span:nth-child(2) {
  background: #B1005D;
}
footer .r-bar span:nth-child(3) {
  background: #143F90;
}
footer .r-bar span:nth-child(4) {
  background: #F1BD43;
}*/
footer .footer-inside {
  background: #f2f2f2;
  font-size: 15px;
  padding: 25px 0;
}
footer .footer-inside .footer-logo {
  max-width: 360px;
  width: 100%;
}
footer .footer-inside .footer-title {
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 10px;
}
footer .footer-inside p {
  width: 100%;
}
footer .footer-inside ul,
footer .footer-inside ol {
  margin: 0 0;
}
footer .footer-inside .links a {
  width: 50%;
  font-size: 15px;
  margin-bottom: 0.7em;
}
footer a:hover {
  text-decoration: underline;
}
footer .footer-inside .instagram-gallery a {
  width: 22%;
  margin: 5px;
}
footer .footer-inside .instagram-gallery a img {
  width: 100%;
  object-fit: cover;
}
footer .footer-bottom {
  background: #999999;
  color: #fff;
  padding: 12px 0;
  font-size: 20px;
}
footer .footer-bottom a {
  color: #fff;
  /*margin: 0 10px;*/
}
/*footer .footer-bottom a.web_logo { margin-top: -3px; }*/
footer .footer-bottom ul li {
  float: left;
}
.boxed-items {
  margin: 75px 0;
}
.boxed-item {
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin-bottom: 0px; text-decoration: none;
}
.boxed-item + p.short {
  margin: 10px 0 0;
}
.boxed-item img {
  margin: 0 auto;
  object-fit: cover;
  border: 1px solid #ccc;
}
.boxed-item:hover {
  filter: brightness(1.1); text-decoration: underline;
}
.boxed-item:hover h2 {
  color: #e16d47;
}
.boxed-item h2 {
  color: #93c36f;
  font-size: 28px;
  line-height: 1em;
  margin-top: 22px;
}
.boxed-item p {
  line-height: 1em;
  font-size: 20px;
  margin: 8px 0 0px;
}
.price-chart {
  margin: 0 auto;
  max-width: 650px;
}
.price-chart > div {
  padding: 10px;
}
.price-chart > div:nth-child(2n) {
  background: #f2f2f2;
}
.price-chart > div:nth-child(2n) .buy-package {
  background: #feae4d;
}
.price-chart .buy-package {
  border-radius: 15px;
  padding: 0 5px;
  font-size: 14px;
  font-weight: bold;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.price-chart .buy-package:hover {
  filter: brightness(0.9);
}
.price-chart .package-name {
  width: 75%;
  text-align: left;
}
.call-to-action {
  background: #000;
  height: 600px;
  background-image: url("../../imgs/banners/calltoaction.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.call-to-action p {
  margin: 0;
}
.call-to-action .inside {
  max-width: 70%;
  text-align: center;
  margin: 0 auto;
}
.call-to-action .title {
  font-size: 55px;
  line-height: 1.3;
  font-weight: bold;
}
.call-to-action .btn {
  margin-top: 2em;
}
.horizontal-a-d {
  width: 95%;
  margin: 30px auto;
}
.block-title {
  color: #fff;
  padding: 10px 0;
  padding-bottom: 0;
}
.block-title h3 {
  font-weight: normal;
}
.boxed-layout {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(406px, 1fr));
  grid-gap: 30px;
}
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
.filter-buttons .filter-btn {
  cursor: pointer;
  display: flex;
  padding: 20px 30px 20px 30px;
}
.filter-buttons .filter-btn.active {
  background: #fff;
  color: #93c36f;
}
@keyframes active {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.filter-item {
  display: none;
}
.filter-item.active {
  display: flex;
  animation: active 1s;
}
.content-block {
  margin: 30px 0;
  --gutter-x: 80px;
  --gutter-x2: 0;
}
.content-block .col {
  margin-top: 30px;
}
.colored-block {
  --gutter-x: 0px;
  --gutter-x2: 0px;
}
.colored-block .box {
  padding: 30px;
}
.default-block {
  margin: 40px auto;
  --gutter-x: 40px;
  --gutter-x2: -40px;
  max-width: 80%;
  width: 100%;
}
.badge-bar p {
  margin: 10px 0;
}
.badge-bar .badge-in {
  padding: 25px 0;
  max-width: 80%;
  margin: 0 auto;
}
.badge-bar .badge-link {
  padding: 15px 0;
  width: 100%;
}
.pdfs {
  margin-top: 130px;
  margin-bottom: 100px;
}
footer .footer-inside .affiliates img {
  max-width: 150px; max-height: 80px;
}
footer .footer-inside .affiliates:not(.sponsors) img:last-child {
  max-width: 172px;
}
footer .footer-inside .sponsors-title {
  padding-top: 1rem;
}
/*=============================================
=            MEDIA    RESPONSIVE        =
=============================================*/
@media only screen and (max-width: 1600px) {
  .home-illustration {
    margin-top: -150px;
  }
}
@media only screen and (max-width: 1400px) {
  header .header-bar .logo {
    margin-top: 15px;
  }
  .header-section.page-header .header-text .t1 {
    font-size: 63px;
  }
  .header-section.page-header .header-text .t2 {
    font-size: 23px;
    line-height: 1.3;
  }
  .what-is-happening .events .event {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .what-is-happening .events .event img {
    margin-bottom: 15px;
  }
  .what-is-happening .events .event .event-details {
    margin-left: 0;
  }
  .fun .fun-text {
    left: 15px;
    bottom: 15px;
    font-size: 35px;
  }
  .colored-boxes .area {
    flex-direction: column;
  }
  .colored-boxes .area .ads-boxes {
    margin-top: 10px;
    margin-left: 0;
    flex-direction: row !important;
  }
  .colored-boxes .area .ads-boxes .adbox {
    min-width: auto;
    /*height: 250px;*/
    height: auto;
    width: 50%;
  }
  .colored-boxes .area .ads-boxes .adbox:first-child {
    margin-right: 5px;
  }
  .colored-boxes .area .ads-boxes .adbox:last-child {
    margin-left: 5px;
  }
  footer .newsletter .subs-newsletter {
    margin-top: 30px;
  }
}
@media only screen and (min-width: 1151px) {
  .welcome-to-metrowest {
    padding-bottom: 170px;
  }
  .welcome-to-metrowest:has(.video-wrapper) {
    padding-bottom: 135px;
  }
}
@media only screen and (min-width: 1151px) and (max-width: 1550px) {
  .welcome-to-metrowest {
    --gutter-x: 35px;
    padding-bottom: 150px;
  }
  .welcome-to-metrowest:has(.video-wrapper) {
	--gutter-x: 0;
  }
}
@media only screen and (max-width: 1150px) {
  h2 {
    font-size: 34px;
  }
  .boxed-item p {
    font-size: 18px;
  }
  .call-to-action .title {
    font-size: 54px;
  }
  .search-box .input-holder {
    width: 90%;
  }
  header .header-bar {
    padding: 20px 10px;
    flex-direction: row;
    justify-content: space-between;
  }
  header .header-bar .nav a {
    font-size: 14px;
  }
  .header-section .header-text {
    padding: 20px;
    border: none;
  }
  .header-section .header-text .t1 {
    font-size: 43px;
  }
  .header-section .header-text .t2 {
    font-size: 25px;
  }
  .header-section.page-header .header-text {
    max-width: 80%;
  }
  .announcements-carousel .title {
    font-size: 26pt;
  }
  .announcements-carousel .text {
    text-align: center;
    font-size: 20pt;
  }
  .welcome-to-metrowest .welcome-text {
    margin-bottom: 100px;
  }
  .fun {
    flex-direction: column;
  }
  .what-is-happening .events .event img {
    width: 100%;
  }
  .announcements .announcement {
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }
  .announcements .announcement img {
    width: 100%;
  }
  .announcements .announcement .event-details {
    margin-left: 0;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .announcements .announcement .event-details .text {
    width: 100%;
  }
  footer .newsletter .subs-newsletter {
    padding: 20px;
    height: 100px;
    margin: 0;
    display: flex;
  }
  footer .newsletter .subs-newsletter input[type="text"] {
    width: 70%;
  }
  footer .newsletter .subs-newsletter input[type="submit"] {
  }
  footer .affiliates {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  footer .affiliates a {
    width: 50%;
    flex: 1;
  }
  footer .affiliates a img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
  }
  .footer-bottom {
    flex-direction: column;
  }
}
@media only screen and (max-width: 991px) {
  footer .newsletter .subs-newsletter .gform_wrapper .gform_body {
    width: 70%;
  }
}
@media only screen and (min-width: 768px) {
  .footer-inside .col-lg-3:nth-child(2) {
    padding-left: 50px;
  }
}
@media only screen and (max-width: 768px) {
  body {
    font-size: 18px;
  }
  .default-block {
    max-width: 98%;
  }
  ul.white-check li {
    background-size: 25px;
    padding-left: 30px;
    background-position: 0 10px;
  }
  ul.blue-check li {
    background-size: 25px;
    padding-left: 30px;
    background-position: 0 10px;
  }
  .boxed-item img {
    margin: 0;
  }
  footer .affiliates {
    flex-wrap: initial;
    margin-bottom: 20px;
  }
  .footer-inside .links {
    margin-bottom: 20px;
  }
  .boxed-items {
    margin: 50px 0;
  }
  .header-section.page-header .header-text {
    max-width: 90%;
    padding: 20px;
    left: 5%;
    right: 5%;
  }
  .header-section.page-header .header-text .t1 {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 10px;
  }
  .header-section.page-header .header-text .t2 {
    line-height: 30px;
  }
  .welcome-to-metrowest {
    padding-bottom: 150px;
  }
  .welcome-to-metrowest .welcome-text {
    margin-bottom: 20px;
  }
  .welcome-to-metrowest.removebg {
    margin-bottom: 50px;
    padding-bottom: 0;
  }
  .call-to-action {
    height: auto;
    padding: 50px 0;
  }
  .call-to-action .title {
    font-size: 34px;
    line-height: 40px;
  }
  .categories-slider .slide .inner {
    padding: 20px;
  }
  .categories-slider .slide .inner .text::after {
    margin-right: 0;
  }
  .categories-slider .slide .inner .title {
    font-size: 17px;
  }
  .announcements-carousel .title {
    font-size: 20pt;
  }
  .announcements-carousel .text {
    padding: 0 15px;
    font-size: 15pt;
  }
  .boxed-item {
    margin-bottom: 20px;
  }
  .bg-red p {
    margin: 10px 0;
  }
  .pdfs {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  footer .newsletter > div {
    flex-direction: column;
  }
}
@media only screen and (max-width: 600px) {
  .search-box .close-search {
    top: -100px;
  }
  .search-box .input-holder input[type="text"] {
    font-size: 15px;
  }
  .header-section .header-text .t1 {
    font-size: 43px;
    line-height: 43px;
  }
  .header-section .header-text .t2 {
    font-size: 16px;
    line-height: 1.3;
  }
  .header-section.page-header {
    min-height: 250px;
    background-position: center;
  }
  .header-section.page-header .header-text {
  }
  .header-section.page-header .header-text.more-pad {
    padding: 20px 20px;
  }
  .header-section.page-header .header-text .t1 {
    font-size: 43px;
    line-height: 43px;
  }
  .header-section.page-header .header-text .t2 {
    font-size: 16px;
    line-height: 1.3;
    margin-top: 10px;
  }
  h1 {
    font-size: 27pt;
    line-height: 30pt;
  }
  h2 {
    font-size: 20pt;
    line-height: 25pt;
  }
  .container {
    --gutter-x: 5px;
    --gutter-x2: -5px;
  }
  header .top-bar > * {
    font-size: 12px;
  }
  header .top-bar img {
    width: 10px;
    height: 10px;
    object-fit: scale-down;
  }
  .welcome-to-metrowest {
    padding-top: 20px;
  }
  .welcome-to-metrowest .title {
    font-size: 35px;
    line-height: 40px;
  }
  .welcome-to-metrowest .text {
    font-size: 20px;
    line-height: 30px;
  }
  .what-is-happening .sub-title {
    font-size: 18pt;
  }
  .what-is-happening .events .event .event-details .text {
  }
  .colored-boxes .colored-box p {
  }
  .announcements .announcement .event-details .text {
  }
  footer .newsletter .subs-newsletter input {
    font-size: 15px;
  }
  footer .footer-inside p {
    width: 100%;
    text-align: justify;
  }
  footer .footer-inside .instagram-gallery {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
  }
  footer .footer-inside .instagram-gallery a {
    width: auto;
  }
  footer .footer-bottom {
    text-align: center;
    font-size: 16px;
    line-height: 1.2;
  }
  .filter-buttons {
    font-size: 18px;
  }
  .filter-buttons .filter-btn {
    padding: 10px;
  }
  .boxed-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-gap: 10px;
  }
  .price-chart > div {
    flex-direction: column;
  }
  .price-chart > div .package-name {
    text-align: center;
    /*width: 100%;*/
  }
  .price-chart > div .package-price {
    margin: 5px 0;
  }
  footer .newsletter .subs-newsletter input[type="text"] {
    font-size: 15px;
    height: 60px;
    float: left;
  }
  .gform_wrapper.gravity-theme
    input:not([type="radio"]):not([type="checkbox"]):not([type="image"]):not(
      [type="file"]
    ):not([type="text"]) {
    padding: 0 20px;
  }
  .gform_wrapper.gravity-theme input[type="text"] {
    padding: 0 5px;
  }
  footer .newsletter .subs-newsletter .gform_wrapper .gform_body {
    width: 65%;
  }
  footer .newsletter .subs-newsletter input[type="submit"] {
    font-size: 15px;
    line-height: 60px;
    height: 60px;
  }
  footer .newsletter .subs-newsletter .gform_wrapper form {
    display: flex;
    justify-content: center;
  }
}
div#gform_wrapper_2 {
  /*padding: 20px 30px;*/
  background: #fff;
  color: initial;
  max-width: 500px;
  margin: 0 auto;
}
div#gform_wrapper_2 .ginput_container textarea,
div#gform_wrapper_2 .ginput_container input,
.gform_wrapper.gravity-theme .gform_footer input {
  font-family: inherit;
}
.web_logo {
    float: left;
    margin-top: 3px;
    margin-right: 10px;
    font-size: 0;
    opacity: 1;
    width: 20px;
    height: 20px;
    display: block;
    background:url('https://www.metrowestvisitors.org/wp-content/uploads/2025/08/logo-3mw.webp') no-repeat center;
    background-size: 100%; filter: brightness(0.5);
}
.col-12.single-post-content {
  max-width: 1000px;
  margin: 0 auto;
}
/*:target { hides the newsletter form
  display: block;
  position: relative;
  top: -125px; 
  visibility: hidden;
}*/
.tribe-common.tribe-events header {
  z-index: 8;
}
/* ---------------------------- Print CSS Styling ---------------------------- */
@media print {
  @page {
    margin-top: 2cm;
    margin-bottom: 2cm;
    margin-left: 2cm;
    margin-right: 2cm;
  }
  header {
    box-shadow: none;
    padding: 0;
  }
  @page :first {
    header {
      display: block !important;
    }
  }
  .header-main.fixed {
    position: absolute;
  }
  *,
  .welcome-to-metrowest,
  .call-to-action,
  .categories-slider .slide::after {
    background-image: none !important;
    background-color: transparent;
  }
  body {
    background: #ffffff;
    color: #000000;
    font-size: 8pt;
    line-height: 150%;
    margin: 0px;
  }
  hr {
    color: #ccc;
    background-color: #ccc;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  code,
  pre,
  p,
  a:link,
  a:visited,
  blockquote,
  .bg-green,
  .bg-blue,
  .bg-red,
  .categories-slider .slide .inner .title,
  .header-section .header-text {
    color: #000000 !important;
    line-height: 1.3 !important;
  }
  .categories-slider .slide .inner .text {
    font-size: 18px;
  }
  .bg-green,
  .bg-blue,
  .bg-red {
    background-color: transparent !important;
  }
  p {
    page-break-inside: avoid;
  }
  blockquote {
    background-image: none;
  }
  a:link,
  a:visited {
    text-decoration: underline;
  }
  .boxed-item p {
    font-size: 1em;
  }
  .boxed-item img {
    margin: 0;
  }
  .header-section.page-header .header-text {
    max-width: 100%;
    background: transparent;
    left: 0;
  }
  .what-is-happening {
    width: 100%;
  }
  .welcome-to-metrowest {
    padding-bottom: 20%;
  }
  .colored-boxes .ads-boxes .adbox img {
    height: auto;
  }
  .call-to-action {
    height: fit-content;
  }
  .skip-btn,
  .nav-bar,
  #menu,
  #navigation,
  .do-not-print,
  #Nav,
  #FlyOutNav,
  #SubNav,
  .NoPrint,
  .fun-left,
  .home-illustration > img,
  .top-bar,
  footer .footer-illustration,
  footer .newsletter,
  .categories-slider .slide img,
  .call-to-action img {
    display: none !important;
  }
  .img-responsive {
    max-width: 50%;
  }
}
.embed-block {
  padding: 15px;
}
/* ---------------------------- Begin WordPress Core ---------------------------- */
img {
  max-width: 100%;
  height: auto;
}
.alignnone {
  margin: 5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}
.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
a img.alignnone {
  margin: 5px 20px 20px 0;
}
a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}
.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}
.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}
.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}
@media (max-width: 600px) {
  .alignleft,
  .alignright,
  .aligncenter,
  .alignnone,
  a img.alignright,
  a img.alignleft,
  a img.alignnone,
  a img.aligncenter {
    float: none;
    margin: 5px auto;
    display: block;
  }
}
/* ---------------------------- Text meant only for screen readers ---------------------------- */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}
/* ---------------------------- End WordPress Core ---------------------------- */
.price-chart .package-price {
  min-width: 40px;
}
.price-chart input[type="submit"] {
  padding: 0 15px;
  max-width: 90px;
  float: right;
}
.ctct_usage,
.ctct-button,
.ctct-disclosure {
  display: none !important;
}
.subs-newsletter .ctct-form-wrapper,
.ctct-form-6671 .ctct-email {
  width: 100%;
}
.ctct-form.ctct-form-6671 {
  display: flex;
  margin-top: 1rem;
}
.ctct-form-6671 .ctct-form-field-email {
  flex-grow: 1;
}
/*.ctct-form-6671 .ctct-form-field-submit {min-width: 145px;}*/
.ctct-form-6671 .ctct-form-field-submit input {
  padding: 0 25px;
}
footer .newsletter .subs-newsletter input {
  padding: 0 25px;
}
@media all and (-ms-high-contrast: none) {
  #outdated {
    display: block;
  }
}
.home-illustration + .embed-block {
  padding: 0;
}
.ad-carousel {
  background: #000;
}
.ad-carousel .owl-dots {
  display: flex;
  justify-content: center;
  padding: 0.5rem;
  gap: 0.5rem;
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.ad-carousel.owl-carousel button.owl-dot {
  background: #efefef;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  filter: drop-shadow(2px 2px 7px #000);
}
.ad-carousel.owl-carousel button.owl-dot.active {
  background: #e16d47;
}
.pum-theme-default-theme {
  background-color: rgba(0, 0, 0, 0.9) !important;
}
.ctct-form.ctct-form-6671 {
  max-width: 300px;
}
.ctct-email {
  padding: 10px 12px !important;
}
.ctct-submit {
  padding: 10px 6px !important;
}
.newsletter-signup {
  font-size: 3rem;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  color: red;
  z-index: 9999;
}
section a {
  text-decoration: underline;
}
.newsletter-signup {
  height: 90px;
  width: 80px;
  overflow: hidden;
}
.newsletter-signup:hover {
  height: 444px;
}
.newsletter-signup img {
  width: auto;
  transition: transform 300ms;
}
.newsletter-signup:hover img {
  transition: transform 300ms;
  transform: translate3d(0, 80px, 0);
}
.amethyst {
  color: #b1005d !important;
}
.sapphire {
  color: #143f90 !important;
}
.navy {
  color: #33325c !important;
}
.turquoise {
  color: #00848d !important;
}
.pear {
  color: #86af61 !important;
}
.lime {
  color: #b2d235 !important;
}
.mustard {
  color: #f1bd43 !important;
}
.amethyst_bg {
  background-color: #b1005d !important;
}
.sapphire_bg {
  background-color: #143f90 !important;
}
.navy_bg {
  background-color: #33325c !important;
}
.turquoise_bg {
  background-color: #00848d !important;
}
.pear_bg {
  background-color: #86af61 !important;
}
.lime_bg {
  background-color: #b2d235 !important;
}
.mustard_bg {
  background-color: #f1bd43 !important;
}
.newsletter-cta {
  color: inherit;
}


/* Hide Dropdowns by Default */
/* Dropdown */
.language-selector {max-width: 200px; box-shadow: 0px 1px 24px 0px #0000001c;}
.dropdown {
  position: relative; color: #000 !important; width: 100%; z-index: 100; display: block !important; text-align: left !important; padding: 3px 0 5px 0;
}

.dd-button {
  display: block;
  cursor: pointer;
  white-space: nowrap;
}

.dd-button:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 0; 
  height: 0; 
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid black;
}

.dd-button:hover {
  /*background-color: #eeeeee;*/
}


.dd-input {
  display: none;
}

.dd-menu {
  position: absolute;
  top: 100%;
  padding: 0;
  margin: 2px 0 0 0;
  background-color: #ffffff;
  list-style-type: none; width: 100%; box-shadow: 0px 1px 24px 0px #0000001c;
}

.dd-input + .dd-menu {
  display: none;
} 

.dd-input:checked + .dd-menu {
  display: block;
} 

.dd-menu li {
  padding: 10px 20px;
  cursor: pointer;
}

.dd-menu li:hover {
  /*background-color: #f6f6f6;*/
}

.dd-menu li a {
  display: block;
  margin: -10px -20px;
  padding: 10px 20px;
}

.dd-menu li.divider{
  padding: 0;
  border-bottom: 1px solid #cccccc;
}

li.flag a, .flag .selector {position:relative; padding-left: 48px; }
.flag .selector {line-height: 30px;}
li.flag a:hover {background: #dfdfdf;}
li.flag a:before, .flag .selector:before {content:""; background-image:url("../../imgs/flags/us.svg"); position:absolute; ; background-repeat: no-repeat; width:30px; height:30px; background-position:center; left: 8px; }
li.flag.fr a:before, .flag.fr .selector:before {background-image:url("../../imgs/flags/fr.svg");}
li.flag.de a:before, .flag.de .selector:before {background-image:url("../../imgs/flags/de.svg");}
li.flag.it a:before, .flag.it .selector:before {background-image:url("../../imgs/flags/it.svg");}
li.flag.pt a:before, .flag.pt .selector:before {background-image:url("../../imgs/flags/pt.svg");}
li.flag.nl a:before, .flag.nl .selector:before {background-image:url("../../imgs/flags/nl.svg");}
li.flag.es a:before, .flag.es .selector:before {background-image:url("../../imgs/flags/es.svg");}

@media (max-width:991.98px) {
	.top-bar .language-selector {display:none !important;}
	.mobile-lang-wrap > div.language-selector, .mobile-lang-wrap .social-menu {margin-left: 1rem;}
	/*.language-selector { margin-left: 1rem; max-width: 72px; }
	.language-selector .lang-label {opacity: 0;
    display: flex;
    width: 1px;}
	.flag .selector {padding-left:0;}
	.mobile-lang-wrap {margin-right:1rem;}
	.social-menu {margin:0;}*/
	/*.dropdown {display:none !important;}*/
}