/**@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);
}
/**AMP*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

#amp-back-to-top {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 999;
    background: var(--primary-color);
	 border: 1px solid var(--white);
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 50px;
       border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
	display: flex;
    align-items: center;
    justify-content: center;
}

#amp-back-to-top:hover {
    background: #444;
}
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}
.lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}
amp-lightbox{
	overflow-y:scroll;
}
.lightbox-close{
	position: absolute;
    top: 160px;
    right: 50px;
    font-size: 20px;
    cursor: pointer;
    color: #fff;
    transition: 0.2s;
    background: #104263;
    border-radius:50%;
    width: 25px;
    height: 25px;
    text-align: center;
	display: flex;
    align-items: center;
    justify-content: center;
	border:none;
}
button{
	border:none !important;
}
/**END HERE----*/
#contactModal {
    display: none; 
	z-index:99999;
	overflow-y:scroll;
	overflow-x:clip;
}
/* Modal Overlay */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.modal-box {
	position:relative;
    width: auto;
    animation: fadeUp 0.35s ease;
}
.close-btn {
    position: absolute;
    top: 110px;
    right: 25px;
    font-size: 25px;
    cursor: pointer;
    color: #fff;
    transition: 0.2s;
    background: #104263;
    border-radius:50%;
    width: 30px;
    height: 30px;
    text-align: center;
	display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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: 50px;
  color: var(--white);
  margin: unset;
  line-height: 114%;
}

.page-subtitle {
  font-size: 20px;
  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: 40px;
  height: 40px;
  background-image: url(/wp-content/uploads/2025/09/triangle-up-svgrepo-com.png);
  top: 26%;
  right: 0px;
  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;
}

.header .menu-main-menu-container .menu-item-has-children ul.sub-menu ul.sub-menu {
    padding: 0;
    background: linear-gradient(180deg, rgba(212, 182, 118, 1) 0%, rgba(176, 140, 78, 1) 100%);
}
.header .menu-main-menu-container .menu-item-has-children ul.sub-menu ul.sub-menu li {
    background-color: unset !important;
}
.header .menu-main-menu-container .menu-item-has-children ul.sub-menu ul.sub-menu li a {
    font-size: 11px !important;
}
.header .menu-main-menu-container ul#menu-main-menu .menu-item-has-children ul.sub-menu .menu-item-has-children ul.sub-menu {
    height: 0px;
    overflow: hidden;
    transition: all .3s;
    position: absolute;
    left: 100%;
    /* top: 0; */ 
    top: 19%;
}
.header .menu-main-menu-container ul#menu-main-menu .menu-item-has-children ul.sub-menu .menu-item-has-children:hover ul.sub-menu {
    height: fit-content !important;

}
/* .header .menu-main-menu-container ul#menu-main-menu .menu-item-has-children ul.sub-menu .menu-item-has-children {
  position: relative;
} */
.header .menu-main-menu-container ul#menu-main-menu .menu-item-has-children ul.sub-menu .menu-item-has-children > a {
    display: inline-flex;
}
.header .menu-main-menu-container ul#menu-main-menu .menu-item-has-children ul.sub-menu .menu-item-has-children > a:after {
    position: relative;
    content: "";
    width: 25px;
    height: 16px;
    background-image: url(/wp-content/uploads/2025/09/triangle-up-svgrepo-com.png);
    background-position: center;
    background-size: 37%;
    background-repeat: no-repeat;
    transform: rotate(180deg);
    margin-left: 10px;
}
.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 .banner-slider .hero-slide {
    height: 100%;
}
.section-hero-banner .banner-slider .hero-slide amp-img {
    height: 100%;
    object-fit: cover;
}
.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-inner-page-banner .container .btn-group{
	justify-content:center;
	margin-top:50px;
}
.section-inner-page-banner .container .btn-group,
.section-hero-banner .container .btn-group {
  display: flex;
}
.section-inner-page-banner .container .btn-group .site-btn,
.section-hero-banner .container .btn-group .site-btn {
  min-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-right:30px;
  padding-left:30px;
  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;
  padding-bottom:105px;
  max-width: 1000px;
} 
.section-inner-page-banner .container .page-title {
  text-align: center;
  text-transform: uppercase;
}
.section-inner-page-banner .container p.subtitle {
  font-size: 20px;
  text-align: center;
  margin-top: 13px;
  margin-bottom: unset;
  color: var(--white);
}

.section-inner-page-banner.bg_top-aligned {
    background-position: center top;
} 

.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 .map-layout {
     width: 100%;
    height: 100%; 
}
.section-image-with-content .container .d-flex .col.featured .featured-column-wrapper .map-layout svg {
  overflow: hidden;
}
.section-image-with-content .container .d-flex .col.featured .featured-column-wrapper .map-layout svg path[h-ref]{
  transition: all 0.3s; 
}
.section-image-with-content .container .d-flex .col.featured .featured-column-wrapper .map-layout svg path[h-ref]:hover{
  fill: rgba(212, 182, 118, 1);
}
.section-image-with-content .container .d-flex .col.content h3 {
    color: rgb(212, 182, 118);
    font-size: 25px; 
    margin-bottom: unset;
}
.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%;
  border-radius: 12px; 
}
.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;
	list-style-type:none;
}
.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-image-with-content .container .location-row {
  padding: 30px 0 0 0;
}

.section-image-with-content .container .location-row .zip-codes-wrapper ul.lsp-pages {
    padding: unset;
    column-count: 4;
}
.section-image-with-content .container .location-row h3 {
  text-align: center;
  margin-bottom: 50px;
}

.section-image-with-content .container .location-row .zip-codes-wrapper ul.lsp-pages li {
    padding: 6px 5px; 
    line-height: 1.5em; 
    font-weight: 500;
}

.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;
  justify-content: space-between;
}
.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;
  max-width: 256px; 
}
.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 h4 {
  margin-top: unset;
}
.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 .accent-line-activated .columns-wrapper {
    background-image: url(/wp-content/uploads/2026/05/Vector-44-scaled.png);
    background-size: calc(60%);
    background-repeat: no-repeat;
    background-position: center;
} 
.section-single-column .content-block h4 em {
    color: #B29050;
}
.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-cta .container .link-buttons-container {
    display: flex;
    justify-content: center;
    padding: 28px 0 0;
} 

.section-cta .container .link-buttons-container .site-btn {
  margin: 0 13px;
  width: 50%!important;
  max-width: 467px; 
}

.section-cta .container .link-buttons-container .site-btn:nth-child(even) {
    background: transparent !important;
    border: 2px solid #B49253;
}


.section-cta .container .link-buttons-container .site-btn:hover:nth-child(even) {
    background: var(--secondary-color) !important; 
}

.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;
  width: 100%;
}
.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;
  max-width: calc(33.33% - 52px); 
}
.section-services.reversed-hover .service:hover p a {
    color: #fff;
} 
.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: 1500px) and (min-width: 1201px) {
  .section.section-inner-page-banner {
    height: 620px; 
  }
  header .bottom-header .container nav ul.main-menu > li.menu-item-has-children:before {
    top: 22%;
  }
  .page-title {
    font-size: 38px;
  }
}
@media (max-width: 1201px) and (min-width: 1024px) {
    .section-hero-banner {
        height: 720px;
    }
}
@media (max-width: 1200px) and (min-width: 768px) {
  .section.section-inner-page-banner {
    height: 420px;
  }
}
/* Header submenu */
@media (min-width: 993px) { 
  .header ul#menu-main-menu li#menu-item-382 > ul.sub-menu{
      column-count: 2;
      background-color: #1C4767;
      padding: 20px 0; 
  } 

  .header .menu-main-menu-container ul#menu-main-menu .menu-item-has-children ul.sub-menu .menu-item-3322:hover ul.sub-menu {
      /* min-height: 200px; */
      top: 50%;
  }
}
@media (max-width: 1200px) and (min-width: 993px) {
    .header ul#menu-main-menu li#menu-item-382 > ul.sub-menu {
        column-count: 3;
        background-color: #1C4767;
        padding: 20px 0;
        position: fixed;
        left: 20px;
    }
    header .bottom-header .container nav ul.main-menu > li.menu-item-has-children:before {
      top: 21%;
    }
    header .bottom-header .container nav ul.main-menu > li > ul.sub-menu li a {
        font-size: 12px;
        padding: 10px 5px;
    } 
} 
@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;
}

.section-lsp {
    padding: 50px 20px;
}
.section-lsp .container h2.section-title {
  margin-bottom: 30px;
}

/* .section-lsp .container .lsp-pages {
    padding: unset;
    display: flex;
    flex-wrap: wrap;
} */

.section-lsp .container .lsp-pages {
    padding: unset;
    column-count: 4;
}

/* .section-lsp .container .lsp-pages > li {
    flex: 1 25%;
    text-align: center;
    padding: 8px 12px;
    max-width: 23%;
    line-height: 1.5em;
} */

.section-lsp .container .lsp-pages > li {
    text-align: left; 
    padding: 8px 12px;
    line-height: 1.5em;
    font-weight: 500;
}

.section-lsp .container .lsp-pages > li a {
    color: #000 !important;
    transition: all 0.3s;
} 

.section-lsp .container .lsp-pages > li:hover a {
    color: rgba(176, 140, 78, 1) !important;
}

.section-lsp .container .lsp-pages > li a span.gold-text {
    color: rgba(176, 140, 78, 1);
}
/* From customizer */
.section-inner-page-banner h1.page-title {
    text-transform: capitalize;
}
.section-inner-page-banner .container .page-title {
    text-transform: none !important;
}
.banner-content-section .container .page-subtitle, .banner-content-section .container .page-title {
    color: #1C4767 !important;
}
.section-image-with-content .col.content a:not(.btn) {
    color: #1C4767;
    font-weight: 700;
}
.section-image-with-content .col.content a:not(.btn):hover {
    color: rgba(176, 140, 78, 1);
}
.section-image-with-content .col.content p a span {
    font-weight: 600 !important;
}
.page-id-9 form#gform_1 div#input_1_11 input {
    height: 20px;
}
.page-id-9 form#gform_1 .gchoice.gchoice_1_11_1 {
    display: flex;
}
.page-id-9 form#gform_1 .gchoice.gchoice_1_11_1 input {
    width: 40px;
    margin-right: 10px;
}
.page-id-9 form#gform_1 textarea {
    height: 100px;
}
.section-image-with-content .col.content p span {
    font-weight: 500 !important;
}
.section-image-with-content .content ul li a, .section-image-with-content .content ul li a span {
    font-weight: 500 !important;
}
.section-services.bg-grey {
    background-color: #f5f6f7;
}
.section-image-with-content .col.content p b {
    font-weight: 600;
}
.section-services .container p a {
    color : #1C4767;
}
.section-image-with-content .col.content table {
    width: 100%;
}
.section-services.reversed-hover .container .services .service .hover-wrapper {
    display: none;
}
.section-services.reversed-hover .container .services .service .non-hover-wrapper p {
    display: block !important;
    font-size: 18px;
    color: #000;
    padding: 0 20px;
    margin-top: unset;
}
.section-services.reversed-hover .container .services .service .non-hover-wrapper h3 {
    color: #1C4767;
}
.section-services.reversed-hover .container .services .service .non-hover-wrapper {
    justify-content: center;
    display: flex!important;
    opacity: 1!important;
    flex-direction: column;
    align-items: center;
    position: relative;
    background: unset;
}
.section-services.reversed-hover .container .services .service .non-hover-wrapper > * {
    position: relative;
    z-index: 1;
}
.section-services.reversed-hover .container .services .service .non-hover-wrapper:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #fff;
    opacity: 1;
    transition: all 0.3s;
}
.section-services.reversed-hover .container .services .service {
    flex: 1 calc(33.33% - 53px);
    border: 1px solid #000;
    position: relative;
}
.section-services.reversed-hover .container .services .service:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #1C4767;
    opacity: .8;
}
.section-services.reversed-hover .container .services .service .non-hover-wrapper:hover:before {
    opacity: 0;
}
.section-services.reversed-hover .container .services .service .non-hover-wrapper:hover p,  .section-services.reversed-hover .container .services .service .non-hover-wrapper:hover h3 {
    color: #fff !important;
}
.grey-bg {
    background-color: #f5f6f7;
}
.section-image-with-content .col.content ul li {
    list-style-type: disc;
    margin-bottom: 5px;
    font-weight: 500;
}
.section-image-with-content .col.content ul li a:hover{
    text-decoration: underline;
}
.section-image-with-content .col.content ul {
    padding-left: 18px;
    padding-top: 20px;
}
section.section.section-image-with-content .featured-column-wrapper, section.section.section-image-with-content .featured-column-wrapper .html-block {
    width: 100%;
}
.section-lsp .container .lsp-pages > li {
    text-align: left;
}
section.section.section-image-with-content .featured-column-wrapper .html-block iframe {
    width: 100%;
    aspect-ratio: 1 / 0.489;
}
span.text-gold {
    color: #c49406;
}
.page .section-inner-page-banner .container .page-title {
    text-transform: capitalize !important;
}
footer.footer-section .training-program-col .wrapper .site-btn {
    width: fit-content;
}
.section-services.reversed-hover.our-services-north-shore-page .container > p {
    margin-bottom: 20px;
} 
section.section.section-services.reversed-hover.our-services-north-shore-page {
    padding-top: 50px !important;
}
.section-image-with-content .col.content div, .section-image-with-content .col.content div table {
    width: 100%;
}
.section-image-with-content .col.content div table {
    margin-bottom: 20px;
}
header #menu-main-menu .sub-menu li {
    text-align: left;
}
header #menu-main-menu .sub-menu li a {
    width: 100%;
}

/* New landing page */
/* Header V2 section */
.btn-wrapper a {
    width: fit-content;
    margin: 0 auto;
}
.header-v2 .social-links {
  padding-left: unset;
  align-items: center;
}
.google-badge-wrapper a {
    display: inline-block;
}
.flex-wrap {
  flex: 1 100%;
  flex-wrap: wrap;
} 
.header-v2 .social-links .google-badge-wrapper img {
    max-width: 100%;
    width: 170px;
    margin-left: 20px;
}
.header-v2 .logo-col a {
  display: inline-block;
  width: fit-content;
}

.header-v2 .logo-col a img {
  width: 100%;
  max-width: 335px;
}

.header-v2 .container .col {
  width: 33.33%;
  display: flex;
  align-items: center;
} 

.header-v2 .btn-col .site-btn {
  max-width: 256px;
  padding-left: 20px;
  padding-right: 20px; 
  font-size: 27px;
}

.header-v2 .container .btn-col { 
  justify-content: end;
} 

.header-v2 .social-links li {
    margin-right: 17px;
}

.header-v2 .social-links li:last-child {
  margin-right: unset; 
} 

.header-v2 .logo-col {
    justify-content: center;
} 

.omdt-cm-landing .site-btn {
    font-size: 18px;
}

/* Landing page hero banner */
.section-image-with-content.bg-image-gr {
  position: relative;
}
.section-image-with-content.bg-image-gr:before {
  background: linear-gradient(90deg,rgba(8, 37, 65, 0.91) 0%, rgba(8, 37, 65, 0.74) 50%, rgba(8, 37, 65, 0) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  content: '';
  left: 0;
  top: 0;
}
.section-image-with-content.bg-image-gr .container {
  position: relative;
  z-index: 1;
} 
.section-image-with-content.bg-image-gr .flexible-contents-wrapper-column p, .section-image-with-content.bg-image-gr .flexible-contents-wrapper-column li{
  color: #fff!important;
}
.section-image-with-content .flexible-contents-wrapper-column .image-with-content-list li {
    list-style-type: none !important;
    display: flex;
    line-height: 1.572em;
    margin-bottom: 16px; 
    align-items: center;
}
.section-image-with-content .flexible-contents-wrapper-column {
	padding-top: 20px;
}
.section-image-with-content .flexible-contents-wrapper-column .image-with-content-list li:before {
  position: relative;
  min-width: 16px;
  height: 16px;
  background-image: url('/wp-content/uploads/2026/05/Golden-circular-check-mark.png');
  content: '';
  display: inline-block;
  background-size: contain;
  margin-right: 16px;
  background-repeat: no-repeat;
}

.section-image-with-content .flexible-contents-wrapper-column .image-with-content-list {
    padding: unset !important;
    margin-top: 16px;
    margin-bottom: 33px;
}
.section-image-with-content.bg-image-gr .content .col.content {
    width: 54% !important;
    padding: unset;
}
.section-image-with-content .flexible-contents-wrapper-column .flexible-buttons {
    display: flex;
}
.section-image-with-content .flexible-contents-wrapper-column .flexible-buttons .site-btn {
    margin-right: 20px;
}
.section-image-with-content .flexible-contents-wrapper-column .flexible-buttons .site-btn:last-child {
    margin-right: unset;
}
.section-image-with-content .flexible-contents-wrapper-column .flexible-buttons .site-btn {
    margin-right: 20px;
    padding-left: 24px !important;
    padding-right: 24px !important;
    color: var(--white)!important;
}
.section-image-with-content .flexible-contents-wrapper-column .flexible-buttons .site-btn:nth-child(odd) {
  background: var(--primary-color)!important;
} 
.section-image-with-content .flexible-contents-wrapper-column .flexible-buttons .site-btn:hover:nth-child(odd) {
  background: var(--secondary-color) !important;
}  

.section-image-with-content.bg-overlay {
    position: relative;
}
.section-image-with-content.bg-overlay:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: var(--primary-color);
    opacity: .9;
}
.section-image-with-content.bg-overlay .container {
  position: relative;
  z-index: 1; 
}
.section-image-with-content.bg-overlay .container .section-title{
  color: var(--white);
}

.section-image-with-content.bg-overlay .container ul.image-with-content-list li {
  color: var(--white); 
} 

.section-image-with-content.bg-overlay .flexible-contents-wrapper-column .flexible-buttons .site-btn:nth-child(odd) {
  background: var(--secondary-color) !important;
} 
.section-image-with-content.bg-overlay .flexible-contents-wrapper-column .flexible-buttons .site-btn:hover:nth-child(odd) {
  background: var(--primary-color)!important;
}
.section-image-with-content .flexible-contents-wrapper-column .image-wrapper img {
    width: 150px;
    border-radius: 8px;
}

.section-image-with-content .flexible-contents-wrapper-column .image-wrapper {
    padding-bottom: 20px;
}


/* Section image with content form column */
.html-block form .gfield--width-half {
    width: calc(50% - 33px);
}
.html-block form .gform_fields {
    display: flex; 
    flex-wrap: wrap; 
}
.html-block form .gform_fields .gfield {
    padding: 0 16.5px;
    margin-bottom: 14px;
}
.html-block form .gfield--width-full {
    width: 100%;
}

.html-block form .ginput_container input, .html-block form .ginput_container textarea {
    height: 45px;
    padding: 0 10px;
    border: 1px solid #C1C3C5;
    width: calc(100% - 20px); 
}

.html-block form .ginput_container textarea {
    height: 140px;
}

.html-block form label {
    font-size: 12px !important; 
    color: #6A6A6A !important;
    font-weight: 600 !important; 
    margin-bottom: 5px!important;
    display: inline-block;
}

.html-block .form-wrapper {
    padding: 34px 24.5px;
    background: #F3F3F3;
    margin-top: 50px;
    max-width: 575px;
}

.html-block .form-wrapper .gform_required_legend, .html-block .form-wrapper .gfield.gfield--type-checkbox legend, .html-block .form-wrapper .gfield--type-captcha label.gfield_label.gform-field-label {
    display: none;
} 
.html-block .form-wrapper h2.form-wrapper-title {
    font-size: 30px;
    line-height: 1.45;
    color: var(--primary-color);
    text-align: center;
    margin: 0;
    padding-bottom: 13px; 
}

.html-block .form-wrapper .form-wrapper-tag-line {
    font-size: 16px;
    text-align: center;
    border-bottom: 1px solid #B9975A;
    padding-bottom: 25px;
} 

.html-block .form-wrapper .gfield.gfield--type-checkbox {
    margin: 0 16.5px;
    padding: unset;
    border: unset;
}

.html-block .form-wrapper .gfield.gfield--type-checkbox .gchoice {
    display: flex;
    align-items: center;
}

.html-block .form-wrapper .gfield.gfield--type-checkbox .gchoice input {
    width: 10px;
    height: 10px;
}

.html-block .form-wrapper .gfield_label span.gfield_required {
    color: #FF0000;
    margin-left: 3px;
} 

.html-block .form-wrapper .ginput_recaptcha iframe {
    transform: scale(0.66);
    transform-origin: 0;
} 

.html-block .form-wrapper .gfield--type-submit {
    display: flex;
    align-items: center;
}

.html-block .form-wrapper .gfield--type-submit .gform-button {
    width: fit-content;
    padding: 10px 50px;
    background: var(--primary-color) !important;
    margin-right: 20px;
    padding-left: 49px !important;
    padding-right: 49px !important;
    color: var(--white) !important;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-transform: uppercase;
    height: fit-content;
    border-radius: 500px;
    font-size: 13px;
    border: unset;
    font-weight: 700;
}

.html-block .form-wrapper .site-btn {
    font-size: 13px;
    width: fit-content;
    margin: 0 auto;
} 

/* Bento box section */
.section-bento-box {
    padding: 65px 20px 62px;
}

.section-bento-box .section-content p {
    text-align: center;
    margin-top: unset;
}
 
.section-bento-box .section-title {
    margin-bottom: 18px;
}

.section-bento-box .section-content {
    padding-bottom: 45px;
}

.section-bento-box .container .bento-grid .half-boxes-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px;
}

.section-bento-box .container .bento-grid .half-boxes-wrapper .half-box {
    flex: 1 50%;
    max-width: calc(50% - 92px);
    margin: 0 8px 18px;
    transition: all 0.3s;
}

.section-bento-box .container .bento-grid .half-boxes-wrapper .half-box:hover {
    background-color: #f1ebdf;
}

.section-bento-box .container .bento-grid .bento-box {
    padding: 29px 37px;
    border: 1px solid #B4A598;
    border-radius: 5.6px;
}


.section-bento-box .container .bento-grid .half-boxes-wrapper .half-box h3.box-title {
    font-size: 25px;
    margin: 8px 0;
    font-weight: 700;
    color: var(--primary-color);
}

.section-bento-box .container .bento-grid .half-boxes-wrapper .half-box .box-content p {
    margin: unset;
}

.section-bento-box .container .bento-grid .full-width-boxes-wrapper .full-width-box {
    display: flex; 
    background-color: var(--primary-color);
} 

.section-bento-box .container .bento-grid .full-width-boxes-wrapper .full-width-box h3, .section-bento-box .container .bento-grid .full-width-boxes-wrapper .full-width-box p {
  color: var(--white);
}

.section-bento-box .container .bento-grid .full-width-boxes-wrapper .full-width-box .box-title {
    font-size: 37.7px;
    margin: 0;  
}

.section-bento-box .container .bento-grid .full-width-boxes-wrapper .full-width-box .box-content {
    display: flex;
    align-items: center; 
    padding-left: 59px; 
}

.section-bento-box .container .bento-grid .full-width-boxes-wrapper .full-width-box .heading-column {
    padding-right: 49px;
    border-right: 1px solid #C1C3C5;
}

.section-bento-box .container .bento-grid .full-width-boxes-wrapper .full-width-box .heading-column .box-subtitle {
    margin: 4px 0 0;
}

/* FAQ Section */

.section-faq {
  padding: 84px 20px;
}

.section-faq .container {
    max-width: 1226px;
}

.section-faq .section-title {
  margin-bottom: 59px;
}

.section-faq .faq-item {
    /* border-top: 1px solid #131313; */
    border-bottom: 1px solid #131313;
    position: relative;
    display: flex; 
    justify-content: center;
    flex-direction: column;
}

.section-faq .faq-item:before {
  content: '';
  width: 17px;
  height: 7px;
  background-image: url(/wp-content/uploads/2026/05/Vector-10.png);
  background-size: contain;
  background-position: center;
  position: absolute;
  right: 0;
  transition: all 0.3s;
}
.section-faq .faq-item.open:before {
    transform: rotate(180deg);
} 

/* .section-faq .faq-item:last-child {
    border-bottom: 1px solid #131313;
} */
.section-faq .faq-item p {
  margin: unset;
} 
.section-faq .faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    font-size: 20px;
    color: #131313;
    text-transform: capitalize;
    font-family: inherit;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 25px 20px 25px 0;
    border: none;
    cursor: pointer;
    transition: color 0.3s;
}

.section-faq .faq-question i {
    transition: transform 0.3s;
}

.section-faq .faq-item p {
    color: #000;
    line-height: 1.6;
/*     height: 0; */
    overflow: hidden;
    transition: all 0.3s;
    font-size: 16px;
}

.section-faq .faq-question.show + p {
    padding-bottom: 25px;
    height: auto;
}

.section-faq .faq-question.show i {
    transform: rotate(180deg);
} 

/* Footer v2 */
.footer-v2 .container .logo-col img {
    max-width: 229px;
}

.footer-v2 .container .col {
    width: 20%;
    max-width: 20%;
}

.footer-v2 .container .col-copyright {
    width: 60%;
    max-width: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
} 

.footer-v2 .container .social-links {
    justify-content: end;
    padding-left: unset;
    align-items: center;
}

.footer-v2 {
  padding: 28px 20px 17px;
}

.footer-v2 .container .social-links li {
    margin-left: 17px;
}

.footer-v2 .container .logo-col {
    display: flex;
    justify-content: start;
}

.footer-v2 .container .col-copyright p, .footer-v2 .container .col-copyright p a {
  color: var(--primary-color);
  margin: unset;
  font-size: 18px!important;
} 

/* End new landing page */

/* End From customizer */
@media (min-width: 1500px) {
    .section.section-inner-page-banner {
        height: 720px;
    }
		.section-inner-page-banner .container {
			max-width: 1050px;
	}
}
@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 (min-width: 1400px) {
    .section-form .container .columns-wrapper .form-column form .gform_fields {
        grid-row-gap: 30px!important;
    } 
    .page-id-9 .section-form .container .columns-wrapper .form-column form .gform_fields {
        display: flex;
        flex-wrap: wrap;
    }

    .page-id-9 .section-form .container .columns-wrapper .form-column form .gfield--width-half {
        width: calc(50% - 9px);
    }

    .page-id-9 .section-form .container .columns-wrapper .form-column form .gfield input, .page-id-9  .section-form .container .columns-wrapper .form-column form .gfield:not(.gfield--width-half), .page-id-9 .section-form .container .columns-wrapper .form-column form .gfield:not(.gfield--width-half) input, .page-id-9 .section-form .container .columns-wrapper .form-column form .gfield--type-textarea textarea 
    {
        width: 100%;
    }
	.section-image-with-content .page-title {
/* 	  	text-transform: uppercase!important;  */
		font-size: 45px;
	} 
}
@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: 1024px) and (min-width: 768px) {
    .home .section-form #gform_1 .gfield .ginput_container input {
        width: 100%;
        margin-bottom: 10px;
    }
    .home .section-form #gform_1 .gfield .ginput_container textarea {
        width: 100%;
    }
    .section-form .container .columns-wrapper .form-column form input {
        height: 36px;
    }
    .section-hero-banner .container .btn-group {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }
    .section-hero-banner .container .btn-group .site-btn {
        width: fit-content;
        min-width: 156px;
        max-width: unset !important;
        margin: 0 auto 10px;
    }
}
@media (max-width: 1200px) {
  .html-block form .ginput_container input {
	   height: 38px;
   } 
	.html-block .form-wrapper h2.form-wrapper-title {
		font-size: 27px;
		padding-bottom: 0;
	}
   .html-block form .ginput_container textarea {
	   height: 70px;
   }
  header .main-header .container .social-links .site-btn {
    font-size: 17px;
    padding: 7px 20px;
  }
  .section-hero-banner {
    height: 520px;
  }
  .page-title {
    font-size: 40px;
  }
  .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; 
  }
  .section-services .container .services .service p {
    font-size: 16px!important;
  } 
  .section-services .container .services .service {
    max-width: calc(50% - 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;
  }
  .section-inner-page-banner .container {
      padding-bottom: 50px;
  }
  .section-lsp .container .lsp-pages > li {
      /* flex: 1 50%;
      max-width: 48%; */
      padding: 6px 5px; 
  }
  .section-image-with-content .flexible-contents-wrapper-column .flexible-buttons {
      flex-direction: column;
  }
  .section-image-with-content .flexible-contents-wrapper-column .flexible-buttons a.site-btn {
      margin-bottom: 20px;
  }
   .section-image-with-content .flexible-contents-wrapper-column .flexible-buttons a.site-btn:last-child {
      margin-bottom: unset;
  } 
  .html-block form .gfield--width-half {
      width: 100%;
  } 
  .html-block .form-wrapper .gfield--type-submit {
      justify-content: center;
  }
  .section-single-column .accent-line-activated .columns-wrapper {
      background-image: unset!important;
  }
  .header-v2 .logo-col a img {
      max-width: 150px;
  }
  .header-v2 .btn-col .site-btn {
      font-size: 17px!important;
  }
  .section-bento-box .container .bento-grid .full-width-boxes-wrapper .full-width-box .heading-column {
      padding-right: 10px;
  }
  .section-bento-box .container .bento-grid .full-width-boxes-wrapper .full-width-box .box-content {
    padding-left: 20px;
  }
  .section-bento-box .container .bento-grid .full-width-boxes-wrapper .full-width-box .box-title {
      font-size: 20px;
  }
  .footer-v2 .container .logo-col img {
      max-width: 120px;
  }
  .footer-v2 .container .col-copyright p, .footer-v2 .container .col-copyright p a {
      font-size: 12px !important;
  }
  .section-single-column .container .contents-layout .icon-columns-block .columns-wrapper {
      justify-content: center;
  }
  .section-faq .faq-question {
    font-size: 18px;
}
}
@media (min-width: 1000px) {
  .section-4-columns .services .service {
      flex: 1 calc(23% - 50px) !important;
  }
}
@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) {
	.header-v2 .social-links .google-badge-wrapper img {
		margin-left: 7px;
		width: 120px;
	}
	.header-v2 .social-links li {
		margin-right: 9px;
	}
  .page-title {
    font-size: 30px;
  }
  .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;
  } 
  .section-lsp .container .lsp-pages {
      column-count: 2;
  } 
  .section-services.reversed-hover .container .services .service {
      flex: 1 calc(42.33% - 53px);
  }  
    .section-image-with-content.bg-image-gr .content .col.content {
      width: 100%!important;
  }
  .html-block .form-wrapper {
      margin: 0 auto;
  }
    .section-single-column .container .contents-layout .icon-columns-block .columns-wrapper {
      justify-content: center;
  }
  .section-cta .container .link-buttons-container {
      flex-direction: column;
      align-items: center;
  }
  .section-cta .container .link-buttons-container a.site-btn {
      margin-bottom: 20px;
  }
  .section-cta .container .link-buttons-container a.site-btn:last-child {
      margin-bottom: unset;
  }
}
@media (max-width: 767px) {
	.section-faq {
		padding: 50px 20px;
	}
	.section-inner-page-banner .container .btn-group{
		flex-direction:column;
		gap:15px;
	}
	.section-inner-page-banner .container .btn-group .site-btn{
		width:auto;
	}
	.serviceminder-section .container{
		max-width:100% !important;
	}
  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;
    width: 100%!important;
  }
  .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: auto;
  }
  .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-services .container .services .service {
    max-width: 100%;
  }
  .section-image-with-content .container .d-flex .col.featured .featured-column-wrapper {
    width: 100%;
  }
  .section-single-column .container .contents-layout .icon-columns-block .columns-wrapper .icon-column {
    flex: 1 100%;
  }
  .section-single-column .container .contents-layout .icon-columns-block .columns-wrapper .icon-column:last-child {
    margin-bottom: unset!important;
  }
  .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;
  }
  /* .section-lsp .container .lsp-pages > li {
      flex: 1 100%;
      max-width: 100%;
  } */
  .section-lsp .container .lsp-pages {
      column-count: 1;
  }
      .section-inner-page-banner .container p.subtitle {
        font-size: 16px;
    }
	
	/* Navigation styling for mobile amp */
	.main-header button.close-menu, .main-header button.burger-menu {
			color: #fff;
			background-color: #1C4767;
			padding: 3px 8px;
			font-size: 18px;
			border: unset;
			border-radius: 4px;
   		margin: 10px 10px 20px auto;
	}

	amp-sidebar[side][i-amphtml-sidebar-opened] {
			transform: none;
			animation: none;
	}

	amp-sidebar#sidebar {
			display: flex;
			flex-direction: column;
	}
	.amp-sidebar-mask {
			display: none !important;
	}
    .section-services .container .services .service {
        margin: 0 0 20px;
    }
    .section-process .processes .col .col-body {
        height: fit-content;
    }
    .section-process h2.section-title {
        padding: 0 20px;
    }
	.section-image-with-content .container .d-flex .col.featured .featured-column-wrapper svg {
			aspect-ratio: .5 / .3 !important;
			height: fit-content;
	}
  .html-block .form-wrapper h2.form-wrapper-title {
    font-size: 22px;
  }
  .html-block .form-wrapper {
      padding: 34px 0px;
  }
  .section-bento-box .container .bento-grid .half-boxes-wrapper .half-box {
      flex: 1 100%;
      max-width: 100%;
  }
  .section-bento-box .container .bento-grid .bento-box {
      padding: 29px 20px;
  }
  .section-bento-box .container .bento-grid .half-boxes-wrapper .half-box h3.box-title {
      font-size: 18px;
  }  
  /* .header-v2 .d-flex {
      flex-direction: column;
  } */
  .header-v2 .container .col {
      width: 100%;
  }
  .header-v2 .container .col .social-links {
      flex-direction: row;
  }
  .header-v2 .container .btn-col {
      justify-content: center;
  }
  .header-v2 .logo-col {
      padding: 7px 0;
  }
  .section-faq .faq-question {
      font-size: 15px;
  }
  .footer-v2 .d-flex {
      flex-direction: column;
      align-items: center;
  }
  .footer-v2 .container .social-links {
      justify-content: center;
      flex-direction: row;
  }
  .footer-v2 .container .col {
      width: 100%!important;
      max-width: 100%!important;
  }
  .footer-v2 .container .logo-col {
      justify-content: center;
  }
  .footer-v2 .container .col-copyright {
      justify-content: center;
      padding: 13px 0;
  }
  .header-v2 .container .logo-col {
      width: 50%;
  }
  .header-v2 .container .btn-col {
      width: 50%;
  }
  .header-v2 .container .social-links {
      justify-content: center;
/*       padding-bottom: 5px; */
  }
  .header-v2 .btn-col .site-btn {
      font-size: 12px !important;
      padding-left: 10px;
      padding-right: 10px;
  }
  .header-v2 .container .btn-col a.site-btn img {
      max-width: 19px;
  }
  .header-v2 .social-links li a img {
      max-width: 18px;
  } 
  .serviceminder-section form input {
	  height: 33px;
  }
   .html-block form .ginput_container input{
	   height: 33px;
   } 
  .html-block form .ginput_container textarea {
	   height: 70px;
   } 
	.section-faq .section-title {
 		margin-bottom: 20px;
	}
}
@media (max-width: 540px) {
    .section-services.reversed-hover .container .services .service {
        flex: 1 100%;
    }
    .section-image-with-content .featured .featured-column-wrapper .bio-block {
        max-width: calc(100% - 30px) !important;
    }
    .site-btn {
        padding: 10px 20px;
    }
} 
@media (max-width: 319px) {
    .section-hero-banner {
        height: 580px;
    }
}

/*# 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-form .container .columns-wrapper .form-column form input{
		width:100%;
		margin-bottom: 10px;
		height: 40px;
	}
	.page-id-9 form#gform_1 textarea{
		width:100%;
	}
  .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;
  } 
}