@charset "UTF-8";
body {
  font-family: "gill-sans-nova", sans-serif;
  font-weight: 400;
  font-style: normal;
  background: #F7F2EB;
}

a {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, p {
  color: #314156;
}

ul {
  list-style-type: square;
}
ul li {
  font-size: 28px;
  font-weight: 300;
}

.font-ultralight {
  font-weight: 200;
}

.font-light {
  font-weight: 300;
}

.font-book {
  font-weight: 400;
}

.font-bold {
  font-weight: 700;
}

.font-italic {
  font-style: italic;
}

.font-didot {
  font-family: linotype-didot, serif;
  font-weight: 400;
  font-style: normal;
}

.font-didot-regular {
  font-family: linotype-didot, serif;
  font-weight: 400;
  font-style: normal;
}

.font-didot-italic {
  font-family: linotype-didot, serif;
  font-weight: 400;
  font-style: italic;
}

.font-didot-bold {
  font-family: linotype-didot, serif;
  font-weight: 700;
  font-style: normal;
}

.font-didot-bold-italic {
  font-family: linotype-didot, serif;
  font-weight: 700;
  font-style: italic;
}

h1, h2, h3, h4, h5, h6 {
  font-family: linotype-didot, serif;
  font-weight: 400;
  font-style: normal;
}

.animate-hover-lift {
  transition: transform 0.3s ease;
}
.animate-hover-lift:hover {
  transform: translateY(-2px);
}

.animate-hover-scale {
  transition: transform 0.3s ease;
}
.animate-hover-scale:hover {
  transform: scale(1.05);
}

.animate-hover-fade {
  transition: opacity 0.3s ease;
}
.animate-hover-fade:hover {
  opacity: 0.8;
}

.animate-underline {
  position: relative;
}
.animate-underline::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #2BA8B2;
  transition: width 0.3s ease;
  border-radius: 1px;
}
.animate-underline:hover::after {
  width: 100%;
}

.animate-underline-light {
  position: relative;
}
.animate-underline-light::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #F7F2EB;
  transition: width 0.3s ease;
  border-radius: 1px;
}
.animate-underline-light:hover::after {
  width: 100%;
}

.animate-button {
  transition: all 0.3s ease;
  background-color: #2BA8B2;
  color: #F7F2EB;
  border: 2px solid #2BA8B2;
}
.animate-button:hover {
  background-color: transparent;
  color: #2BA8B2;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.animate-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  transition: all 0.3s ease;
  background-color: #2BA8B2;
  color: #F7F2EB;
  border: 2px solid #2BA8B2;
  padding: 12px 30px;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 0;
}
.btn-primary:hover {
  background-color: transparent;
  color: #2BA8B2;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  transition: all 0.3s ease;
  background-color: #314156;
  color: #F7F2EB;
  border: 2px solid #314156;
  padding: 12px 30px;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 0;
}
.btn-secondary:hover {
  background-color: transparent;
  color: #314156;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.btn-secondary:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.anchor-menu-container {
  background: #314156;
}

.sticky-menu .vc_column-inner {
  padding-top: 0 !important;
}

.anchor-menu-container {
  position: relative;
  z-index: 10;
  background: #314156;
  border-bottom: 1px solid rgba(49, 65, 86, 0.1);
}
.anchor-menu-container.is-sticky {
  position: sticky;
  top: var(--anchor-sticky-top, 0px);
  z-index: 99;
}
.anchor-menu-container.is-fixed {
  position: fixed;
  top: var(--anchor-sticky-top, 0px);
  z-index: 1000;
  background: #314156;
}
.anchor-menu-container .anchor-nav {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.anchor-menu-container .anchor-nav::-webkit-scrollbar {
  display: none;
}
.anchor-menu-container .anchor-list {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  align-items: center;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  white-space: nowrap;
}
.anchor-menu-container .anchor-list li {
  margin: 0;
  padding: 0;
}
.anchor-menu-container .anchor-link {
  display: inline-block;
  padding: 10px 12px;
  color: #F7F2EB;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .anchor-menu-container .anchor-link {
    font-size: 18px;
  }
}
.anchor-menu-container .anchor-link:hover {
  color: #FFFFFF;
  border-color: #FFFFFF;
}
.anchor-menu-container .anchor-link.is-active {
  color: #FFFFFF;
  border-color: #FFFFFF;
}
.anchor-menu-container.text-center .anchor-list {
  justify-content: center;
}
.anchor-menu-container.text-right .anchor-list {
  justify-content: flex-end;
}

.btn-outline {
  transition: all 0.3s ease;
  padding: 12px 30px;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 1px;
  cursor: pointer;
  border: 2px solid #2BA8B2;
  background-color: transparent;
  color: #2BA8B2;
}
.btn-outline:hover {
  background-color: #2BA8B2;
  color: #F7F2EB;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.btn-outline:active {
  transform: translateY(1px);
}

a {
  color: #2BA8B2;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding-top: 89px;
  transition: background-color 0.3s ease, padding-bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
header.dropdown-open {
  background-color: #F7F2EB;
}
header.dropdown-open.graphite .header-logo .logo-svg path {
  fill: #314156;
  transition: fill 0.3s ease;
}
header.dropdown-open.graphite .header-menu-container a {
  color: #314156;
  transition: color 0.3s ease;
}
header.dropdown-open.graphite .search-form input {
  border-color: #314156;
  color: #314156;
  transition: border-color 0.3s ease, color 0.3s ease;
}
header.dropdown-open.graphite .search-form input::placeholder {
  color: #314156;
}
header.dropdown-open.graphite .search-form button .search-icon-svg {
  color: #314156;
  transition: color 0.3s ease;
}
header.dropdown-open.graphite .login-button a {
  color: #314156;
  border-color: #314156;
  transition: color 0.3s ease, border-color 0.3s ease;
}
header .header-logo .logo-svg {
  height: auto;
  width: 277px;
}
header .header-logo .logo-svg path {
  fill: #F7F2EB;
}
header .header-menu-container {
  margin-top: 49px;
}
header .header-menu-container ul > li:last-child {
  margin-right: 0;
}
header .header-menu-container ul li {
  display: inline-block;
  margin: 0 30px;
}
header .header-menu-container ul li.current-menu-item > a, header .header-menu-container ul li.current-menu-parent > a {
  position: relative;
  text-shadow: -0.2px -0.2px 0 #F7F2EB, 0.2px -0.2px 0 #F7F2EB, -0.2px 0.2px 0 #F7F2EB, 0.2px 0.2px 0 #F7F2EB;
}
header .header-menu-container ul li.current-menu-item > a::after, header .header-menu-container ul li.current-menu-parent > a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #2BA8B2;
  transition: width 0.3s ease;
  border-radius: 2px;
}
header .header-menu-container ul li.menu-item-has-children > a {
  position: relative;
}
header .header-menu-container ul li.menu-item-has-children.dropdown-active > a::before {
  transform: translateY(-50%) rotate(225deg);
}
header .header-menu-container ul li ul.sub-menu {
  position: absolute;
  text-align: left;
  margin-left: 0;
  padding: 0 0 20px 0;
  margin-top: 20px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0s 0.3s ease;
}
header .header-menu-container ul li ul.sub-menu li {
  display: block;
  margin: 0 0 4px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
header .header-menu-container ul li ul.sub-menu li a {
  padding: 8px 0;
  font-size: 18px;
  line-height: 30px;
  text-transform: none;
  letter-spacing: 0.5px;
}
header .header-menu-container ul li ul.sub-menu li a:hover {
  text-shadow: -0.2px -0.2px 0 #314156, 0.2px -0.2px 0 #314156, -0.2px 0.2px 0 #314156, 0.2px 0.2px 0 #314156;
}
header .header-menu-container ul li ul.sub-menu li a::after {
  display: none !important;
}
header .header-menu-container ul li.dropdown-active > a {
  position: relative;
}
header .header-menu-container ul li.dropdown-active > a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #2BA8B2;
  transition: width 0.3s ease;
  border-radius: 2px;
}
header .header-menu-container ul li.dropdown-active ul.sub-menu {
  max-height: 500px;
  opacity: 1;
  visibility: visible;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0s;
}
header .header-menu-container ul li.dropdown-active ul.sub-menu li {
  opacity: 1;
  transform: translateY(0);
}
header .header-menu-container ul li.dropdown-active ul.sub-menu li:nth-child(1) {
  transition-delay: 0.05s;
}
header .header-menu-container ul li.dropdown-active ul.sub-menu li:nth-child(2) {
  transition-delay: 0.1s;
}
header .header-menu-container ul li.dropdown-active ul.sub-menu li:nth-child(3) {
  transition-delay: 0.15s;
}
header .header-menu-container ul li.dropdown-active ul.sub-menu li:nth-child(4) {
  transition-delay: 0.2s;
}
header .header-menu-container ul li.dropdown-active ul.sub-menu li:nth-child(5) {
  transition-delay: 0.25s;
}
header .header-menu-container ul li.dropdown-active ul.sub-menu li:nth-child(6) {
  transition-delay: 0.3s;
}
header .header-menu-container ul li.dropdown-active ul.sub-menu li:nth-child(7) {
  transition-delay: 0.35s;
}
header .header-menu-container ul li.dropdown-active ul.sub-menu li:nth-child(8) {
  transition-delay: 0.4s;
}
header .header-menu-container ul li.dropdown-active ul.sub-menu li:nth-child(9) {
  transition-delay: 0.45s;
}
header .header-menu-container ul li.dropdown-active ul.sub-menu li:nth-child(10) {
  transition-delay: 0.5s;
}
header .header-menu-container ul li a {
  color: #F7F2EB;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 300;
  position: relative;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 1px;
}
header .header-menu-container ul li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 4px;
  background-color: #2BA8B2;
  transition: width 0.3s ease;
  border-radius: 2px;
}
header .header-menu-container ul li a:hover::after {
  width: 100%;
}
header .header-menu-container ul li a:hover {
  text-shadow: -0.2px -0.2px 0 #F7F2EB, 0.2px -0.2px 0 #F7F2EB, -0.2px 0.2px 0 #F7F2EB, 0.2px 0.2px 0 #F7F2EB;
}
header .search-and-login {
  display: flex;
  justify-content: flex-end;
  gap: 21px;
}
header .search-and-login .search-form {
  width: 517px;
  position: relative;
}
header .search-and-login .search-form form input {
  border: 0.5px solid #F7F2EB;
  background-color: transparent;
  color: #F7F2EB;
  font-size: 18px;
  font-weight: 300;
  padding: 0;
  width: 517px;
  height: 60px;
  line-height: 60px;
  text-indent: 18px;
  color: #F7F2EB;
}
header .search-and-login .search-form form input::placeholder {
  color: #F7F2EB;
}
header .search-and-login .search-form form button {
  background: transparent;
  border: 0;
  width: 25px;
  height: 60px;
  padding: 0;
  cursor: pointer;
  position: absolute;
  right: 20px;
  transform: translateY(-2px);
}
header .search-and-login .search-form form button .search-icon-svg {
  width: 25px;
  height: 25px;
  color: #F7F2EB;
}
header .search-and-login .login-button {
  display: flex;
  width: 290px;
}
header .search-and-login .login-button a {
  border: 0.5px solid #F7F2EB;
  text-indent: 18px;
}
header .search-and-login .login-button a:hover {
  border-color: transparent;
}
header .mobile-menu-toggle {
  display: none;
  background: #2BA8B2;
  border: none;
  width: 50px;
  height: 50px;
  padding: 10px;
  cursor: pointer;
  position: absolute;
  right: 15px;
  border-radius: 0;
  transition: all 0.3s ease;
  z-index: 10000;
}
header .mobile-menu-toggle .hamburger-line {
  display: block;
  width: 100%;
  height: 3px;
  background: #F7F2EB;
  margin: 6px 0;
  transition: all 0.3s ease;
  transform-origin: center;
  position: relative;
}
header .mobile-menu-toggle .hamburger-line:first-child {
  margin-top: 0;
}
header .mobile-menu-toggle .hamburger-line:last-child {
  margin-bottom: 0;
}
header .mobile-menu-toggle.active {
  border-radius: 50%;
}
header .mobile-menu-toggle.active .hamburger-line:first-child {
  transform: translateY(9px) rotate(45deg);
}
header .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
header .mobile-menu-toggle.active .hamburger-line:last-child {
  transform: translateY(-9px) rotate(-45deg);
}
@media screen and (max-width: 1230px) {
  header {
    padding: 20px 0 !important;
  }
  header.active.graphite .header-logo .logo-svg path {
    fill: #F7F2EB;
  }
  header .mobile-menu-toggle {
    display: block;
  }
  header .search-and-login {
    display: none !important;
  }
  header .header-menu-container {
    display: none !important;
  }
}
header.graphite .header-menu-container ul li.current-menu-item > a, header.graphite .header-menu-container ul li.current-menu-parent > a {
  position: relative;
  text-shadow: -0.2px -0.2px 0 #314156, 0.2px -0.2px 0 #314156, -0.2px 0.2px 0 #314156, 0.2px 0.2px 0 #314156;
}
header.graphite .header-menu-container ul li.current-menu-item > a::after, header.graphite .header-menu-container ul li.current-menu-parent > a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #2BA8B2;
  transition: width 0.3s ease;
  border-radius: 2px;
}
header.graphite .header-menu-container ul li a {
  color: #314156;
}
header.graphite .header-menu-container ul li.menu-item-has-children > a::before {
  border-color: #314156;
}
header.graphite .header-logo .logo-svg path {
  fill: #314156;
}
header.graphite .search-and-login .search-form input {
  border-color: #314156;
  color: #314156;
}
header.graphite .search-and-login .search-form input::placeholder {
  color: #314156;
}
header.graphite .search-and-login .search-form button .search-icon-svg {
  color: #314156;
}
header.graphite .login-button a {
  color: #314156;
  border-color: #314156;
}
header.graphite .login-button:hover a {
  color: #F7F2EB;
  border-color: transparent;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #314156;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s;
}
.mobile-menu-overlay::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 95px;
  background: linear-gradient(to bottom, #314156 70%, transparent);
  z-index: 1;
  pointer-events: none;
}
.mobile-menu-overlay .mobile-menu-content {
  height: 100%;
  overflow-y: auto;
  padding: 110px 20px 40px 20px;
}
@media (min-width: 768px) {
  .mobile-menu-overlay .mobile-menu-content {
    padding: 110px 40px 60px 40px;
  }
}
.mobile-menu-overlay .mobile-menu-content::-webkit-scrollbar {
  width: 6px;
}
.mobile-menu-overlay .mobile-menu-content::-webkit-scrollbar-track {
  background: rgba(247, 242, 235, 0.1);
}
.mobile-menu-overlay .mobile-menu-content::-webkit-scrollbar-thumb {
  background: rgba(247, 242, 235, 0.3);
  border-radius: 3px;
}
.mobile-menu-overlay .mobile-menu-content::-webkit-scrollbar-thumb:hover {
  background: rgba(247, 242, 235, 0.5);
}
.mobile-menu-overlay .mobile-menu-header {
  display: block;
  margin-bottom: 20px;
}
.mobile-menu-overlay .mobile-menu-header .mobile-search-form form {
  position: relative;
}
.mobile-menu-overlay .mobile-menu-header .mobile-search-form form input {
  width: 100%;
  background: transparent;
  border: 1px solid #F7F2EB;
  color: #F7F2EB;
  padding: 12px 44px 12px 16px;
  font-size: 16px;
  font-weight: 300;
}
.mobile-menu-overlay .mobile-menu-header .mobile-search-form form input::placeholder {
  color: rgba(247, 242, 235, 0.7);
}
.mobile-menu-overlay .mobile-menu-header .mobile-search-form form button {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.mobile-menu-overlay .mobile-menu-header .mobile-search-form form button .search-icon-svg {
  width: 20px;
  height: 20px;
  color: #F7F2EB;
}
.mobile-menu-overlay .mobile-menu-header .mobile-login-button {
  width: 100%;
}
.mobile-menu-overlay .mobile-menu-header .mobile-login-button a {
  width: 100%;
  background: transparent;
  border: 1px solid #F7F2EB;
  color: #F7F2EB;
  text-align: center;
}
.mobile-menu-overlay .mobile-menu-header .mobile-login-button a:hover {
  background: #2BA8B2;
  border-color: #2BA8B2;
}
.mobile-menu-overlay .mobile-menu-nav .mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-menu-overlay .mobile-menu-nav .mobile-menu-list li {
  margin-bottom: 16px;
}
.mobile-menu-overlay .mobile-menu-nav .mobile-menu-list li a {
  color: #F7F2EB;
  font-size: 22px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  display: block;
  padding: 10px 0;
  transition: color 0.3s ease;
}
.mobile-menu-overlay .mobile-menu-nav .mobile-menu-list li a:hover {
  color: #2BA8B2;
}
.mobile-menu-overlay .mobile-menu-nav .mobile-menu-list li.current-menu-item > a, .mobile-menu-overlay .mobile-menu-nav .mobile-menu-list li.current-menu-parent > a {
  color: #2BA8B2;
}
.mobile-menu-overlay .mobile-menu-nav .mobile-menu-list li.menu-item-has-children > a {
  position: relative;
  padding-right: 40px;
}
.mobile-menu-overlay .mobile-menu-nav .mobile-menu-list li.menu-item-has-children > a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 10px;
  height: 10px;
  border-right: 2px solid #F7F2EB;
  border-bottom: 2px solid #F7F2EB;
  transition: transform 0.3s ease;
}
.mobile-menu-overlay .mobile-menu-nav .mobile-menu-list li.menu-item-has-children.expanded > a::after {
  transform: translateY(-50%) rotate(45deg);
}
.mobile-menu-overlay .mobile-menu-nav .mobile-menu-list li ul.sub-menu {
  list-style: none;
  padding: 0 0 0 20px;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), margin 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu-overlay .mobile-menu-nav .mobile-menu-list li ul.sub-menu li {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition-delay: 0s;
  margin-bottom: 10px;
}
.mobile-menu-overlay .mobile-menu-nav .mobile-menu-list li ul.sub-menu li a {
  font-size: 18px;
  text-transform: none;
  letter-spacing: 1px;
  padding: 8px 0;
}
.mobile-menu-overlay .mobile-menu-nav .mobile-menu-list li.expanded ul.sub-menu {
  max-height: 500px;
  margin: 10px 0 0 0;
}
.mobile-menu-overlay .mobile-menu-nav .mobile-menu-list li.expanded ul.sub-menu li {
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-overlay .mobile-menu-nav .mobile-menu-list li.expanded ul.sub-menu li:nth-child(1) {
  transition-delay: 0.05s;
}
.mobile-menu-overlay .mobile-menu-nav .mobile-menu-list li.expanded ul.sub-menu li:nth-child(2) {
  transition-delay: 0.1s;
}
.mobile-menu-overlay .mobile-menu-nav .mobile-menu-list li.expanded ul.sub-menu li:nth-child(3) {
  transition-delay: 0.15s;
}
.mobile-menu-overlay .mobile-menu-nav .mobile-menu-list li.expanded ul.sub-menu li:nth-child(4) {
  transition-delay: 0.2s;
}
.mobile-menu-overlay .mobile-menu-nav .mobile-menu-list li.expanded ul.sub-menu li:nth-child(5) {
  transition-delay: 0.25s;
}
.mobile-menu-overlay .mobile-menu-nav .mobile-menu-list li.expanded ul.sub-menu li:nth-child(6) {
  transition-delay: 0.3s;
}
.mobile-menu-overlay .mobile-menu-nav .mobile-menu-list li.expanded ul.sub-menu li:nth-child(7) {
  transition-delay: 0.35s;
}
.mobile-menu-overlay .mobile-menu-nav .mobile-menu-list li.expanded ul.sub-menu li:nth-child(8) {
  transition-delay: 0.4s;
}
.mobile-menu-overlay .mobile-menu-nav .mobile-menu-list li.expanded ul.sub-menu li:nth-child(9) {
  transition-delay: 0.45s;
}
.mobile-menu-overlay .mobile-menu-nav .mobile-menu-list li.expanded ul.sub-menu li:nth-child(10) {
  transition-delay: 0.5s;
}

.mobile-menu-overlay .mobile-menu-header .mobile-search-form {
  display: block;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, margin 0.3s ease;
  margin: 0;
}

.mobile-menu-overlay .mobile-menu-header .mobile-search-form.is-open {
  opacity: 1;
  margin: 8px 0 0 0;
}

.mobile-menu-overlay .mobile-menu-header .mobile-login-button {
  display: none;
}

.mobile-search-toggle {
  display: none;
  margin: 0 0 8px;
}
.mobile-search-toggle button {
  width: 100%;
  background: transparent;
  border: 1px solid #F7F2EB;
  color: #F7F2EB;
  padding: 12px 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s ease;
}
.mobile-search-toggle button:hover {
  background: rgba(247, 242, 235, 0.08);
}
.mobile-search-toggle button.is-open {
  background: #2BA8B2;
  border-color: #2BA8B2;
  color: #F7F2EB;
}

@media (max-width: 767px) {
  .mobile-menu-overlay::before {
    height: 64px;
  }
  .mobile-menu-overlay .mobile-menu-content {
    padding: 100px 16px 32px 16px;
  }
  .mobile-menu-overlay .mobile-menu-nav .mobile-menu-list li a {
    font-size: 20px;
    letter-spacing: 1px;
  }
  .mobile-menu-overlay .mobile-menu-nav .mobile-menu-list li {
    margin-bottom: 12px;
  }
}
body.mobile-menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.hero-section .swiper-wrapper {
  height: 100vh;
}
.hero-section .hero-video-wrapper,
.hero-section .hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
}
.hero-section .hero-video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.hero-section .hero-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-section .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.hero-section .hero-content {
  position: absolute;
  bottom: 20%;
  left: 0;
  right: 0;
  z-index: 3;
  color: #F7F2EB;
}
.hero-section .hero-content .hero-text {
  margin-bottom: 40px;
}
.hero-section .hero-content .hero-text h1, .hero-section .hero-content .hero-text h2, .hero-section .hero-content .hero-text h3, .hero-section .hero-content .hero-text h4, .hero-section .hero-content .hero-text h5, .hero-section .hero-content .hero-text h6 {
  color: #F7F2EB;
  margin-bottom: 20px;
  font-size: 74px;
  letter-spacing: 2px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .hero-section .hero-content .hero-text h1, .hero-section .hero-content .hero-text h2, .hero-section .hero-content .hero-text h3, .hero-section .hero-content .hero-text h4, .hero-section .hero-content .hero-text h5, .hero-section .hero-content .hero-text h6 {
    font-size: 46px;
  }
  .hero-section .hero-content .hero-text h1 br, .hero-section .hero-content .hero-text h2 br, .hero-section .hero-content .hero-text h3 br, .hero-section .hero-content .hero-text h4 br, .hero-section .hero-content .hero-text h5 br, .hero-section .hero-content .hero-text h6 br {
    display: none;
  }
}
.hero-section .hero-content .hero-text h1 em, .hero-section .hero-content .hero-text h2 em, .hero-section .hero-content .hero-text h3 em, .hero-section .hero-content .hero-text h4 em, .hero-section .hero-content .hero-text h5 em, .hero-section .hero-content .hero-text h6 em {
  font-weight: normal;
}
.hero-section .hero-content .hero-text h1:last-child, .hero-section .hero-content .hero-text h2:last-child, .hero-section .hero-content .hero-text h3:last-child, .hero-section .hero-content .hero-text h4:last-child, .hero-section .hero-content .hero-text h5:last-child, .hero-section .hero-content .hero-text h6:last-child {
  margin-bottom: 0;
}
.hero-section .hero-content .hero-text p {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 300;
}
.hero-section .hero-content .hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-section .hero-content .hero-buttons .stafford-btn-container {
  width: 398px;
  height: 70px;
}
.hero-section .hero-content .hero-buttons .stafford-btn-container a {
  border: 0.5px solid #F7F2EB;
  padding-left: 33px;
  text-indent: 0;
  font-size: 28px;
}
.hero-section .hero-content .hero-buttons .stafford-btn-container a:hover {
  border-color: transparent;
}
.hero-section .hero-content .hero-buttons .stafford-btn-container a .btn-arrow-svg {
  right: 31px;
}
.hero-section .hero-breadcrumbs {
  margin-bottom: 30px;
}
.hero-section .hero-breadcrumbs .breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
  .hero-section .hero-breadcrumbs .breadcrumbs {
    display: block;
  }
}
.hero-section .hero-breadcrumbs .breadcrumbs a {
  color: #F7F2EB;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.hero-section .hero-breadcrumbs .breadcrumbs a:hover {
  opacity: 1;
}
.hero-section .hero-breadcrumbs .breadcrumbs .separator {
  color: #F7F2EB;
  opacity: 0.6;
  font-size: 14px;
}
.hero-section .hero-breadcrumbs .breadcrumbs .current {
  color: #F7F2EB;
  font-weight: 400;
}

.hero-slider .swiper-pagination {
  bottom: 20px !important;
}
.hero-slider .swiper-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: #F7F2EB;
  opacity: 1;
  transition: all 0.3s ease;
}
.hero-slider .swiper-pagination .swiper-pagination-bullet-active {
  background: #2BA8B2;
}

.stafford-btn-container {
  min-width: 318px;
  color: #F7F2EB;
  height: 60px;
  line-height: 60px;
  text-align: left;
  display: inline-block;
  max-width: 100%;
}
@media screen and (max-width: 1304px) {
  .stafford-btn-container {
    min-width: 100%;
    display: block;
  }
}
.stafford-btn-container a {
  display: block;
  padding-right: 70px;
  min-width: 100%;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #F7F2EB;
  position: relative;
  transition: all 0.3s ease;
}
.stafford-btn-container a .btn-arrow-svg {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.stafford-btn-container:hover a {
  text-indent: 18px;
  background-color: #2BA8B2;
  color: #F7F2EB;
  border-color: transparent;
  border-radius: 30px;
}
.stafford-btn-container:hover a .btn-arrow-svg {
  transform: translateY(-50%) translateX(-10px);
}
.stafford-btn-container.graphite-scheme a {
  border-color: #314156;
  color: #314156;
}
.stafford-btn-container.graphite-scheme a .btn-arrow-svg {
  color: #314156;
}
.stafford-btn-container.graphite-scheme:hover a {
  background-color: #2BA8B2;
  color: #F7F2EB;
  border-color: transparent;
}
.stafford-btn-container.graphite-scheme:hover a .btn-arrow-svg {
  color: #F7F2EB;
}
.stafford-btn-container.solid-style a {
  background-color: #F7F2EB;
  color: #314156;
  border: 0.5px solid #F7F2EB;
  text-indent: 18px;
  border-radius: 30px;
}
.stafford-btn-container.solid-style a .btn-arrow-svg {
  color: #314156;
}
.stafford-btn-container.solid-style:hover a {
  background-color: transparent;
}
.stafford-btn-container.solid-style:hover a .btn-arrow-svg {
  transform: translateY(-50%);
}
.stafford-btn-container.solid-style.outline-teal:hover a {
  border-color: #2BA8B2;
  color: #2BA8B2;
}
.stafford-btn-container.solid-style.outline-teal:hover a .btn-arrow-svg {
  color: #2BA8B2;
}
.stafford-btn-container.solid-style.outline-oatmeal:hover a {
  border-color: #F7F2EB;
  color: #F7F2EB;
}
.stafford-btn-container.solid-style.outline-oatmeal:hover a .btn-arrow-svg {
  color: #F7F2EB;
}
.stafford-btn-container.solid-style.outline-graphite:hover a {
  border-color: #314156;
  color: #314156;
}
.stafford-btn-container.solid-style.outline-graphite:hover a .btn-arrow-svg {
  color: #314156;
}
.stafford-btn-container.solid-style.graphite-scheme a {
  background-color: #314156;
  color: #F7F2EB;
  border-color: #314156;
}
.stafford-btn-container.solid-style.graphite-scheme a .btn-arrow-svg {
  color: #F7F2EB;
}
.stafford-btn-container.solid-style.graphite-scheme:hover a {
  background-color: transparent;
}
.stafford-btn-container.solid-style.graphite-scheme.outline-teal:hover a {
  border-color: #2BA8B2;
  color: #2BA8B2;
}
.stafford-btn-container.solid-style.graphite-scheme.outline-teal:hover a .btn-arrow-svg {
  color: #2BA8B2;
}
.stafford-btn-container.solid-style.graphite-scheme.outline-oatmeal:hover a {
  border-color: #F7F2EB;
  color: #F7F2EB;
}
.stafford-btn-container.solid-style.graphite-scheme.outline-oatmeal:hover a .btn-arrow-svg {
  color: #F7F2EB;
}
.stafford-btn-container.solid-style.graphite-scheme.outline-graphite:hover a {
  border-color: #314156;
  color: #314156;
}
.stafford-btn-container.solid-style.graphite-scheme.outline-graphite:hover a .btn-arrow-svg {
  color: #314156;
}

.staffordcp-button-wrapper.text-center {
  text-align: center;
}
.staffordcp-button-wrapper.text-center .stafford-btn-container {
  margin: 0 auto;
}
.staffordcp-button-wrapper.text-right {
  text-align: right;
}
.staffordcp-button-wrapper.text-right .stafford-btn-container {
  margin-left: auto;
}

h2 {
  font-size: 56px;
  font-weight: normal;
  letter-spacing: 2px;
}
h2 em {
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 42px;
    margin-bottom: 10px;
  }
}

h4 {
  font-size: 34px;
  line-height: 46px;
  margin-bottom: 32px;
  letter-spacing: 2px;
}

p {
  font-size: 23px;
  font-weight: 300;
}

.homepage-content .wpb_text_column {
  max-width: 850px;
}

.facts-figures {
  background: #2BA8B2;
  color: #F7F2EB;
  margin-top: -80px;
  padding-top: 80px;
  height: 100%;
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
}
.facts-figures h1, .facts-figures h2, .facts-figures h3, .facts-figures h4, .facts-figures h5, .facts-figures h6, .facts-figures p {
  color: #F7F2EB;
}
@media screen and (min-width: 768px) {
  .facts-figures {
    margin-bottom: 80px;
  }
}
.facts-figures .wpb_wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.facts-figures h3 {
  font-size: 42px;
  font-weight: bold;
}
.facts-figures .wpb_text_column {
  padding: 70px 0;
  position: relative;
  margin: 0;
}
.facts-figures .wpb_text_column p {
  text-transform: uppercase;
  font-size: 19px;
  font-weight: 300;
  max-width: 80%;
  margin: 0 auto;
}
.facts-figures .wpb_text_column::after {
  content: "";
  display: block;
  width: calc(100% - 30px);
  margin: 0 auto;
  height: 1px;
  background: #F7F2EB;
  position: absolute;
  bottom: 0;
  left: 15px;
}
.facts-figures .wpb_text_column:last-child::after {
  display: none;
}
.facts-figures .wpb_text_column:first-child {
  padding-top: 0;
}

.wpb-content-wrapper {
  padding-left: 12px;
  padding-right: 12px;
}
@media (min-width: 576px) {
  .wpb-content-wrapper {
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (min-width: 768px) {
  .wpb-content-wrapper {
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (min-width: 992px) {
  .wpb-content-wrapper {
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (min-width: 1200px) {
  .wpb-content-wrapper {
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (min-width: 1400px) {
  .wpb-content-wrapper {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.vc_row {
  margin: 80px 0;
}
.vc_row .stafford-btn-container {
  margin-bottom: 14px;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl,
.page-content > .vc_row:not([data-vc-full-width=true]):not([data-vc-stretch-content=true]) {
  width: 100%;
  max-width: 1640px;
}

.graphite-section {
  padding-top: 19px;
  padding-bottom: 40px;
}
.graphite-section .vc_column-inner {
  padding-left: 58px !important;
  padding-right: 45px !important;
}
@media screen and (max-width: 767px) {
  .graphite-section .vc_column-inner {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
.graphite-section h1, .graphite-section h2, .graphite-section h3, .graphite-section h4, .graphite-section h5, .graphite-section h6, .graphite-section p {
  color: #F7F2EB;
}
.graphite-section h2 {
  margin-bottom: 40px;
}

@media (min-width: 1680px) {
  .hero-section .hero-text h1, .hero-section .hero-text h2, .hero-section .hero-text h3, .hero-section .hero-text h4, .hero-section .hero-text h5, .hero-section .hero-text h6 {
    font-size: 89px;
  }
  h2 {
    font-size: 67px;
  }
  h4 {
    font-size: 32px;
  }
  .facts-figures h3 {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .stafford-btn-container.full-width-mobile {
    width: 100% !important;
    max-width: none !important;
    min-width: auto !important;
  }
}
footer {
  background: #314156;
  color: #F7F2EB;
  padding: 150px 0;
}
footer .footer-logo {
  margin-bottom: 80px;
  display: inline-block;
}
footer .footer-logo svg {
  fill: #F7F2EB;
  height: auto;
  width: 396px;
}
footer .footer-cities {
  margin-bottom: 120px;
}
footer .footer-cities .cities-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
footer .footer-cities .cities-flex .city-item {
  font-size: 34px;
  font-weight: 300;
  letter-spacing: 1px;
  color: #F7F2EB;
  text-transform: uppercase;
}
footer .footer-cities .cities-flex .city-separator {
  font-size: 34px;
  color: #F7F2EB;
  opacity: 0.6;
}
@media (max-width: 768px) {
  footer .footer-cities .cities-flex {
    flex-direction: column;
    gap: 15px;
  }
  footer .footer-cities .cities-flex .city-separator {
    display: none;
  }
}
footer .footer-widgets .widget h4.widget-title {
  font-size: 36px;
  font-weight: bold;
  font-family: linotype-didot, serif;
  color: #F7F2EB;
  margin-bottom: 22px;
  letter-spacing: 1px;
}
footer .footer-widgets .widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footer-widgets .widget ul li {
  margin-bottom: 6px;
}
footer .footer-widgets .widget ul li a {
  line-height: 36px;
  color: #F7F2EB;
  font-size: 24px;
  font-weight: 300;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}
footer .footer-widgets .widget ul li a:hover {
  color: #2BA8B2;
}
footer .footer-widgets .widget p {
  color: #F7F2EB;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 15px;
}
footer .footer-widgets .widget p a {
  color: #F7F2EB;
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 500;
}
footer .footer-widgets .widget p a:hover {
  color: #2BA8B2;
}

.footer-copyright {
  padding: 23px 0;
}
.footer-copyright .copyright-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.footer-copyright .copyright-content .copyright-text {
  flex: 1;
}
.footer-copyright .copyright-content .copyright-text p {
  color: #314156;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 10px;
  opacity: 0.8;
}
.footer-copyright .copyright-content .copyright-text p:last-child {
  margin-bottom: 0;
}
.footer-copyright .copyright-content .copyright-year {
  flex-shrink: 0;
}
.footer-copyright .copyright-content .copyright-year p {
  color: #314156;
  font-size: 14px;
  font-weight: 300;
  margin: 0;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .footer-copyright .copyright-content {
    flex-direction: column;
    gap: 20px;
  }
  .footer-copyright .copyright-content .copyright-year {
    align-self: flex-start;
  }
}

.page .page-title {
  border-bottom: 0.5px solid #314156;
  margin-bottom: 52px;
}
.page .page-title h1, .page .page-title h2, .page .page-title h3 {
  font-family: "gill-sans-nova", sans-serif;
  font-size: 40px;
  font-weight: 300;
  color: #314156;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.page h3 {
  font-size: 46px;
  margin-bottom: 52px;
}
.page p {
  font-size: 28px;
  font-weight: 300;
  line-height: 40px;
}

.vc_row {
  margin-left: auto !important;
  margin-right: auto !important;
}
.vc_row.sticky-menu {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}

.staffordcp-team-members {
  margin: 0;
}

.team-filters {
  margin-bottom: 60px;
}

.team-search {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  gap: 20px;
}
.team-search input#team-search-input {
  flex: 1;
  max-width: 600px;
  background: transparent;
  border: 1px solid #314156;
  color: #314156;
  padding: 15px 20px;
  font-size: 18px;
  font-weight: 300;
  border-radius: 50px;
  transition: border-color 0.3s ease;
}
.team-search input#team-search-input::placeholder {
  color: #314156;
  opacity: 0.7;
}
.team-search input#team-search-input:focus {
  outline: none;
  border-color: #2BA8B2;
}
.team-search button#clear-filters {
  background: transparent;
  border: none;
  color: #2BA8B2;
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  padding: 15px 0;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.team-search button#clear-filters:hover {
  color: #314156;
}

.team-region-filters {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  background: #314156;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.region-filter-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: #F7F2EB;
  font-size: 18px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 20px 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
.region-filter-btn:hover {
  background-color: rgba(43, 168, 178, 0.1);
}
.region-filter-btn.active {
  background-color: #2BA8B2;
  color: #F7F2EB;
}
.region-filter-btn.active:hover {
  background-color: #2BA8B2;
}

.team-department-filters {
  margin-bottom: 30px;
}

.department-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.department-filter-btn {
  background: transparent;
  border: 2px solid #314156;
  color: #314156;
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 25px;
  cursor: pointer;
  border-radius: 25px;
  transition: all 0.3s ease;
}
.department-filter-btn:hover {
  background-color: #314156;
  color: #F7F2EB;
}
.department-filter-btn.active {
  background-color: #2BA8B2;
  border-color: #2BA8B2;
  color: #F7F2EB;
}
.department-filter-btn.active:hover {
  background-color: #2BA8B2;
  border-color: #2BA8B2;
}

.sub-department-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.sub-department-filter-btn {
  background: transparent;
  border: 1px solid #2BA8B2;
  color: #2BA8B2;
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 18px;
  cursor: pointer;
  border-radius: 20px;
  transition: all 0.3s ease;
}
.sub-department-filter-btn:hover, .sub-department-filter-btn.active {
  background-color: #2BA8B2;
  color: #F7F2EB;
}

.team-members-grid {
  transition: opacity 0.3s ease;
}

.team-member-card {
  background: #F7F2EB;
  border-radius: 0;
  overflow: hidden;
  transition: transform box-shadow;
  height: 100%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.team-member-card:hover {
  transition: transform 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.team-member-card:hover:hover {
  transform: translateY(-5px);
}
.team-member-card:hover .member-photo img {
  transform: scale(1.05);
}

.member-photo {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
  background: #F7F2EB;
}
.member-photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.3s ease;
}

.member-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2BA8B2, #314156);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F7F2EB;
  font-size: 48px;
  font-weight: 300;
  font-family: linotype-didot, serif;
}

.member-info {
  padding: 25px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
  background: #314156;
}

.member-name {
  font-family: linotype-didot, serif;
  font-size: 30px;
  font-weight: 400;
  color: #314156;
  margin-bottom: 8px;
  line-height: 1.2;
  color: #F7F2EB;
}

.member-position {
  font-family: "gill-sans-nova", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #F7F2EB;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.member-location {
  font-family: "gill-sans-nova", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #F7F2EB;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0;
}

.team-loading {
  text-align: center;
  padding: 60px 20px;
}
.team-loading p {
  color: #314156;
  font-size: 18px;
  font-weight: 300;
  margin: 0;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid #F7F2EB;
  border-top: 3px solid #2BA8B2;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.team-no-results {
  text-align: center;
  padding: 80px 20px;
}
.team-no-results p {
  color: #314156;
  font-size: 24px;
  font-weight: 300;
  margin: 0;
  font-family: linotype-didot, serif;
}

@media (max-width: 1199px) {
  .team-search {
    flex-direction: column;
    align-items: stretch;
  }
  .team-search input#team-search-input {
    max-width: none;
    margin-bottom: 15px;
  }
  .team-search button#clear-filters {
    align-self: center;
  }
}
@media (max-width: 991px) {
  .region-filter-btn {
    padding: 18px 30px;
    font-size: 16px;
  }
  .department-filter-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  .member-name {
    font-size: 20px;
  }
  .member-position {
    font-size: 14px;
  }
  .member-location {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .staffordcp-team-members {
    margin: 40px 0;
  }
  .team-filters {
    margin-bottom: 40px;
  }
  .team-region-filters {
    flex-direction: column;
    border-radius: 25px;
  }
  .region-filter-btn {
    padding: 15px 25px;
    border-radius: 0;
  }
  .region-filter-btn:first-child {
    border-radius: 25px 25px 0 0;
  }
  .region-filter-btn:last-child {
    border-radius: 0 0 25px 25px;
  }
  .department-buttons,
  .sub-department-filters {
    justify-content: flex-start;
  }
  .department-filter-btn,
  .sub-department-filter-btn {
    font-size: 12px;
    padding: 8px 15px;
  }
  .member-info {
    padding: 20px 15px;
  }
  .member-name {
    font-size: 18px;
  }
  .member-position {
    font-size: 13px;
  }
  .member-location {
    font-size: 11px;
  }
}
@media (max-width: 575px) {
  .team-search input#team-search-input {
    padding: 12px 15px;
    font-size: 16px;
  }
  .region-filter-btn {
    padding: 12px 20px;
    font-size: 14px;
  }
  .department-filter-btn {
    padding: 8px 12px;
    font-size: 11px;
  }
  .sub-department-filter-btn {
    padding: 6px 10px;
    font-size: 10px;
  }
}
.team-member-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.team-member-modal .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(247, 242, 235, 0.95);
  backdrop-filter: blur(5px);
}
.team-member-modal .modal-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}
.team-member-modal .modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: transparent;
  border: none;
  color: #314156;
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  z-index: 10001;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.team-member-modal .modal-close:hover {
  color: #2BA8B2;
  transform: scale(1.1);
}
.team-member-modal .modal-content {
  background: #314156;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  display: flex;
  flex-direction: row;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
@media (max-width: 767px) {
  .team-member-modal .modal-content {
    flex-direction: column;
    max-height: 95vh;
  }
}
.team-member-modal .modal-details {
  flex: 1;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  order: 1;
}
@media (max-width: 991px) {
  .team-member-modal .modal-details {
    padding: 40px 30px;
  }
}
@media (max-width: 767px) {
  .team-member-modal .modal-details {
    padding: 30px 20px;
    order: 1;
  }
}
.team-member-modal .modal-image {
  flex: 1;
  min-height: 400px;
  position: relative;
  overflow: hidden;
  order: 2;
}
.team-member-modal .modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
@media (max-width: 767px) {
  .team-member-modal .modal-image {
    display: none;
  }
}
.team-member-modal .modal-details h2 {
  font-family: linotype-didot, serif;
  font-size: 48px;
  font-weight: 400;
  color: #F7F2EB;
  margin-bottom: 15px;
  line-height: 1.1;
}
@media (max-width: 991px) {
  .team-member-modal .modal-details h2 {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .team-member-modal .modal-details h2 {
    font-size: 24px;
  }
}
.team-member-modal .modal-details h3 {
  font-family: "gill-sans-nova", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #F7F2EB;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .team-member-modal .modal-details h3 {
    font-size: 16px;
  }
}
.team-member-modal .modal-details .modal-location {
  font-family: "gill-sans-nova", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #F7F2EB;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 30px;
  border-bottom: 1px solid #F7F2EB;
}
@media (max-width: 767px) {
  .team-member-modal .modal-details .modal-location {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.team-member-modal .modal-details .modal-headline {
  font-family: linotype-didot, serif;
  font-size: 20px;
  font-weight: 400;
  color: #F7F2EB;
  margin-bottom: 25px;
  line-height: 1.4;
  font-weight: bold;
}
@media (max-width: 767px) {
  .team-member-modal .modal-details .modal-headline {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.team-member-modal .modal-details .modal-bio {
  font-family: "gill-sans-nova", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #F7F2EB;
  line-height: 1.6;
}
.team-member-modal .modal-details .modal-bio p {
  margin-bottom: 15px;
}
.team-member-modal .modal-details .modal-bio p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .team-member-modal .modal-details .modal-bio {
    font-size: 15px;
  }
}

body.modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.staffordcp-posts {
  margin: 0;
}

.posts-filters {
  margin-bottom: 60px;
}

.posts-search {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  gap: 20px;
}
.posts-search input#posts-search-input {
  flex: 1;
  max-width: 600px;
  background: transparent;
  border: 1px solid #314156;
  color: #314156;
  padding: 15px 20px;
  font-size: 18px;
  font-weight: 300;
  border-radius: 50px;
  transition: border-color 0.3s ease;
}
.posts-search input#posts-search-input::placeholder {
  color: #314156;
  opacity: 0.7;
}
.posts-search input#posts-search-input:focus {
  outline: none;
  border-color: #2BA8B2;
}
.posts-search button#clear-posts-filters {
  background: transparent;
  border: none;
  color: #2BA8B2;
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  padding: 15px 0;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.posts-search button#clear-posts-filters:hover {
  color: #314156;
}

.posts-category-filters {
  margin-bottom: 40px;
  text-align: center;
}
.posts-category-filters h4 {
  font-family: linotype-didot, serif;
  font-size: 28px;
  font-weight: 400;
  color: #314156;
  margin-bottom: 25px;
  text-align: center;
  letter-spacing: 1px;
}
.posts-category-filters .filter-buttons-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 auto;
}
.posts-category-filters .category-filter-btn {
  background: transparent;
  border: 2px solid #314156;
  color: #314156;
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 25px;
  cursor: pointer;
  border-radius: 25px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.posts-category-filters .category-filter-btn:hover {
  background-color: #314156;
  border-color: #314156;
  color: #F7F2EB;
}
.posts-category-filters .category-filter-btn.active {
  background-color: #2BA8B2;
  border-color: #2BA8B2;
  color: #F7F2EB;
}
.posts-category-filters .category-filter-btn.active:hover {
  background-color: #2BA8B2;
  border-color: #2BA8B2;
}

.posts-tag-filters {
  margin-bottom: 50px;
  text-align: center;
}
.posts-tag-filters h4 {
  font-family: linotype-didot, serif;
  font-size: 28px;
  font-weight: 400;
  color: #314156;
  margin-bottom: 25px;
  text-align: center;
  letter-spacing: 1px;
}
.posts-tag-filters .filter-buttons-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 1000px;
  margin: 0 auto;
}
.posts-tag-filters .tag-filter-btn {
  background: transparent;
  border: 1px solid #2BA8B2;
  color: #2BA8B2;
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 18px;
  cursor: pointer;
  border-radius: 20px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.posts-tag-filters .tag-filter-btn:hover {
  background-color: #2BA8B2;
  color: #F7F2EB;
}
.posts-tag-filters .tag-filter-btn.active {
  background-color: #2BA8B2;
  color: #F7F2EB;
}
.posts-grid {
  transition: opacity 0.3s ease;
}

.post-card {
  background: #F7F2EB;
  border-radius: 0;
  overflow: hidden;
  transition: transform box-shadow;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.post-card:hover {
  transition: transform 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.post-card:hover:hover {
  transform: translateY(-3px);
}
.post-card:hover .post-image img {
  transform: scale(1.02);
}
.post-card:hover .post-title a {
  color: #2BA8B2;
}

.post-image {
  width: 100%;
  padding-bottom: 65%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(43, 168, 178, 0.1), rgba(49, 65, 86, 0.1));
}
.post-image a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.post-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}
.post-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(49, 65, 86, 0.1));
  z-index: 1;
}

.post-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2BA8B2, #314156);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F7F2EB;
  font-size: 48px;
  font-weight: 300;
  font-family: linotype-didot, serif;
}

.post-info {
  padding: 25px 20px 30px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: #F7F2EB;
  position: relative;
  min-height: 180px;
}
.post-info .post-meta {
  margin-bottom: 12px;
  order: 1;
}
.post-info .post-meta .post-date {
  font-family: "gill-sans-nova", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #2BA8B2;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
}
.post-info .post-meta .post-date::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 25px;
  height: 1px;
  background: #2BA8B2;
}
.post-info .post-title {
  margin-bottom: 15px;
  order: 2;
  flex-grow: 0;
}
.post-info .post-title a {
  font-family: linotype-didot, serif;
  font-size: 26px;
  font-weight: 400;
  color: #314156;
  text-decoration: none;
  line-height: 1.25;
  transition: color 0.3s ease;
  display: block;
}
.post-info .post-title a:hover {
  color: #2BA8B2;
}
.post-info .post-excerpt {
  font-family: "gill-sans-nova", sans-serif;
  font-weight: 300;
  color: rgba(49, 65, 86, 0.75);
  line-height: 1.5;
  order: 3;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.post-info .post-excerpt p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.staffordcp-posts.carousel-mode {
  position: relative;
}
@media (max-width: 991px) {
  .staffordcp-posts.carousel-mode {
    padding: 0;
  }
}

.posts-carousel.swiper {
  overflow: hidden;
  padding: 0 0 60px 0;
  position: relative;
  width: 100%;
}
.posts-carousel.swiper .swiper-wrapper {
  padding-bottom: 20px;
}
.posts-carousel.swiper .swiper-slide {
  height: auto;
  display: flex;
}
.posts-carousel.swiper .swiper-slide .post-card {
  width: 100%;
}
.posts-carousel.swiper .swiper-pagination {
  bottom: 0 !important;
}
.posts-carousel.swiper .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #314156;
  opacity: 0.3;
  transition: all 0.3s ease;
}
.posts-carousel.swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #2BA8B2;
  opacity: 1;
  transform: scale(1.2);
}
.posts-carousel.swiper .swiper-button-prev,
.posts-carousel.swiper .swiper-button-next {
  width: 50px;
  height: 50px;
  background: #314156;
  border-radius: 50%;
  color: #F7F2EB;
  transition: all 0.3s ease;
  z-index: 10;
}
.posts-carousel.swiper .swiper-button-prev:after,
.posts-carousel.swiper .swiper-button-next:after {
  font-size: 20px;
  font-weight: bold;
}
.posts-carousel.swiper .swiper-button-prev:hover,
.posts-carousel.swiper .swiper-button-next:hover {
  background: #2BA8B2;
  transform: scale(1.1);
}
.posts-carousel.swiper .swiper-button-prev {
  left: -60px;
}
.posts-carousel.swiper .swiper-button-next {
  right: -60px;
}

.post-tag-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 8px 20px;
  font-family: "gill-sans-nova", sans-serif;
  font-size: 12px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 3;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  transition: transform 0.3s ease;
  background-color: rgba(49, 65, 86, 0.95);
  color: #F7F2EB;
}
.post-card:hover .post-tag-overlay {
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .posts-carousel.swiper .swiper-button-prev,
  .posts-carousel.swiper .swiper-button-next {
    display: none;
  }
}
@media (max-width: 767px) {
  .posts-carousel.swiper {
    padding: 0 0 50px 0;
  }
  .post-tag-overlay {
    top: 15px;
    left: 15px;
    padding: 6px 16px;
    font-size: 11px;
  }
}
.posts-loading {
  text-align: center;
  padding: 60px 20px;
}
.posts-loading p {
  color: #314156;
  font-size: 18px;
  font-weight: 300;
  margin: 0;
}

.posts-no-results {
  text-align: center;
  padding: 80px 20px;
}
.posts-no-results p {
  color: #314156;
  font-size: 24px;
  font-weight: 300;
  margin: 0;
  font-family: linotype-didot, serif;
}

@media (max-width: 1199px) {
  .posts-search {
    flex-direction: column;
    align-items: stretch;
  }
  .posts-search input#posts-search-input {
    max-width: none;
    margin-bottom: 15px;
  }
  .posts-search button#clear-posts-filters {
    align-self: center;
  }
  .posts-category-filters .filter-buttons-wrapper,
  .posts-tag-filters .filter-buttons-wrapper {
    gap: 8px;
  }
}
@media (max-width: 991px) {
  .post-info {
    padding: 20px 18px 25px 18px;
    min-height: 160px;
  }
  .post-info .post-title a {
    line-height: 1.2;
  }
  .post-info .post-excerpt p {
    -webkit-line-clamp: 4;
  }
}
@media (max-width: 767px) {
  .staffordcp-posts {
    margin: 40px 0;
  }
  .posts-filters {
    margin-bottom: 40px;
  }
  .posts-tag-filters {
    margin-bottom: 40px;
  }
  .posts-tag-filters h4 {
    margin-bottom: 20px;
  }
  .posts-tag-filters .filter-buttons-wrapper {
    gap: 5px;
  }
  .category-filter-btn {
    padding: 8px 12px;
  }
  .tag-filter-btn {
    padding: 6px 10px;
  }
  .post-info {
    padding: 18px 15px 22px 15px;
    min-height: 140px;
  }
  .post-info .post-title a {
    line-height: 1.2;
  }
  .post-info .post-meta {
    margin-bottom: 10px;
  }
  .post-info .post-meta .post-date::after {
    width: 20px;
  }
  .post-info .post-excerpt {
    line-height: 1.4;
  }
  .post-info .post-excerpt p {
    line-height: 1.4;
    -webkit-line-clamp: 3;
  }
}
@media (max-width: 575px) {
  .posts-search input#posts-search-input {
    padding: 12px 15px;
    font-size: 16px;
  }
  .category-filter-btn {
    padding: 7px 10px;
    font-size: 10px;
  }
  .tag-filter-btn {
    padding: 5px 8px;
    font-size: 9px;
  }
  .post-info {
    padding: 15px 12px 18px 12px;
    min-height: 120px;
  }
  .post-info .post-title a {
    line-height: 1.2;
  }
  .post-info .post-meta {
    margin-bottom: 8px;
  }
  .post-info .post-meta .post-date::after {
    width: 18px;
  }
  .post-info .post-excerpt {
    font-size: 11px;
    line-height: 1.3;
  }
  .post-info .post-excerpt p {
    line-height: 1.3;
    -webkit-line-clamp: 2;
  }
}
.posts-load-more,
.team-load-more {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}
.posts-load-more .load-more-btn,
.team-load-more .load-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #2BA8B2;
  color: #F7F2EB;
  border: 2px solid #2BA8B2;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 200px;
  border-radius: 30px;
}
.posts-load-more .load-more-btn:hover,
.team-load-more .load-more-btn:hover {
  background: transparent;
  color: #2BA8B2;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.posts-load-more .load-more-btn:active,
.team-load-more .load-more-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.posts-load-more .load-more-btn.loading,
.team-load-more .load-more-btn.loading {
  cursor: wait;
  opacity: 0.7;
}
.posts-load-more .load-more-btn.loading:hover,
.team-load-more .load-more-btn.loading:hover {
  background: #2BA8B2;
  color: #F7F2EB;
  transform: none;
  box-shadow: none;
}
.posts-load-more .load-more-btn.loading .load-more-text::after,
.team-load-more .load-more-btn.loading .load-more-text::after {
  content: "...";
  display: inline-block;
  animation: ellipsis 1.5s infinite;
}
.posts-load-more .load-more-btn:disabled,
.team-load-more .load-more-btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.posts-load-more .load-more-btn:disabled:hover,
.team-load-more .load-more-btn:disabled:hover {
  background: #2BA8B2;
  color: #F7F2EB;
  transform: none;
  box-shadow: none;
}
.posts-load-more .load-more-btn .load-more-count,
.team-load-more .load-more-btn .load-more-count {
  font-size: 14px;
  opacity: 0.9;
  font-weight: 300;
}

@keyframes ellipsis {
  0% {
    content: "";
  }
  33% {
    content: ".";
  }
  66% {
    content: "..";
  }
  100% {
    content: "...";
  }
}
@media (max-width: 767px) {
  .posts-load-more,
  .team-load-more {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .posts-load-more .load-more-btn,
  .team-load-more .load-more-btn {
    padding: 12px 30px;
    font-size: 14px;
    min-width: 160px;
  }
}
@media (max-width: 575px) {
  .posts-load-more,
  .team-load-more {
    margin-top: 25px;
    margin-bottom: 25px;
  }
  .posts-load-more .load-more-btn,
  .team-load-more .load-more-btn {
    padding: 10px 25px;
    font-size: 13px;
    min-width: 140px;
  }
  .posts-load-more .load-more-btn .load-more-count,
  .team-load-more .load-more-btn .load-more-count {
    font-size: 12px;
  }
}
.vc_tta-accordion .vc_tta-panel {
  margin-bottom: 15px;
  background: transparent;
  border: none !important;
}
.vc_tta-accordion .vc_tta-panel .vc_tta-panel-heading {
  background: #F7F2EB;
  border: 1px solid rgba(49, 65, 86, 0.15);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.vc_tta-accordion .vc_tta-panel .vc_tta-panel-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: #2BA8B2;
  transition: width 0.3s ease;
}
.vc_tta-accordion .vc_tta-panel .vc_tta-panel-heading h4.vc_tta-panel-title {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
}
.vc_tta-accordion .vc_tta-panel .vc_tta-panel-heading h4.vc_tta-panel-title a {
  display: block;
  padding: 22px 26px;
  position: relative;
  color: #314156;
  font-family: linotype-didot, serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.vc_tta-accordion .vc_tta-panel .vc_tta-panel-heading h4.vc_tta-panel-title a span.vc_tta-title-text {
  padding-right: 32px;
  display: inline-block;
}
.vc_tta-accordion .vc_tta-panel .vc_tta-panel-heading h4.vc_tta-panel-title a .vc_tta-icon,
.vc_tta-accordion .vc_tta-panel .vc_tta-panel-heading h4.vc_tta-panel-title a .vc_tta-controls-icon {
  display: none !important;
}
.vc_tta-accordion .vc_tta-panel .vc_tta-panel-heading h4.vc_tta-panel-title a::before {
  display: none !important;
}
.vc_tta-accordion .vc_tta-panel .vc_tta-panel-heading h4.vc_tta-panel-title a::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #314156;
  border-bottom: 1.5px solid #314156;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.vc_tta-accordion .vc_tta-panel .vc_tta-panel-heading h4.vc_tta-panel-title a:hover {
  color: #2BA8B2;
}
.vc_tta-accordion .vc_tta-panel .vc_tta-panel-heading h4.vc_tta-panel-title a:hover::after {
  border-color: #2BA8B2;
}
.vc_tta-accordion .vc_tta-panel .vc_tta-panel-heading:hover {
  border-color: #2BA8B2;
}
.vc_tta-accordion .vc_tta-panel.vc_active .vc_tta-panel-heading {
  background: rgba(43, 168, 178, 0.04);
  border-color: #2BA8B2;
}
.vc_tta-accordion .vc_tta-panel.vc_active .vc_tta-panel-heading::before {
  width: 3px;
}
.vc_tta-accordion .vc_tta-panel.vc_active .vc_tta-panel-heading h4.vc_tta-panel-title a {
  color: #314156;
  font-weight: 400;
}
.vc_tta-accordion .vc_tta-panel.vc_active .vc_tta-panel-heading h4.vc_tta-panel-title a::after {
  border-color: #2BA8B2;
  transform: translateY(-50%) rotate(45deg);
}
.vc_tta-accordion .vc_tta-panel.vc_active .vc_tta-panel-body::before {
  width: 3px;
}
.vc_tta-accordion .vc_tta-panel .vc_tta-panel-body {
  position: relative;
  background: #F7F2EB;
  border: 1px solid rgba(49, 65, 86, 0.12);
  border-top: none;
  padding: 24px 26px 26px;
}
.vc_tta-accordion .vc_tta-panel .vc_tta-panel-body::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: #2BA8B2;
  transition: width 0.3s ease;
}
.vc_tta-accordion .vc_tta-panel .vc_tta-panel-body .wpb_wrapper p {
  line-height: 1.6;
  color: #314156;
  margin: 0;
}
.vc_tta-accordion .vc_tta-panel .vc_tta-panel-body .wpb_wrapper p:not(:last-child) {
  margin-bottom: 10px;
}
.vc_tta-accordion.vc_tta-color-grey .vc_tta-panel .vc_tta-panel-heading {
  background: transparent;
}
.vc_tta-accordion.vc_tta-color-grey .vc_tta-panel .vc_tta-panel-body {
  background: #F7F2EB;
}
.vc_tta-accordion.vc_tta-color-grey .vc_tta-panel .vc_tta-panel-body::before {
  display: none;
}

.wpcf7-form p {
  margin-bottom: 20px;
  position: relative;
}
.wpcf7-form input[type=text],
.wpcf7-form input[type=email],
.wpcf7-form input[type=tel],
.wpcf7-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(49, 65, 86, 0.3);
  color: #314156;
  padding: 12px 0;
  font-size: 20px;
  font-weight: 300;
  font-family: "gill-sans-nova", sans-serif;
  text-indent: 10px;
  transition: border-color 0.3s ease;
}
.wpcf7-form input[type=text]::placeholder,
.wpcf7-form input[type=email]::placeholder,
.wpcf7-form input[type=tel]::placeholder,
.wpcf7-form textarea::placeholder {
  color: rgba(49, 65, 86, 0.6);
}
.wpcf7-form input[type=text]:focus,
.wpcf7-form input[type=email]:focus,
.wpcf7-form input[type=tel]:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-bottom-color: #2BA8B2;
}
.wpcf7-form textarea {
  min-height: 100px;
  resize: vertical;
  padding-top: 15px;
}
.wpcf7-form select {
  text-indent: 10px;
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(49, 65, 86, 0.3);
  color: #314156;
  padding: 12px 30px 12px 0;
  font-size: 20px;
  font-weight: 300;
  font-family: "gill-sans-nova", sans-serif;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23314156' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  transition: border-color 0.3s ease;
}
.wpcf7-form select:focus {
  outline: none;
  border-bottom-color: #2BA8B2;
}
.wpcf7-form select option {
  background: #F7F2EB;
  color: #314156;
  padding: 10px;
}
.wpcf7-form input[type=submit] {
  display: inline-block;
  width: 100%;
  background: #2BA8B2;
  border: 2px solid #2BA8B2;
  color: #F7F2EB;
  padding: 18px 40px;
  font-size: 20px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  font-family: "gill-sans-nova", sans-serif;
  transition: all 0.3s ease;
  margin-top: 20px;
  border-radius: 30px;
}
.wpcf7-form input[type=submit]:hover {
  background: transparent;
  color: #2BA8B2;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.wpcf7-form input[type=submit]:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.wpcf7-form .wpcf7-not-valid-tip {
  color: #dc3545;
  font-size: 14px;
  font-weight: 300;
  margin-top: 5px;
  display: block;
}
.wpcf7-form .wpcf7-response-output {
  margin: 20px 0;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 300;
  border-radius: 0;
}
.wpcf7-form .wpcf7-response-output.wpcf7-validation-errors {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid #dc3545;
  color: #dc3545;
}
.wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ok {
  background: rgba(43, 168, 178, 0.1);
  border: 1px solid #2BA8B2;
  color: #2BA8B2;
}

@media screen and (min-width: 768px) {
  .offices-block {
    max-width: calc(50% - 60px) !important;
    margin-right: 60px !important;
  }
}

.contact-form-section .wpcf7-form {
  max-width: 600px;
}
@media (min-width: 768px) {
  .contact-form-section .wpcf7-form .form-row {
    display: flex;
    gap: 20px;
  }
  .contact-form-section .wpcf7-form .form-row p {
    flex: 1;
  }
}

@media (max-width: 991px) {
  .vc_tta-accordion .vc_tta-panel .vc_tta-panel-heading h4.vc_tta-panel-title a {
    padding: 18px 22px;
    font-size: 26px;
  }
  .vc_tta-accordion .vc_tta-panel .vc_tta-panel-heading h4.vc_tta-panel-title a span.vc_tta-title-text {
    padding-right: 35px;
  }
  .vc_tta-accordion .vc_tta-panel .vc_tta-panel-heading h4.vc_tta-panel-title a::before {
    display: none !important;
  }
  .vc_tta-accordion .vc_tta-panel .vc_tta-panel-heading h4.vc_tta-panel-title a::after {
    right: 22px;
    width: 8px;
    height: 8px;
    transform: translateY(-50%) rotate(0deg);
  }
  .vc_tta-accordion .vc_tta-panel.vc_active .vc_tta-panel-heading h4.vc_tta-panel-title a::after {
    transform: translateY(-50%) rotate(45deg);
  }
  .vc_tta-accordion .vc_tta-panel .vc_tta-panel-body {
    padding: 25px;
  }
  .wpcf7-form input[type=text],
  .wpcf7-form input[type=email],
  .wpcf7-form input[type=tel],
  .wpcf7-form textarea,
  .wpcf7-form select {
    font-size: 16px;
  }
  .wpcf7-form input[type=submit] {
    font-size: 16px;
    padding: 16px 30px;
  }
}
@media (max-width: 767px) {
  .vc_tta-accordion .vc_tta-panel {
    margin-bottom: 10px;
  }
  .vc_tta-accordion .vc_tta-panel .vc_tta-panel-heading h4.vc_tta-panel-title a {
    padding: 14px 18px;
    font-size: 22px;
  }
  .vc_tta-accordion .vc_tta-panel .vc_tta-panel-heading h4.vc_tta-panel-title a span.vc_tta-title-text {
    padding-right: 30px;
  }
  .vc_tta-accordion .vc_tta-panel .vc_tta-panel-heading h4.vc_tta-panel-title a::before {
    display: none !important;
  }
  .vc_tta-accordion .vc_tta-panel .vc_tta-panel-heading h4.vc_tta-panel-title a::after {
    right: 18px;
    width: 7px;
    height: 7px;
    transform: translateY(-50%) rotate(0deg);
  }
  .vc_tta-accordion .vc_tta-panel.vc_active .vc_tta-panel-heading h4.vc_tta-panel-title a::after {
    transform: translateY(-50%) rotate(45deg);
  }
  .vc_tta-accordion .vc_tta-panel .vc_tta-panel-body {
    padding: 20px;
  }
  .vc_tta-accordion .vc_tta-panel .vc_tta-panel-body .wpb_wrapper p {
    font-size: 16px;
  }
  .wpcf7-form p {
    margin-bottom: 15px;
  }
  .wpcf7-form input[type=text],
  .wpcf7-form input[type=email],
  .wpcf7-form input[type=tel],
  .wpcf7-form textarea,
  .wpcf7-form select {
    font-size: 16px;
    padding: 10px 0;
  }
  .wpcf7-form select {
    padding-right: 25px;
  }
  .wpcf7-form textarea {
    min-height: 80px;
  }
  .wpcf7-form input[type=submit] {
    font-size: 16px;
    padding: 15px 25px;
    letter-spacing: 1px;
    margin-top: 15px;
  }
}
@media (max-width: 575px) {
  .vc_tta-accordion .vc_tta-panel .vc_tta-panel-heading h4.vc_tta-panel-title a {
    padding: 12px 14px;
    font-size: 20px;
  }
  .vc_tta-accordion .vc_tta-panel .vc_tta-panel-heading h4.vc_tta-panel-title a span.vc_tta-title-text {
    padding-right: 25px;
  }
  .vc_tta-accordion .vc_tta-panel .vc_tta-panel-heading h4.vc_tta-panel-title a::before {
    display: none !important;
  }
  .vc_tta-accordion .vc_tta-panel .vc_tta-panel-heading h4.vc_tta-panel-title a::after {
    right: 16px;
    width: 6px;
    height: 6px;
    transform: translateY(-50%) rotate(0deg);
  }
  .vc_tta-accordion .vc_tta-panel.vc_active .vc_tta-panel-heading h4.vc_tta-panel-title a::after {
    transform: translateY(-50%) rotate(45deg);
  }
  .vc_tta-accordion .vc_tta-panel .vc_tta-panel-body {
    padding: 15px;
  }
  .vc_tta-accordion .vc_tta-panel .vc_tta-panel-body .wpb_wrapper p {
    font-size: 15px;
    line-height: 1.5;
  }
  .wpcf7-form input[type=text],
  .wpcf7-form input[type=email],
  .wpcf7-form input[type=tel],
  .wpcf7-form textarea,
  .wpcf7-form select {
    font-size: 15px;
  }
  .wpcf7-form input[type=submit] {
    font-size: 15px;
    padding: 14px 20px;
  }
  .wpcf7-form .wpcf7-not-valid-tip {
    font-size: 13px;
  }
  .wpcf7-form .wpcf7-response-output {
    font-size: 14px;
    padding: 12px 15px;
  }
}
.post-header-section {
  padding-top: 40px;
  margin-bottom: 40px;
}
.post-header-section .post-breadcrumbs {
  margin-bottom: 30px;
}
.post-header-section .post-breadcrumbs .breadcrumbs a {
  color: #314156;
  opacity: 0.7;
}
.post-header-section .post-breadcrumbs .breadcrumbs a:hover {
  opacity: 1;
  color: #2BA8B2;
}
.post-header-section .post-breadcrumbs .breadcrumbs .separator {
  color: #314156;
  opacity: 0.5;
  margin: 0 8px;
}
.post-header-section .post-breadcrumbs .breadcrumbs .current {
  color: #314156;
  font-weight: 400;
}

.post-content {
  padding-top: 40px;
  padding-bottom: 40px;
}
.post-content .post-meta .post-date {
  font-family: "gill-sans-nova", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #F7F2EB;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.post-content .post-main-content {
  font-size: 18px;
  line-height: 1.7;
  color: #314156;
}
.post-content .post-main-content p {
  margin-bottom: 20px;
}
.post-content .post-main-content h1, .post-content .post-main-content h2, .post-content .post-main-content h3, .post-content .post-main-content h4, .post-content .post-main-content h5, .post-content .post-main-content h6 {
  color: #314156;
  margin-bottom: 20px;
  margin-top: 30px;
}
.post-content .post-main-content h1:first-child, .post-content .post-main-content h2:first-child, .post-content .post-main-content h3:first-child, .post-content .post-main-content h4:first-child, .post-content .post-main-content h5:first-child, .post-content .post-main-content h6:first-child {
  margin-top: 0;
}
.post-content .post-main-content a {
  color: #2BA8B2;
  text-decoration: none;
  transition: color 0.3s ease;
}
.post-content .post-main-content a:hover {
  color: #314156;
}

.post-attachment-sidebar {
  padding-left: 30px;
}
.post-attachment-sidebar .attachment-card {
  background: #F7F2EB;
  border: 1px solid rgba(49, 65, 86, 0.1);
  padding: 25px;
  text-align: center;
  transition: box-shadow 0.3s ease;
}
.post-attachment-sidebar .attachment-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.post-attachment-sidebar .attachment-thumbnail {
  margin-bottom: 20px;
}
.post-attachment-sidebar .attachment-thumbnail img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
.post-attachment-sidebar .attachment-placeholder {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #2BA8B2, #314156);
  color: #F7F2EB;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  border-radius: 8px;
}
.post-attachment-sidebar .attachment-placeholder svg {
  margin-bottom: 8px;
  opacity: 0.9;
}
.post-attachment-sidebar .attachment-placeholder span {
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.post-attachment-sidebar .attachment-info {
  margin-bottom: 25px;
}
.post-attachment-sidebar .attachment-info .attachment-title {
  font-family: linotype-didot, serif;
  font-size: 20px;
  font-weight: 400;
  color: #314156;
  margin-bottom: 10px;
  line-height: 1.2;
}
.post-attachment-sidebar .attachment-info .attachment-meta {
  display: flex;
  justify-content: center;
  gap: 15px;
  font-size: 12px;
  color: rgba(49, 65, 86, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.post-attachment-sidebar .attachment-info .attachment-meta span {
  position: relative;
}
.post-attachment-sidebar .attachment-info .attachment-meta span:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: -10px;
  color: #2BA8B2;
}
.post-attachment-sidebar .btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
  text-decoration: none;
  transition: color border-color;
}
.post-attachment-sidebar .btn-download:hover {
  color: #2BA8B2;
  border-color: #2BA8B2;
}
.post-attachment-sidebar .btn-download svg {
  width: 18px;
  height: 18px;
}

.post-additional-sections {
  margin-top: 40px;
}
.post-additional-sections section {
  padding: 50px 0;
  border-top: 2px solid rgba(49, 65, 86, 0.1);
  background: rgba(247, 242, 235, 0.3);
  border-radius: 0;
}
.post-additional-sections section:first-child {
  border-top: 2px solid rgba(49, 65, 86, 0.1);
  padding-top: 50px;
}
.post-additional-sections section h3 {
  font-family: linotype-didot, serif;
  font-size: 36px;
  font-weight: 400;
  color: #314156;
  margin-bottom: 30px;
  letter-spacing: 1px;
}
.post-additional-sections section .media-enquiries-content,
.post-additional-sections section .about-stafford-content {
  font-size: 18px;
  line-height: 1.7;
  color: #314156;
}
.post-additional-sections section .media-enquiries-content p,
.post-additional-sections section .about-stafford-content p {
  margin-bottom: 20px;
}
.post-additional-sections section .media-enquiries-content p:last-child,
.post-additional-sections section .about-stafford-content p:last-child {
  margin-bottom: 0;
}
.post-additional-sections section .media-enquiries-content a,
.post-additional-sections section .about-stafford-content a {
  color: #2BA8B2;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}
.post-additional-sections section .media-enquiries-content a:hover,
.post-additional-sections section .about-stafford-content a:hover {
  color: #314156;
}
.post-additional-sections section .media-enquiries-content strong,
.post-additional-sections section .about-stafford-content strong {
  font-weight: 600;
}

@media (max-width: 991px) {
  .post-attachment-sidebar {
    padding-left: 0;
    margin-top: 40px;
  }
  .post-attachment-sidebar .attachment-card {
    padding: 20px;
  }
  .post-additional-sections {
    margin-top: 60px;
  }
  .post-additional-sections section {
    padding: 40px 0;
    margin-bottom: 40px;
  }
  .post-additional-sections section h3 {
    font-size: 30px;
  }
  .post-additional-sections section .media-enquiries-content,
  .post-additional-sections section .about-stafford-content {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .post-header-section {
    padding-top: 30px;
    margin-bottom: 30px;
  }
  .post-header-section .post-breadcrumbs {
    margin-bottom: 20px;
  }
  .post-content .post-main-content {
    font-size: 16px;
  }
  .post-attachment-sidebar {
    margin-top: 30px;
  }
  .post-attachment-sidebar .attachment-placeholder {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
  }
  .post-attachment-sidebar .attachment-placeholder svg {
    width: 30px;
    height: 30px;
  }
  .post-attachment-sidebar .attachment-info .attachment-title {
    font-size: 18px;
  }
  .post-additional-sections {
    margin-top: 50px;
  }
  .post-additional-sections section {
    margin-bottom: 30px;
    padding: 30px 0;
  }
  .post-additional-sections section h3 {
    font-size: 26px;
    margin-bottom: 20px;
  }
  .post-additional-sections section .media-enquiries-content,
  .post-additional-sections section .about-stafford-content {
    font-size: 16px;
    line-height: 1.6;
  }
}
/**
 * Resources Component Styles
 */
.staffordcp-resource-button-wrapper .staffordcp-resource-button.loading {
  opacity: 0.7;
  cursor: wait;
}

.staffordcp-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}
.staffordcp-modal .modal-content {
  background-color: #F7F2EB;
  margin: 5% auto;
  padding: 0;
  border: none;
  border-radius: 0;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .staffordcp-modal .modal-content {
    margin: 10% auto;
    width: 95%;
  }
}
.staffordcp-modal .modal-header {
  background-color: #314156;
  color: #FFFFFF;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.staffordcp-modal .modal-header h3 {
  margin: 0;
  font-size: 24px;
  font-weight: normal;
  font-family: linotype-didot, serif;
  color: #F7F2EB;
}
.staffordcp-modal .modal-header .modal-close {
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 28px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}
.staffordcp-modal .modal-header .modal-close:hover {
  opacity: 0.7;
}
.staffordcp-modal .modal-body {
  padding: 30px;
}
.staffordcp-modal .modal-body > p {
  color: #314156;
}

.resource-form-container p {
  color: #314156;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 10px;
}
.resource-form-container .wpcf7 {
  margin: 0;
}
.resource-form-container .wpcf7 .form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}
@media (max-width: 576px) {
  .resource-form-container .wpcf7 .form-row {
    flex-direction: column;
    gap: 0;
  }
}
.resource-form-container .wpcf7 .form-row {
  margin-bottom: 0;
}
.resource-form-container .wpcf7 .form-row.form-row--outer {
  flex-direction: column;
}
.resource-form-container .wpcf7 .form-field.half-width {
  flex: 1;
}
@media (max-width: 576px) {
  .resource-form-container .wpcf7 .form-field.half-width {
    margin-bottom: 15px;
  }
}
.resource-form-container .wpcf7 .disclaimer-section .disclaimer-heading {
  font-size: 30px;
  font-weight: 400;
  color: #314156;
  margin-bottom: 10px;
}
.resource-form-container .wpcf7 .disclaimer-section .disclaimer-content {
  margin-bottom: 10px;
  max-height: 400px;
  overflow-y: scroll;
}
.resource-form-container .wpcf7 .disclaimer-section .disclaimer-content p {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 300;
  color: #314156;
}
.resource-form-container .wpcf7 input[type=text],
.resource-form-container .wpcf7 input[type=email],
.resource-form-container .wpcf7 input[type=tel] {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  background: #FFFFFF;
  font-size: 16px;
  transition: border-color 0.3s ease;
}
.resource-form-container .wpcf7 input[type=text]:focus,
.resource-form-container .wpcf7 input[type=email]:focus,
.resource-form-container .wpcf7 input[type=tel]:focus {
  outline: none;
  border-color: #314156;
}
.resource-form-container .wpcf7 input[type=text]::placeholder,
.resource-form-container .wpcf7 input[type=email]::placeholder,
.resource-form-container .wpcf7 input[type=tel]::placeholder {
  color: #999;
}
.resource-form-container .wpcf7 .disclaimer-section {
  background: #f5f5f5;
  padding: 15px;
  margin: 0 0 15px;
  font-size: 14px;
  color: #666;
}
.resource-form-container .wpcf7 .disclaimer-section strong {
  color: #314156;
}
.resource-form-container .wpcf7 .privacy-section {
  margin: 0 0 15px;
}
.resource-form-container .wpcf7 .privacy-section h4 {
  margin-bottom: 15px;
}
.resource-form-container .wpcf7 .privacy-section p {
  margin-bottom: 10px;
  font-size: 14px;
}
.resource-form-container .wpcf7 .privacy-section p strong {
  color: #314156;
}
.resource-form-container .wpcf7 .privacy-section p em {
  color: #666;
}
.resource-form-container .wpcf7 .privacy-section .wpcf7-acceptance label {
  height: 20px;
  line-height: 20px;
  display: flex;
}
.resource-form-container .wpcf7 .privacy-section .wpcf7-acceptance input[type=checkbox] {
  margin-right: 8px;
  height: 20px;
  width: 20px;
}
.resource-form-container .wpcf7 .privacy-section .wpcf7-acceptance .wpcf7-list-item {
  display: block;
  margin: 15px 0 0;
}
.resource-form-container .wpcf7 .submit-section input[type=submit] {
  background-color: #314156;
  color: #FFFFFF;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 0;
}
.resource-form-container .wpcf7 .submit-section input[type=submit]:hover {
  background-color: rgb(30.4888888889, 40.4444444444, 53.5111111111);
}
.resource-form-container .wpcf7 .wpcf7-not-valid-tip {
  color: #dc3545;
  font-size: 14px;
  margin-top: 5px;
}
.resource-form-container .wpcf7 .wpcf7-response-output {
  margin: 20px 0 0;
  padding: 15px;
  border: none;
  font-size: 14px;
}
.resource-form-container .wpcf7 .wpcf7-response-output.wpcf7-validation-errors {
  background-color: #f8d7da;
  color: #721c24;
}
.resource-form-container .wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok {
  background-color: #d4edda;
  color: #155724;
}

.vc_ui-panel-content-container .wpb_el_type_autocomplete .select2-container {
  width: 100% !important;
}

.staffordcp-team-members.carousel-mode {
  padding: 20px 0;
  margin: 0 -15px;
}
@media (max-width: 1199px) {
  .staffordcp-team-members.carousel-mode {
    margin: 0;
  }
}
.staffordcp-team-members.carousel-mode .team-members-carousel {
  position: relative;
  padding: 0 70px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .staffordcp-team-members.carousel-mode .team-members-carousel {
    padding: 0 60px;
  }
}
@media (max-width: 767px) {
  .staffordcp-team-members.carousel-mode .team-members-carousel {
    padding: 0 50px;
  }
}
.staffordcp-team-members.carousel-mode .team-members-carousel .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.staffordcp-team-members.carousel-mode .team-members-carousel .swiper-slide {
  height: auto;
  display: flex;
}
.staffordcp-team-members.carousel-mode .team-members-carousel .swiper-slide .team-member-card {
  width: 100%;
  height: 100%;
}
.staffordcp-team-members.carousel-mode .team-members-carousel .swiper-button-prev,
.staffordcp-team-members.carousel-mode .team-members-carousel .swiper-button-next {
  width: 50px;
  height: 50px;
  background: #314156;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.staffordcp-team-members.carousel-mode .team-members-carousel .swiper-button-prev::after,
.staffordcp-team-members.carousel-mode .team-members-carousel .swiper-button-next::after {
  font-size: 20px;
  color: #F7F2EB;
  font-weight: bold;
}
.staffordcp-team-members.carousel-mode .team-members-carousel .swiper-button-prev:hover,
.staffordcp-team-members.carousel-mode .team-members-carousel .swiper-button-next:hover {
  background: #2BA8B2;
  transform: scale(1.1);
}
.staffordcp-team-members.carousel-mode .team-members-carousel .swiper-button-prev.swiper-button-disabled,
.staffordcp-team-members.carousel-mode .team-members-carousel .swiper-button-next.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.staffordcp-team-members.carousel-mode .team-members-carousel .swiper-button-prev.swiper-button-disabled:hover,
.staffordcp-team-members.carousel-mode .team-members-carousel .swiper-button-next.swiper-button-disabled:hover {
  background: #314156;
  transform: scale(1);
}
.staffordcp-team-members.carousel-mode .team-members-carousel .swiper-button-prev {
  left: 10px;
}
.staffordcp-team-members.carousel-mode .team-members-carousel .swiper-button-next {
  right: 10px;
}
.staffordcp-team-members.carousel-mode .team-members-carousel .swiper-pagination {
  bottom: -10px !important;
  position: relative;
  margin-top: 30px;
}
.staffordcp-team-members.carousel-mode .team-members-carousel .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #314156;
  opacity: 0.3;
  transition: all 0.3s ease;
  margin: 0 6px;
}
.staffordcp-team-members.carousel-mode .team-members-carousel .swiper-pagination .swiper-pagination-bullet:hover {
  opacity: 0.6;
}
.staffordcp-team-members.carousel-mode .team-members-carousel .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #2BA8B2;
  opacity: 1;
  transform: scale(1.2);
}

@media (max-width: 991px) {
  .staffordcp-team-members.carousel-mode .team-members-carousel .swiper-button-prev,
  .staffordcp-team-members.carousel-mode .team-members-carousel .swiper-button-next {
    width: 45px;
    height: 45px;
  }
  .staffordcp-team-members.carousel-mode .team-members-carousel .swiper-button-prev::after,
  .staffordcp-team-members.carousel-mode .team-members-carousel .swiper-button-next::after {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .staffordcp-team-members.carousel-mode .team-members-carousel {
    padding: 0 50px;
  }
  .staffordcp-team-members.carousel-mode .team-members-carousel .swiper-button-prev,
  .staffordcp-team-members.carousel-mode .team-members-carousel .swiper-button-next {
    width: 40px;
    height: 40px;
  }
  .staffordcp-team-members.carousel-mode .team-members-carousel .swiper-button-prev::after,
  .staffordcp-team-members.carousel-mode .team-members-carousel .swiper-button-next::after {
    font-size: 16px;
  }
  .staffordcp-team-members.carousel-mode .team-members-carousel .swiper-button-prev {
    left: 5px;
  }
  .staffordcp-team-members.carousel-mode .team-members-carousel .swiper-button-next {
    right: 5px;
  }
  .staffordcp-team-members.carousel-mode .team-members-carousel .swiper-pagination {
    margin-top: 25px;
  }
  .staffordcp-team-members.carousel-mode .team-members-carousel .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 4px;
  }
}
@media (max-width: 575px) {
  .staffordcp-team-members.carousel-mode .team-members-carousel .swiper-button-prev,
  .staffordcp-team-members.carousel-mode .team-members-carousel .swiper-button-next {
    width: 35px;
    height: 35px;
  }
  .staffordcp-team-members.carousel-mode .team-members-carousel .swiper-button-prev::after,
  .staffordcp-team-members.carousel-mode .team-members-carousel .swiper-button-next::after {
    font-size: 14px;
  }
  .staffordcp-team-members.carousel-mode .team-members-carousel .swiper-pagination {
    margin-top: 20px;
  }
  .staffordcp-team-members.carousel-mode .team-members-carousel .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 3px;
  }
}
.staffordcp-feature-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 0;
}
.staffordcp-feature-card .feature-card-image {
  position: relative;
  width: 100%;
  padding-bottom: 65%;
  overflow: hidden;
}
.staffordcp-feature-card .feature-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}
.staffordcp-feature-card.staffordcp-feature-card--wide {
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .staffordcp-feature-card.staffordcp-feature-card--wide .feature-card-content {
    text-align: left;
    align-items: flex-start;
  }
}
.staffordcp-feature-card .feature-card-content {
  background: #2BA8B2;
  padding: 30px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  transition: background 0.3s ease;
}
@media (max-width: 991px) {
  .staffordcp-feature-card .feature-card-content {
    padding: 40px 30px;
  }
}
@media (max-width: 767px) {
  .staffordcp-feature-card .feature-card-content {
    padding: 35px 25px;
    margin-bottom: 40px;
  }
}
.staffordcp-feature-card .feature-card-content:hover {
  background: #314156;
}
.staffordcp-feature-card .feature-card-content:hover .feature-card-button .feature-card-btn {
  background: #2BA8B2;
  transition: all 0.3s ease;
}
.staffordcp-feature-card .feature-card-content:hover .feature-card-button .feature-card-btn:hover {
  color: #F7F2EB;
}
.staffordcp-feature-card .feature-card-title {
  font-family: linotype-didot, serif;
  font-weight: 400;
  color: #F7F2EB;
  font-size: 28px;
  margin-bottom: 25px;
  letter-spacing: 1px;
  line-height: 1.2;
}
.staffordcp-feature-card .feature-card-description {
  font-family: "gill-sans-nova", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #F7F2EB;
  line-height: 1.5;
  margin-bottom: 35px;
  flex-grow: 1;
  max-width: calc(100% - 20px);
  min-height: 90px;
}
.staffordcp-feature-card .feature-card-button {
  margin-top: auto;
}
.staffordcp-feature-card .feature-card-button .feature-card-btn {
  display: inline-block;
  background: #314156;
  color: #F7F2EB;
  padding: 16px 40px;
  font-family: "gill-sans-nova", sans-serif;
  font-size: 18px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  border-radius: 30px;
  border: 2px solid #314156;
  transition: all 0.3s ease;
}
.staffordcp-feature-card .feature-card-button .feature-card-btn:hover {
  background: transparent;
  color: #314156;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.staffordcp-feature-card .feature-card-button .feature-card-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.staffordcp-feature-card:hover .feature-card-image img {
  transform: scale(1.05);
}
.staffordcp-feature-card.staffordcp-feature-card--wide {
  flex-direction: row;
  height: auto;
}
.staffordcp-feature-card.staffordcp-feature-card--wide:hover .feature-card-content {
  background: #314156;
}
@media (min-width: 992px) {
  .staffordcp-feature-card.staffordcp-feature-card--wide .feature-card-content {
    flex: 0 0 60%;
    max-width: 60%;
    background: #2BA8B2;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .staffordcp-feature-card.staffordcp-feature-card--wide .feature-card-image {
    flex: 0 0 40%;
    max-width: 40%;
    padding-bottom: 0;
    min-height: 400px;
  }
  .staffordcp-feature-card.staffordcp-feature-card--wide .feature-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1) !important;
  }
}
.staffordcp-feature-card.staffordcp-feature-card--wide.feature-card--image-right {
  flex-direction: row;
}
@media (min-width: 992px) {
  .staffordcp-feature-card.staffordcp-feature-card--wide.feature-card--image-right .feature-card-image img {
    border-top-left-radius: 80px;
  }
}
@media (max-width: 991px) {
  .staffordcp-feature-card.staffordcp-feature-card--wide.feature-card--image-right {
    flex-direction: column;
  }
  .staffordcp-feature-card.staffordcp-feature-card--wide.feature-card--image-right .feature-card-image {
    order: -1;
  }
}
.staffordcp-feature-card.staffordcp-feature-card--wide.feature-card--image-left {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .staffordcp-feature-card.staffordcp-feature-card--wide.feature-card--image-left .feature-card-image img {
    border-top-right-radius: 80px;
  }
}
@media (max-width: 991px) {
  .staffordcp-feature-card.staffordcp-feature-card--wide.feature-card--image-left {
    flex-direction: column;
  }
  .staffordcp-feature-card.staffordcp-feature-card--wide.feature-card--image-left .feature-card-image {
    order: -1;
  }
}
@media (max-width: 991px) {
  .staffordcp-feature-card.staffordcp-feature-card--wide {
    flex-direction: column;
  }
  .staffordcp-feature-card.staffordcp-feature-card--wide .feature-card-content {
    padding: 30px 20px;
  }
  .staffordcp-feature-card.staffordcp-feature-card--wide .feature-card-image {
    position: relative;
    width: 100%;
    padding-bottom: 65%;
  }
  .staffordcp-feature-card.staffordcp-feature-card--wide .feature-card-image img {
    border-radius: 0;
  }
}

.parallax-row {
  aspect-ratio: 16/7;
}
