@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --primary-color: #1C4767;
  --secondary-color: linear-gradient(180deg,rgba(212, 182, 118, 1) 0%, rgba(176, 140, 78, 1) 100%);
  --white: #fff;
  --black: #000;
  --grey: #A9B0B7;
  --grey-icon-border: #C1C3C5;
  --brown-border-color: #B4A598;
  --opaque-grey: rgba(169, 176, 183, .34);
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

* {
  font-family: "Montserrat", sans-serif;
}

.site-btn {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  background: var(--secondary-color) !important;
  border-radius: 500px;
  height: -moz-fit-content;
  height: fit-content;
  padding: 10px 50px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  text-transform: uppercase;
}
.site-btn img {
  margin-right: 10px;
}
.site-btn:hover {
  background: var(--primary-color) !important;
}

.admin-bar .rmp-container, .admin-bar .rmp_menu_trigger {
  margin-top: unset !important;
}

ul {
  margin: unset;
}
ul li {
  list-style-type: none;
}

p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
}

.container {
  max-width: 1538px;
  margin: 0 auto;
}

.col {
  width: auto;
}

.d-flex {
  display: flex;
}

.d-none {
  display: none !important;
}

#btn-to-top {
  display: inline-block;
  background-color: var(--primary-color);
  border: 1px solid var(--white);
  width: 30px;
  height: 30px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 10px;
  right: 10px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 1;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
#btn-to-top:after {
  content: "↑";
  font-weight: normal;
  font-style: normal;
  font-size: 20px;
  line-height: 1;
  color: #fff;
}
#btn-to-top:hover {
  cursor: pointer;
  background-color: #333;
}

.footer-section .main-footer .container .col.logo-col img {
  max-width: 100%;
}

.top-title {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  color: #D3B47B !important;
}

main {
  padding: unset !important;
}

header .mobile-toggle {
  padding-left: 15px;
  display: none;
}

.page-title {
  font-size: 70px;
  color: var(--white);
  margin: unset;
  line-height: 114%;
}

.page-subtitle {
  font-size: 35px;
  color: var(--white);
  margin: unset !important;
  line-height: 157%;
}

.section-title {
  font-size: 35px;
  list-style: 1.23;
  color: var(--primary-color);
  font-weight: 700;
  text-align: center;
  margin: unset;
}

.social-links li:hover img {
  filter: invert(1) brightness(0.87) !important;
}

header {
  background: var(--white) !important;
  color: #fff;
  padding: 22px 20px 0;
  text-align: center;
  position: sticky;
  z-index: 99901 !important;
  top: 0;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.5));
}
header .main-header {
  padding-bottom: 25px;
}
header .main-header .container {
  align-items: center;
}
header .main-header .container .logo-col {
  max-width: 246px;
}
header .main-header .container .logo-col a {
  display: inline-block;
}
header .main-header .container .logo-col a img {
  max-width: 100%;
  height: auto;
}
header .main-header .container .social-links {
  margin-left: auto;
}
header .main-header .container .social-links ul {
  padding: unset;
  margin-right: 15px;
}
header .main-header .container .social-links ul li {
  align-content: center;
  margin-right: 9px;
}
header .main-header .container .social-links ul li:last-child {
  margin-right: unset;
}
header .main-header .container .social-links .site-btn {
  font-size: 27px;
  padding: 10px 20px;
}
header .bottom-header {
  margin-bottom: -55px;
}
header .bottom-header .container nav ul.main-menu {
  display: flex;
  padding: unset;
  background-color: var(--primary-color);
  height: 78px;
  flex-wrap: wrap;
  border-radius: 500px;
}
header .bottom-header .container nav ul.main-menu > li {
  flex: 1;
  min-width: -moz-fit-content;
  min-width: fit-content;
  align-content: center;
  border-left: 1px solid var(--opaque-grey);
  border-right: 1px solid var(--opaque-grey);
  transition: all 0.3s;
  background: transparent;
  position: relative;
}
header .bottom-header .container nav ul.main-menu > li:first-child, header .bottom-header .container nav ul.main-menu > li:last-child {
  border-left: unset;
}
header .bottom-header .container nav ul.main-menu > li:first-child {
  border-top-left-radius: 500px;
  border-bottom-left-radius: 500px;
}
header .bottom-header .container nav ul.main-menu > li:last-child {
  border-top-right-radius: 500px;
  border-bottom-right-radius: 500px;
}
header .bottom-header .container nav ul.main-menu > li:last-child ul.sub-menu {
  right: 0;
}
header .bottom-header .container nav ul.main-menu > li.current-menu-item, header .bottom-header .container nav ul.main-menu > li:hover {
  background: var(--secondary-color) !important;
}
header .bottom-header .container nav ul.main-menu > li > a {
  font-size: 18px;
  color: var(--white);
  display: inline-block;
  height: 100%;
  padding: 0 18px;
  align-content: center;
}
header .bottom-header .container nav ul.main-menu > li > ul.sub-menu {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  padding: 0;
  transition: all 0.3s;
}
header .bottom-header .container nav ul.main-menu > li > ul.sub-menu li {
  background-color: var(--primary-color);
  transition: all 0.3s;
}
header .bottom-header .container nav ul.main-menu > li > ul.sub-menu li a {
  padding: 10px 20px;
  font-size: 14px;
  color: var(--white);
  display: inline-block;
  white-space: nowrap;
}
header .bottom-header .container nav ul.main-menu > li > ul.sub-menu li:hover {
  background: var(--secondary-color) !important;
}
header .bottom-header .container nav ul.main-menu > li.menu-item-has-children:before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background-image: url(/wp-content/uploads/2025/09/triangle-up-svgrepo-com.png);
  top: 25%;
  right: 11px;
  background-position: center;
  background-size: 37%;
  background-repeat: no-repeat;
  transform: rotate(180deg);
}
header .bottom-header .container nav ul.main-menu > li.menu-item-has-children a {
  padding-right: 36px;
}
header .bottom-header .container nav ul.main-menu > li.menu-item-has-children:hover .sub-menu {
  opacity: 1 !important;
  pointer-events: all !important;
}

.section-404 {
  padding: 90px 20px;
}
.section-404 .container {
  text-align: center;
}
.section-404 .container h1.page-title {
  color: var(--primary-color);
}
.section-404 .container .page-subtitle {
  color: var(--primary-color);
  margin: 30px 0 !important;
}
.section-404 .container a.site-btn {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.section-hero-banner {
  height: 826px;
  position: relative;
  overflow: hidden;
}
.section-hero-banner .container {
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: calc(100% - 40px);
  height: 100%;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  padding-bottom: 124px;
  padding: 50px 20px 102px;
}
.section-hero-banner .container .page-title {
  margin-bottom: 28px;
  text-align: center;
}
.section-hero-banner .container .page-subtitle {
  margin-bottom: 48px !important;
  text-align: center;
}
.section-hero-banner .container .btn-group {
  display: flex;
}
.section-hero-banner .container .btn-group .site-btn {
  width: 222px;
  margin: 0 10px;
}
.section-hero-banner .banner-slider {
  max-height: 100%;
  height: 100%;
  overflow: hidden;
}
.section-hero-banner .banner-slider .slick-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-hero-banner .banner-slider .slick-list {
  height: 100%;
}
.section-hero-banner .banner-slider .slick-list .slick-track {
  height: 100%;
}
.section-hero-banner .banner-slider .slick-dots {
  bottom: 34px !important;
  z-index: 1;
}
.section-hero-banner .banner-slider .slick-dots li {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: 0 2.25px;
}
.section-hero-banner .banner-slider .slick-dots li button {
  background-color: var(--grey);
  padding: unset !important;
  width: 9px;
  height: 9px;
  border-radius: 1000px;
}
.section-hero-banner .banner-slider .slick-dots li button:before {
  display: none;
}
.section-hero-banner .banner-slider .slick-dots li.slick-active button {
  background: var(--secondary-color) !important;
}

.section-inner-page-banner {
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 168px 30px 105px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.section-inner-page-banner:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #082541;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.35;
}
.section-inner-page-banner .container {
  position: relative;
}
.section-inner-page-banner .container .page-title {
  text-align: center;
  text-transform: uppercase;
}
.section-inner-page-banner .container p.subtitle {
  font-size: 35px;
  text-align: center;
  margin-top: 13px;
  margin-bottom: unset;
  color: var(--white);
}

.section-process {
  padding-top: 77px;
}
.section-process .section-title {
  margin-bottom: 44px;
}
.section-process .processes {
  display: flex;
}
.section-process .processes .col {
  background-color: #F3F3F2;
  border: 0.5px solid #082541;
}
.section-process .processes .col .col-heading {
  padding: 20px 0;
  background-image: url("/wp-content/uploads/2025/09/Frame-29.png");
  background-size: cover;
  border: 0.5px solid #082541;
}
.section-process .processes .col .col-heading h3 {
  margin: unset !important;
  font-size: 25px;
  text-align: center;
  color: var(--white);
}
.section-process .processes .col .col-body {
  padding: 34px 64px;
  text-align: center;
  font-size: 18px;
  line-height: 1.45;
}

.section-image-with-content {
  padding: 78px 20px 62px;
}
.section-image-with-content .container .d-flex .col {
  width: 50%;
}
.section-image-with-content .container .d-flex .col .section-title {
  text-align: left;
}
.section-image-with-content .container .d-flex .col.featured {
  padding-right: 29px;
  display: flex;
}
.section-image-with-content .container .d-flex .col.featured .featured-column-wrapper {
  display: flex;
  align-items: center;
  max-width: 100%;
  width: 100%;
}
.section-image-with-content .container .d-flex .col.featured .featured-column-wrapper .standard-image-block {
  max-width: 100%;
}
.section-image-with-content .container .d-flex .col.featured .featured-column-wrapper .standard-image-block img {
  max-width: 100%;
}
.section-image-with-content .container .d-flex .col.featured .featured-column-wrapper .gallery-block {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 9px;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.3));
  overflow: hidden;
  justify-content: space-between;
}
.section-image-with-content .container .d-flex .col.featured .featured-column-wrapper .gallery-block img {
  flex: 1;
  border-radius: 15px;
  max-width: calc(50% - 9px);
  height: 228px;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-image-with-content .container .d-flex .col.featured .featured-column-wrapper .gallery-block img:first-child {
  max-width: 100% !important;
  flex: 1 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 320px;
}
.section-image-with-content .container .d-flex .col.featured .featured-column-wrapper .featured-image-block {
  border-radius: 12px;
  width: 100%;
}
.section-image-with-content .container .d-flex .col.featured .featured-column-wrapper .featured-image-block img {
  border-radius: 12px;
  filter: drop-shadow(20px 20px 0px #B29050);
  max-height: 437px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-image-with-content .container .d-flex .col.featured .featured-column-wrapper .bio-block {
  width: 50%;
  background-position: center;
  background-size: cover;
  border-radius: 12px;
  background-repeat: no-repeat;
  height: 318px;
  width: 318px;
  max-width: 50%;
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 22px;
  margin-right: 15px;
}
.section-image-with-content .container .d-flex .col.featured .featured-column-wrapper .bio-block:last-child {
  margin-right: unset;
}
.section-image-with-content .container .d-flex .col.featured .featured-column-wrapper .bio-block h3 {
  text-align: center;
  color: var(--white);
  background-color: rgba(28, 71, 103, 0.8);
  text-transform: uppercase;
  font-size: 18px;
  line-height: 1.2;
  padding: 10px 30px;
  border-radius: 50px;
  margin: unset;
}
.section-image-with-content .container .d-flex .col.featured .featured-column-wrapper svg.massachusetts-map {
  max-width: 100%;
}
.section-image-with-content .container .d-flex .col.featured img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.section-image-with-content .container .d-flex .col.content {
  padding-left: 29px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}
.section-image-with-content .container .d-flex .col.content .check-list-ul {
  padding-left: unset;
  margin-top: 22px;
}
.section-image-with-content .container .d-flex .col.content .check-list-ul > li {
  margin-bottom: 16px;
  font-weight: 600;
  line-height: 1.3;
}
.section-image-with-content .container .d-flex .col.content .check-list-ul > li:last-child {
  margin-bottom: unset;
}
.section-image-with-content .container .d-flex .col.content .check-list-ul > li:before {
  content: "";
  position: relative;
  width: 10px;
  height: 10px;
  display: inline-block;
  background-image: url(/wp-content/uploads/2025/09/Vector-5.png);
  margin-right: 9px;
}
.section-image-with-content .container .d-flex .col.content .check-list-ul > li ul {
  margin-top: 16px;
  padding-left: 20px !important;
}
.section-image-with-content .container .d-flex .col.content .check-list-ul > li ul li {
  font-weight: 500;
}
.section-image-with-content .container .d-flex .col.content .check-list-ul > li ul li:before {
  position: relative;
  width: 5px;
  height: 5px;
  background-color: #B79556;
  border-radius: 500px;
  content: "";
  display: inline-block;
  margin-right: 8px;
}
.section-image-with-content .container .d-flex .col.content ul.list-ul {
  padding: 20px 0 0 20px;
}
.section-image-with-content .container .d-flex .col.content ul.list-ul li {
  list-style-type: disc;
  margin-bottom: 10px;
}
.section-image-with-content .container .d-flex .col.content ul.list-ul li:last-child {
  margin-bottom: unset;
}
.section-image-with-content .container .d-flex .col.content .top-title {
  margin-bottom: 2px;
}
.section-image-with-content .container .d-flex .col.content .site-btn {
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 50px;
}
.section-image-with-content .container .d-flex .col.content h5 {
  color: var(--primary-color);
  font-size: 20px;
  font-style: italic;
  margin: unset;
}
.section-image-with-content .container .d-flex .col.content h4 {
  margin: unset;
  background: linear-gradient(180deg, rgb(212, 182, 118), rgb(176, 140, 78));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 20px;
}
.section-image-with-content .container .d-flex .col.content .store-links a {
  display: inline-block;
}
.section-image-with-content .container .d-flex .col.content .store-links a:first-child {
  margin-right: 10px;
}
.section-image-with-content .container .d-flex.flex-reverse {
  flex-direction: row-reverse;
}
.section-image-with-content .container .d-flex.flex-reverse .content {
  padding-left: unset !important;
  padding-right: 29px;
}
.section-image-with-content .container .d-flex.flex-reverse .featured {
  padding-right: unset !important;
  padding-left: 29px;
  justify-content: end;
}

.section-single-column {
  padding: 76px 20px 58px;
}
.section-single-column .container .section-title {
  margin-bottom: 18px;
}
.section-single-column .container .top-title {
  width: 100%;
  text-align: center;
  display: inline-block;
}
.section-single-column .container .contents-layout h1, .section-single-column .container .contents-layout h2, .section-single-column .container .contents-layout h3, .section-single-column .container .contents-layout h4, .section-single-column .container .contents-layout h5, .section-single-column .container .contents-layout h6, .section-single-column .container .contents-layout p {
  text-align: center;
}
.section-single-column .container .contents-layout .icon-columns-block {
  margin-top: 32px;
  margin-bottom: 52px;
}
.section-single-column .container .contents-layout .icon-columns-block .columns-wrapper {
  display: flex;
  margin: 0 -9px;
}
.section-single-column .container .contents-layout .icon-columns-block .columns-wrapper .icon-column {
  width: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  border: 1px solid var(--brown-border-color);
  padding: 24px;
  margin: 0 9px;
  border-radius: 5.67px;
  transition: all 0.3s;
  background: var(--white);
  text-align: center;
}
.section-single-column .container .contents-layout .icon-columns-block .columns-wrapper .icon-column:hover {
  filter: drop-shadow(2px 4px 7px rgba(176, 140, 78, 0.5));
}
.section-single-column .container .contents-layout .icon-columns-block .columns-wrapper .icon-column .icon-wrapper {
  width: 72.6px;
  height: 72.6px;
  border: 1px solid var(--grey-icon-border);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 500px;
  margin-bottom: 19px;
}
.section-single-column .container .contents-layout .icon-columns-block .columns-wrapper .icon-column p {
  font-size: 12.87px;
  font-weight: 600;
  margin: unset;
}
.section-single-column .container .contents-layout .content-block h4 {
  margin: unset;
  font-size: 20px;
  color: var(--primary-color);
}
.section-single-column .container .contents-layout .content-block p {
  margin-top: unset;
  margin-left: 89px;
  margin-right: 89px;
}

.section-map {
  padding: 50px 0;
}
.section-map #map {
  height: 600px;
  width: 100%;
  margin-top: 10px;
}
.section-map #map .leaflet-pane .map-pin-popup {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-map #map .leaflet-pane .map-pin-popup .site-btn {
  font-size: 12px;
  padding: 10px 20px;
  margin-top: 10px;
  color: #fff !important;
}
.section-map #map .leaflet-pane .leaflet-marker-pane img {
  width: 31px !important;
}
.section-map #search-container {
  margin-bottom: 10px;
  text-align: right;
  padding: 0 50px;
}
.section-map #search-box {
  padding: 7px 8px;
  width: 300px;
}
.section-map #search-button {
  padding: 8px 12px;
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  border-width: 1px;
  transition: all 0.3s;
}
.section-map #search-button:hover {
  background-color: var(--white);
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.section-map .container {
  max-width: 1240px;
}
.section-map .container .location-list-filter #state-filter {
  padding: 10px 20px;
  width: calc(100% - 28px);
  margin: 40px 0 0;
  color: var(--primary-color);
  background-color: var(--white);
  border-radius: 5px;
  border: 1px solid var(--primary-color);
  font-size: 20px;
}
.section-map .container .location-list-wrapper {
  -moz-column-count: 3;
       column-count: 3;
  padding-top: 40px;
}
.section-map .container .location-list-wrapper .location-state {
  margin-bottom: 20px;
  -moz-column-break-inside: avoid;
       break-inside: avoid-column;
}
.section-map .container .location-list-wrapper .location-state h2 {
  margin: unset;
  font-size: 20px;
  padding: 10px 30px;
  background-color: var(--primary-color);
  color: var(--white);
}
.section-map .container .location-list-wrapper .location-state .location-list {
  padding: 20px;
  background-color: var(--white);
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.3));
  border-radius: 5px;
}
.section-map .container .location-list-wrapper .location-state .location-list .location-item {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #B9975A;
  padding: 15px 0;
}
.section-map .container .location-list-wrapper .location-state .location-list .location-item:first-child {
  border-top: unset;
  padding-top: unset;
}
.section-map .container .location-list-wrapper .location-state .location-list .location-item .page-link h3 {
  margin-top: unset;
  background: linear-gradient(180deg, rgb(212, 182, 118), rgb(176, 140, 78));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 18px;
  margin-bottom: 10px;
}
.section-map .container .location-list-wrapper .location-state .location-list .location-item .page-link:hover h3 {
  background: linear-gradient(180deg, rgb(0, 0, 0), rgb(0, 0, 0));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.section-map .container .location-list-wrapper .location-state .location-list .location-item .page-link span {
  margin-bottom: 10px;
}
.section-map .container .location-list-wrapper .location-state .location-list .location-item .page-link span:last-child {
  margin-bottom: unset;
}
.section-map .container .location-list-wrapper .location-state .location-list .location-item a {
  color: var(--primary-color);
  font-weight: 500;
}

.html-block .massachusetts-map path {
  transition: all 0.3s;
  cursor: pointer;
}

.html-block .massachusetts-map path:hover {
  fill: #b39151;
}

.section-form {
  padding: 98px 20px 92px;
}
.section-form .container .section-title {
  margin-bottom: 40px;
}
.section-form .container .columns-wrapper {
  display: flex;
  margin: 0 -12px;
}
.section-form .container .columns-wrapper .col {
  width: calc(33.33% - 24px);
  margin: 0 12px;
  height: inherit;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
}
.section-form .container .columns-wrapper .col.featured-column {
  border-radius: 6px;
  overflow: hidden;
}
.section-form .container .columns-wrapper .col.featured-column img {
  width: 100%;
  height: 381px;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-form .container .columns-wrapper .col.featured-column .heading-wrapper {
  display: inline-flex;
  width: calc(100% - 120px);
  text-align: center;
  height: 95px;
  align-items: center;
  justify-content: center;
  background-image: url(/wp-content/uploads/2025/09/Group-31.jpg);
  padding: 0 60px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: -5px;
}
.section-form .container .columns-wrapper .col.featured-column .heading-wrapper h3 {
  margin: unset;
  font-size: 25px;
  color: var(--white);
}
.section-form .container .columns-wrapper .col.featured-column .content-wrapper {
  padding: 32px 43px 48px;
  min-height: 206px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  background: var(--white);
}
.section-form .container .columns-wrapper .col.featured-column .content-wrapper ul {
  padding: unset;
}
.section-form .container .columns-wrapper .col.featured-column .content-wrapper ul li {
  list-style-type: disc;
  margin-bottom: 5px;
}
.section-form .container .columns-wrapper .col.featured-column .content-wrapper p {
  margin: unset;
  font-weight: 500;
  text-align: center;
}
.section-form .container .columns-wrapper .col.featured-column .content-wrapper .site-btn {
  padding: 10px 20px;
}
.section-form .container .columns-wrapper .form-column {
  padding: 36px 40px 47px;
  background: #F3F3F3;
  height: inherit;
}
.section-form .container .columns-wrapper .form-column .form-column-header {
  padding-bottom: 13px;
  border-bottom: 1px solid #B9975A;
}
.section-form .container .columns-wrapper .form-column .form-column-header h3 {
  font-size: 30px;
  line-height: 1.45;
  color: var(--primary-color);
  text-align: center;
  margin: unset;
}
.section-form .container .columns-wrapper .form-column .form-column-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: 22px;
}
.section-form .container .columns-wrapper .form-column .form-column-link img {
  margin-right: 17px;
}
.section-form .container .columns-wrapper .form-column .form-column-link a {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-color);
}
.section-form .container .columns-wrapper .form-column form {
  display: flex;
  flex-direction: column;
}
.section-form .container .columns-wrapper .form-column form input {
  height: 56px;
  border: 1px solid var(--grey-icon-border);
}
.section-form .container .columns-wrapper .form-column form textarea {
  border: 1px solid var(--grey-icon-border);
  height: 128px;
}
.section-form .container .columns-wrapper .form-column form .gfield_required {
  display: none;
}
.section-form .container .columns-wrapper .form-column form .gfield {
  position: relative;
}
.section-form .container .columns-wrapper .form-column form .gfield label.gfield_label {
  font-size: 12px !important;
  color: #6A6A6A !important;
  font-weight: 600 !important;
  position: absolute;
  margin-bottom: unset;
  top: 8px;
  left: 10px;
}
.section-form .container .columns-wrapper .form-column form .gform_fields {
  grid-column-gap: 17px;
  grid-row-gap: 17px;
}
.section-form .container .columns-wrapper .form-column form .gfield--type-checkbox legend, .section-form .container .columns-wrapper .form-column form .gfield--type-checkbox label {
  color: #6A6A6A !important;
}
.section-form .container .columns-wrapper .form-column form .gform_footer {
  padding: unset !important;
  margin-top: auto;
}
.section-form .container .columns-wrapper .form-column form .gform_footer input {
  margin-bottom: unset;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  background: var(--secondary-color) !important;
  border-radius: 500px;
  height: -moz-fit-content;
  height: fit-content;
  padding: 10px 50px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  text-transform: uppercase;
  width: 100%;
  margin-top: 42px;
  cursor: pointer;
}
.section-form .container .columns-wrapper .form-column form .gform_footer input:hover {
  background: var(--primary-color) !important;
}
.section-form .container .columns-wrapper .form-column form .gfield_checkbox input {
  width: 20px;
}
.section-form .container .columns-wrapper .form-column form .gchoice label {
  font-size: 12px !important;
}

.packages-featured-columns {
  background-color: #f5f6f7;
}
.packages-featured-columns .featured-column .content-wrapper {
  justify-content: start !important;
  min-height: 172px !important;
}
.packages-featured-columns .content p {
  text-align: center;
  margin-bottom: 20px;
}

.puppy-training-packages-section .featured-column .content-wrapper {
  min-height: 90px !important;
}

.grey-bg-form-section {
  background-color: #f5f6f7;
}
.grey-bg-form-section .columns-wrapper {
  justify-content: center;
}
.grey-bg-form-section .content p {
  text-align: center;
}

.popmake-overlay {
  background-color: rgba(255, 255, 255, 0.5) !important;
}
.popmake-overlay .popmake {
  background-color: transparent !important;
  box-shadow: unset !important;
}
.popmake-overlay .popmake .columns-wrapper {
  justify-content: center;
}
.popmake-overlay .popmake .columns-wrapper .col {
  width: 500px;
}
.popmake-overlay .popmake-close {
  background-color: #1C4767 !important;
}

.section-cta {
  position: relative;
  padding: 51px 20px 41px;
}
.section-cta:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #1C4767;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.9;
}
.section-cta .container {
  position: relative;
}
.section-cta .container .section-title {
  background: linear-gradient(180deg, rgb(212, 182, 118), rgb(176, 140, 78));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
}
.section-cta .container p.content {
  text-align: center;
  color: var(--white);
  margin: unset;
  padding: 0 47px;
}
.section-cta .container .links-container {
  display: flex;
  justify-content: center;
  margin-top: 21px;
}
.section-cta .container .links-container a {
  margin: 0 10px;
}

.section-services {
  padding: 61px 20px 71px;
}
.section-services .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-services .container span.top-title {
  margin-bottom: 20px;
}
.section-services .container p {
  margin: 20px 0 0;
  text-align: center;
}
.section-services .container .services {
  display: flex;
  flex-wrap: wrap;
  margin: 52px -25px 27px;
}
.section-services .container .services .service {
  flex: 1 calc(33.33% - 50px);
  position: relative;
  min-height: 434px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 6px;
  margin: 0 25px 27px;
  overflow: hidden;
}
.section-services .container .services .service .hover-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: calc(100% - 94px);
  opacity: 0;
  transition: all 0.3s;
  background-color: rgba(8, 37, 65, 0.78);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 47px;
}
.section-services .container .services .service .hover-wrapper p, .section-services .container .services .service .hover-wrapper a {
  color: var(--white);
  text-align: center;
}
.section-services .container .services .service .hover-wrapper p {
  margin: unset;
}
.section-services .container .services .service .hover-wrapper a {
  margin: 0 auto;
  text-decoration: underline;
  font-size: 20px;
  font-weight: 500;
  margin-top: 34px;
}
.section-services .container .services .service .hover-wrapper h3 {
  background: linear-gradient(180deg, rgb(212, 182, 118), rgb(176, 140, 78));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 30px;
  text-align: center;
  margin: 0 0 25px;
}
.section-services .container .services .service .non-hover-wrapper {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: center;
  transition: all 0.3s;
  opacity: 1;
  background: linear-gradient(180deg, rgba(28, 71, 103, 0) 0%, rgba(28, 71, 103, 0.68) 100%);
}
.section-services .container .services .service .non-hover-wrapper h3 {
  color: var(--white);
  font-size: 30px;
  text-align: center;
  padding: 0 20px;
}
.section-services .container .services .service.no-description {
  min-height: 300px;
}
.section-services .container .services .service:hover .hover-wrapper {
  opacity: 1;
}
.section-services .container .services .service:hover .non-hover-wrapper {
  opacity: 0;
}
@media (min-width: 1501px) {
  .section-services.column-count-4 .services .service {
    flex: 1 calc(25% - 50px) !important;
    max-width: calc(25% - 50px);
  }
}
@media (max-width: 1500px) and (min-width: 1201px) {
  .section-services.column-count-4 .services .service {
    flex: 1 calc(33.33% - 50px) !important;
    max-width: calc(33.33% - 50px);
  }
}
@media (max-width: 1200px) and (min-width: 768px) {
  .section-services.column-count-4 .services .service {
    max-width: calc(33.33% - 20px);
  }
}

.section-reviews {
  padding: 54px 20px;
}
.section-reviews .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section-reviews .container .section-title {
  margin-bottom: 30px;
}
.section-reviews .container .site-btn {
  margin-top: 20px;
}

.map-section {
  padding: 37px 20px;
}

.footer-section {
  padding: unset;
  background-color: unset;
}
.footer-section .main-footer {
  background-color: var(--primary-color);
  padding: 60px 20px 66px;
}
.footer-section .main-footer .container {
  display: flex;
}
.footer-section .main-footer .container .col {
  flex: 1;
}
.footer-section .main-footer .container .col.logo-col {
  max-width: 391px;
}
.footer-section .main-footer .container .col.logo-col .social-links {
  padding-left: unset;
  justify-content: center;
  margin: 43px 0;
}
.footer-section .main-footer .container .col.logo-col .social-links li {
  margin: 0 10px;
}
.footer-section .main-footer .container .col.logo-col .social-links li a img {
  filter: brightness(0) invert(1);
}
.footer-section .main-footer .container .col h3 {
  font-size: 22px;
  background: linear-gradient(180deg, rgb(212, 182, 118), rgb(176, 140, 78));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
  text-align: left;
}
.footer-section .main-footer .container .col nav ul {
  padding: unset;
}
.footer-section .main-footer .container .col nav ul li {
  text-align: left;
  margin-bottom: 15px;
}
.footer-section .main-footer .container .col nav ul li a {
  font-size: 18px;
  color: var(--white);
  font-weight: 500;
  transition: all 0.3s;
}
.footer-section .main-footer .container .col nav ul li a:hover {
  color: rgb(176, 140, 78);
}
.footer-section .main-footer .container .col nav #menu-quick-links {
  -moz-column-count: 2;
       column-count: 2;
}
.footer-section .main-footer .container .col nav #menu-training-programs {
  -moz-column-count: 2;
       column-count: 2;
}
.footer-section .main-footer .container .col.quick-links-col {
  padding-left: 114px;
}
.footer-section .main-footer .container .col.training-program-col .footer-btn {
  font-size: 26px;
  font-weight: 700;
  color: white;
  display: flex;
  transition: all 0.3s;
}
.footer-section .main-footer .container .col.training-program-col .footer-btn:hover {
  color: #B29050;
}
.footer-section .main-footer .container .col.training-program-col .footer-btn img {
  margin-right: 17px;
}
.footer-section .footer-bottom {
  background: var(--secondary-color);
  padding: 15px 20px;
}
.footer-section .footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-section .footer-bottom .container .col {
  height: -moz-fit-content;
  height: fit-content;
  width: 20%;
}
.footer-section .footer-bottom .container .col:nth-child(2) {
  width: 60%;
}
.footer-section .footer-bottom .container .col a {
  font-size: 20px;
  color: var(--white) !important;
}
.footer-section .footer-bottom .container .col a:hover {
  color: var(--primary-color) !important;
}
.footer-section .footer-bottom .container .col p {
  margin: unset;
}

.our-training-different-section .content h2.section-title {
  margin-bottom: 20px;
}
.our-training-different-section .content p {
  margin-top: 10px;
  font-size: 18px;
}

.banner-content-section {
  padding: 120px 30px;
}
.banner-content-section .container .page-title {
  color: #000;
  text-align: center;
}
.banner-content-section .container .page-subtitle {
  color: #000;
  text-align: center;
  margin-bottom: 30px;
}
.banner-content-section .container .site-btn {
  max-width: 200px;
  margin: 30px auto 0;
}

.training-page-columns-section .icon-column h4 {
  margin-top: unset !important;
}

.rmp-container {
  height: 100vh !important;
}

.our-services-north-shore-page {
  padding-top: unset !important;
  padding-bottom: unset !important;
}
.our-services-north-shore-page .services {
  margin-top: unset !important;
}

.section-single-column.our-services-north-shore {
  padding-bottom: unset !important;
}

.featured-image-limit img {
  max-height: 595px !important;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-process.our-training-section {
  padding-top: unset;
}

@media (max-width: 1800px) and (min-width: 768px) {
  .our-training-section.section-process .processes .col .col-heading {
    min-height: 15%;
  }
  .our-training-section.section-process .processes {
    min-height: 330px;
  }
}
@media (min-width: 768px) {
  .section-process.our-training-section .processes .col {
    width: 25%;
  }
}
@media (max-width: 1546px) {
  header .bottom-header .container nav ul.main-menu > li > a {
    font-size: 14px;
    padding: 0 9px;
  }
  header .bottom-header .container nav ul.main-menu {
    height: 58px;
  }
  header .main-header .container .social-links .site-btn {
    font-size: 22px;
  }
  .footer-section .main-footer .container .col.quick-links-col {
    padding-left: 60px;
  }
  .footer-section .main-footer .container .col nav ul li a {
    font-size: 16px;
  }
  .site-btn {
    font-size: 18px;
  }
  .section-services .container .services {
    margin: 52px -20px 27px;
  }
  .section-services .container .services .service {
    margin: 0 15px 30px;
  }
}
@media (max-width: 1440px) {
  .footer-section .footer-bottom p {
    font-size: 12px;
  }
  .footer-section .main-footer .container .col.training-program-col .footer-btn {
    font-size: 22px;
    align-items: center;
  }
  .section-form .container .columns-wrapper .col.form-column .form-column-header h3 {
    font-size: 20px;
  }
  .section-form .container .columns-wrapper .col.form-column form .gform_footer input {
    font-size: 18px;
    margin-top: 55px;
  }
  .footer-section .main-footer .container .col.logo-col {
    max-width: 300px;
  }
  .footer-section .footer-bottom .container .col a {
    font-size: 12px;
    color: var(--white) !important;
  }
}
@media (max-width: 1366px) {
  .footer-section .main-footer .container .col.quick-links-col {
    padding-left: 40px;
  }
  header .main-header {
    padding-bottom: 15px;
  }
  header .logo-col img {
    max-width: 100%;
  }
}
@media (max-width: 1200px) and (min-width: 1024px) {
  header .bottom-header .container nav ul.main-menu > li > a, header .bottom-header .container nav ul.main-menu > li > ul.sub-menu li a {
    font-size: 11px;
  }
}
@media (max-width: 1200px) {
  header .main-header .container .social-links .site-btn {
    font-size: 17px;
    padding: 7px 20px;
  }
  .section-hero-banner {
    height: 520px;
  }
  .page-title {
    font-size: 55px;
  }
  .page-subtitle {
    font-size: 25px;
  }
  .section-title {
    font-size: 30px;
  }
  .section-process .processes .col .col-body {
    padding: 24px 30px;
    font-size: 16px;
  }
  .section-process .processes .col .col-heading h3 {
    font-size: 20px;
  }
  p {
    font-size: 16px;
  }
  .site-btn {
    font-size: 17px;
  }
  .section-single-column .container .contents-layout .icon-columns-block .columns-wrapper {
    flex-wrap: wrap;
  }
  .section-single-column .container .contents-layout .icon-columns-block .columns-wrapper .icon-column {
    flex: 1 25%;
    margin-bottom: 20px;
  }
  .section-form .container .columns-wrapper .col.form-column .form-column-header h3 {
    font-size: 17px;
  }
  .section-form .container .columns-wrapper .col.form-column .form-column-link a {
    font-size: 17px;
  }
  .section-form .container .columns-wrapper .col.featured-column .heading-wrapper h3 {
    font-size: 15px;
  }
  .section-form .container .columns-wrapper .col.featured-column .content-wrapper {
    padding: 30px 20px 30px;
    min-height: 160px;
  }
  .section-form .container .columns-wrapper .col.featured-column .content-wrapper .site-btn {
    font-size: 12px;
  }
  .section-form .container .columns-wrapper .col.form-column form .gform_footer input {
    font-size: 12px;
    margin-top: 27px;
  }
  .section-form .container .columns-wrapper .col.form-column {
    padding: 36px 20px 30px;
  }
  .section-form {
    padding: 50px 20px 50px;
  }
  .section-image-with-content {
    padding: 50px 20px 50px;
  }
  .section-single-column {
    padding: 50px 20px 50px;
  }
  .section-process {
    padding-top: 50px;
  }
  .section-services {
    padding: 50px 20px 50px;
  }
  .section-services .container .services .service .hover-wrapper {
    width: calc(100% - 40px);
    padding: 0 20px;
  }
  .section-services .container .services .service .non-hover-wrapper h3 {
    font-size: 18px;
  }
  .section-services .container .services .service .hover-wrapper h3 {
    font-size: 20px;
  }
  .section-services .container .services .service .hover-wrapper a {
    font-size: 16px;
  }
  .section-services .container .services .service {
    flex: 1 calc(33.33% - 20px);
    position: relative;
    min-height: 434px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 6px;
    margin: 0 10px 20px;
    overflow: hidden;
  }
  .section-services .container .services {
    margin: 52px -10px 27px;
  }
  .section-image-with-content .container .d-flex .col.featured .featured-column-wrapper .featured-image-block img {
    max-width: 95%;
  }
  .section-single-column .container .contents-layout .icon-columns-block {
    margin-bottom: 20px;
  }
  .section-single-column .container .contents-layout .content-block p {
    margin-left: 0;
    margin-right: 0;
  }
  .footer-section .main-footer .container {
    flex-wrap: wrap;
  }
  .footer-section .main-footer .container .col.logo-col {
    max-width: 100%;
    flex: 1 100%;
    padding-bottom: 40px;
  }
  .footer-section .main-footer .container .col.logo-col .site-btn {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  .footer-section .main-footer .container .col.quick-links-col {
    padding-left: 0;
  }
  .footer-section .main-footer {
    padding: 50px 20px 50px;
  }
  .section-image-with-content .container .d-flex .col.content {
    padding-left: 15px;
  }
  .section-image-with-content .container .d-flex .col.featured {
    padding-right: 15px;
  }
  .section-image-with-content .container .d-flex.flex-reverse .featured {
    padding-left: 15px;
  }
  .section-image-with-content .container .d-flex.flex-reverse .content {
    padding-right: 15px;
  }
  .section-form .container .columns-wrapper .col.featured-column .heading-wrapper {
    width: calc(100% - 40px);
    padding: 0 20px;
  }
}
@media (max-width: 1024px) {
  .section-image-with-content .container .d-flex .col.featured .featured-column-wrapper .bio-block {
    height: 265px;
    padding: 22px 15px;
  }
  .section-image-with-content .container .d-flex .col.featured .featured-column-wrapper .bio-block h3 {
    font-size: 12px;
    padding: 10px 24px;
  }
}
@media (max-width: 992px) {
  .page-title {
    font-size: 45px;
  }
  .section-process .processes .col .col-body {
    padding: 20px 10px;
    font-size: 14px;
    height: -webkit-fill-available;
  }
  .section-process .processes .col .col-heading h3 {
    font-size: 16px;
  }
  .section-image-with-content .container .d-flex {
    flex-direction: column-reverse;
  }
  .section-image-with-content .container .d-flex .col {
    width: 100%;
  }
  .section-image-with-content .container .d-flex .col.featured {
    padding-right: 0;
  }
  .section-image-with-content .container .d-flex .col.content {
    padding-left: 0;
    padding-bottom: 40px;
  }
  .section-image-with-content .container .d-flex.flex-reverse {
    flex-direction: column-reverse;
  }
  .section-image-with-content .container .d-flex.flex-reverse .featured {
    padding-left: unset;
    justify-content: center;
  }
  .section-form .container .columns-wrapper {
    flex-direction: column;
  }
  .section-form .container .columns-wrapper .col {
    width: 100%;
    margin: unset;
    margin-bottom: 30px;
  }
  .section-form .container .columns-wrapper .col:last-child {
    margin-bottom: unset;
  }
  .section-form .container .columns-wrapper {
    margin: 0;
  }
  .section-form .container .columns-wrapper .col.form-column {
    width: calc(100% - 40px);
  }
  .section-process .section-title {
    margin-bottom: 30px;
  }
  .footer-section .main-footer .container .col {
    flex: 1 100%;
  }
  .footer-section .main-footer .container .col.quick-links-col {
    margin-bottom: 30px;
  }
  header .main-header .container .col.logo-col {
    max-width: 20%;
  }
  header .main-header .container .social-links .site-btn {
    font-size: 15px;
  }
  .site-btn {
    font-size: 15px;
  }
  header .bottom-header {
    display: none;
  }
  header .main-header {
    padding-bottom: 0;
  }
  header .mobile-toggle {
    display: block;
  }
  .rmp-container .rmp-menu-title .rmp-menu-title-image {
    width: 80%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .footer-section .footer-bottom .container {
    flex-direction: column;
  }
  .footer-section .footer-bottom .container .col {
    width: 100% !important;
  }
  .section-services .container .services .service.no-description {
    min-height: 210px;
  }
  .section-image-with-content .container .d-flex .col.featured .featured-column-wrapper .featured-image-block img {
    max-width: 70%;
  }
  .section-image-with-content .container .d-flex .col.featured .featured-column-wrapper .featured-image-block {
    text-align: center;
  }
  .section-image-with-content .store-links {
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  header .main-header .container .social-links ul {
    display: none;
  }
  header .main-header .container .social-links .site-btn {
    font-size: 12px;
  }
  header .main-header .container .social-links .site-btn img {
    max-width: 24px;
  }
  .page-title {
    font-size: 27px;
  }
  .page-subtitle {
    font-size: 18px;
  }
  .top-title {
    font-size: 14px;
  }
  .section-image-with-content .container .d-flex.flex-reverse .content {
    padding-right: 0;
  }
  .section-hero-banner .container .btn-group {
    flex-direction: column;
  }
  .section-hero-banner {
    height: 450px;
  }
  .section-hero-banner .container .btn-group .site-btn {
    max-width: 100%;
    width: calc(80% - 60px);
  }
  .section-hero-banner .container .btn-group .site-btn:first-child {
    margin-bottom: 20px;
  }
  .section-inner-page-banner {
    padding: 80px 30px 45px;
  }
  .section-hero-banner .container {
    padding: 50px 20px 70px;
  }
  .section-process .processes {
    flex-wrap: wrap;
  }
  .section-process .processes .col {
    flex: 1 50%;
  }
  .section-image-with-content .container .d-flex .col.featured .featured-column-wrapper {
    flex-direction: column;
  }
  .section-image-with-content .container .d-flex .col.featured .featured-column-wrapper {
    width: 100%;
  }
  .section-image-with-content .container .d-flex .col.featured .featured-column-wrapper .bio-block {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .section-image-with-content .container .d-flex .col.featured .featured-column-wrapper .bio-block:last-child {
    margin-bottom: unset;
  }
  .section-cta .container .links-container {
    flex-direction: column;
  }
  .section-cta .container .links-container a {
    text-align: center;
  }
  .section-services .container .services .service {
    flex: 1 100%;
  }
  .section-services .container .services .service:last-child {
    margin-bottom: unset;
  }
  .section-form .container .columns-wrapper .col.featured-column img {
    height: 300px;
  }
  .section-cta .container .links-container img {
    max-width: 110px;
  }
  .section-cta .container p.content {
    padding: 0;
  }
  .section-image-with-content .container .d-flex .col.content .store-links a:first-child {
    margin-right: 0;
  }
  .section-image-with-content .store-links img {
    max-width: 110px;
  }
  .section-image-with-content .container .d-flex .col.featured .featured-column-wrapper .featured-image-block img {
    max-width: 90%;
    margin-right: 20px;
  }
  .section-services .container .services {
    margin: 52px -10px 0;
  }
  .footer-section .main-footer .container .col nav #menu-training-programs {
    -moz-column-count: 1;
         column-count: 1;
  }
  .footer-section .main-footer .container .col nav #menu-quick-links {
    -moz-column-count: 1;
         column-count: 1;
  }
  .footer-section .main-footer .container .col.logo-col > a > img {
    max-width: 70%;
  }
  .footer-section .main-footer .container .col.logo-col .social-links {
    margin: 30px 0;
  }
  .footer-section .main-footer .container .col.logo-col {
    padding-bottom: 30px;
  }
  .footer-section .main-footer .container .col.training-program-col .footer-btn {
    font-size: 20px;
    align-items: center;
  }
  .footer-section .main-footer .container .col.quick-links-col {
    margin-bottom: 20px;
  }
  .footer-section .footer-bottom p {
    font-size: 12px;
  }
  .section-image-with-content .store-links {
    display: flex;
    flex-direction: column;
  }
  .section-title {
    font-size: 22px;
  }
  .footer-section .footer-bottom .container {
    align-items: center;
    flex-direction: column;
  }
  .section-image-with-content .container .d-flex .content p:last-child {
    margin-bottom: unset;
  }
}/*# sourceMappingURL=style.css.map */


/* Lead form Serviceminder section */
.serviceminder-section {
    padding: 50px 20px;
}
.serviceminder-section form {
    padding: 36px 30px 47px;
    background: #F3F3F3;
    margin-top: 50px;
}
.serviceminder-section form input, .serviceminder-section form select {
    height: 45px;
    padding: 0 10px;
    border: 1px solid #C1C3C5;
}
.serviceminder-section form textarea {
    height: 100px;
    border: 1px solid #C1C3C5;
}
.serviceminder-section form label {
    font-size: 12px !important;
    color: #6A6A6A !important;
    font-weight: 600 !important; 
    margin-bottom: 5px;
}
.serviceminder-section .container {
    max-width: 500px;
}
.serviceminder-section .container form h2.form-title {
    font-size: 30px;
    line-height: 1.45;
    color: var(--primary-color);
    text-align: center;
    margin: 0;
    padding-bottom: 13px;
    border-bottom: 1px solid #B9975A;
}

.serviceminder-section .form-column-link a {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-block;
}

.serviceminder-section .form-column-link {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
}
.serviceminder-section .form-column-link img {
  margin-right: 10px;
}

.serviceminder-section form .form-row {
    display: flex;
    flex-wrap: wrap;
}
.serviceminder-section form .form-row .form-col {
    flex: 1;
    flex-direction: column;
    display: flex;
    padding: 10px;
}
.serviceminder-section form .form-row.single-field {
    flex-direction: column;
    padding: 10px;
}
.serviceminder-section form .form-row.single-field .flex {
    display: flex;
}

.serviceminder-section form .form-row.single-field .flex input[type="checkbox"] {
  margin-right: 10px;
}

span.required {
    color: red;
}

.serviceminder-section form input[type="submit"] {
    font-size: 22px;
    font-weight: 700;
    color: #ffff;
    background: linear-gradient(180deg, rgba(212, 182, 118, 1) 0%, rgba(176, 140, 78, 1) 100%) !important;
    border-radius: 500px;
    height: -moz-fit-content;
    height: fit-content;
    padding: 10px 50px !important;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    transition: all 0.3s; 
    text-transform: uppercase;
    width: fit-content;
    cursor: pointer;
    border: unset;
    margin: 0 auto;
    transition: all 0.3s;
} 

.serviceminder-section form input[type="submit"]:hover {
    background: #1C4767!important; 
}

/* Serviceminder popup */
.pum .pum-content .serviceminder-section .contents-layout {
    position: relative;
}  

.pum .pum-content .serviceminder-section .contents-layout .close-pum-mdl {
    position: absolute;
    top: 18px;
    right: 20px;
    color: #fff;
    background-color: #1C4767;
    display: inline-block;
    padding: 5px 8px;
    font-size: 16px;
    line-height: 1;
    border-radius: 3px;
    cursor: pointer;
}

.pum-container button.pum-close.popmake-close {
    opacity: 0;
}

@media (max-width: 1200px) {  
    .serviceminder-section form input[type="submit"] {
        font-size: 17px;
    }
}
@media (max-width: 992px) { 
    .serviceminder-section form input[type="submit"] {
        font-size: 15px;
    }
}
@media (max-width: 768px) {
    .serviceminder-section form input[type="submit"] {
        font-size: 12px;
    }
    .serviceminder-section form {
        padding: 25px 10px 30px;
        margin-top: 50px;
    }
}

@media (max-width: 767px) {
  .section-hero-banner .banner-slider {
      display: none;
  }
  .section-hero-banner {
    background-image: url(https://omdogtrain.viewourdesign.info/wp-content/uploads/2025/09/banner-image.webp);
    background-size: cover;
    background-position: 16% 100%;
  }
  .mobile-toggle a.nav-logo {
      padding: 0 30px; 
      margin-bottom: 20px;
  }
  .mobile-toggle amp-sidebar {
      background-color: #fff !important;
  }
  .mobile-toggle #sidebar #menu-main-menu {
      padding: 0 15px;
  }
  .mobile-toggle #sidebar #menu-main-menu li a {
      font-size: 14px;
      color: #000;
      padding: 5px 0;
      display: inline-block;
  }
  .mobile-toggle #sidebar #menu-main-menu ul.sub-menu {
      padding: 10px 10px;
      background: #ededed;
      margin-top: 10px;
      margin-bottom: 10px;
      margin-left: 10px;
  }
  .mobile-toggle #sidebar #menu-main-menu li {
      text-align: left;
  }
  header .main-header button.burger-menu {
      margin-bottom: 0;
      margin-top: 0;
      margin-right: 0;
  }
  .mobile-toggle #sidebar #menu-main-menu li.current-menu-item {
      color: #d3b47b!important;
  } 
}