/*
Theme Name: XT Grid Theme
Author: Xtensive Web Design
Author URI: https://www.xtensive.co.uk
Description: A base theme built with CSS Grid
Version: 1.0
*/
/* Breakpoints */
/* Colors */
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0 0 1rem 0;
  font-family: "gotham", sans-serif;
  font-weight: 700;
  font-style: normal;
}

h1 {
  font-size: 2.4rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.6rem;
}

h4 {
  font-size: 1.4rem;
}

p {
  font-size: 1rem;
  padding: 0;
  margin: 0 0 1rem 0;
}
p:last-of-type {
  margin: 0;
}

a {
  font-size: 1rem;
  color: #000;
  text-decoration-color: transparent;
  transition: 0.3s;
}
ul {
  padding: 1.5rem 0;
}

li {
  font-size: 1.1rem;
  padding: 0;
  margin: 0.5rem 0;
}

.wp-block-media-text {
  margin: 2rem 0;
}
@media (min-width: 900px) {
  .wp-block-media-text {
    margin: 4rem 0;
  }
}
.wp-block-media-text:first-of-type {
  margin: 0 0 2rem 0;
}
@media (min-width: 900px) {
  .wp-block-media-text:first-of-type {
    margin: 0 0 4rem 0;
  }
}
.wp-block-media-text:last-of-type {
  margin-bottom: 0;
}
.wp-block-media-text .wp-block-media-text__content {
  margin: 2rem 0 0 0;
  padding: 0;
}
@media (min-width: 900px) {
  .wp-block-media-text .wp-block-media-text__content {
    padding: 4rem 0 4rem 2rem;
    margin: 0;
  }
}
.wp-block-media-text .wp-block-media-text__media {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
@media (min-width: 900px) {
  .wp-block-media-text .wp-block-media-text__media {
    margin: 0 2rem 0 0;
  }
}
.wp-block-media-text .wp-block-media-text__media img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
@media (min-width: 900px) {
  .wp-block-media-text .wp-block-media-text__media img {
    height: 100%;
  }
}

@media (min-width: 900px) {
  .has-media-on-the-right .wp-block-media-text__content {
    padding: 4rem 2rem 4rem 0;
  }
}
.has-media-on-the-right .wp-block-media-text__media {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
@media (min-width: 900px) {
  .has-media-on-the-right .wp-block-media-text__media {
    margin: 0 0 0 2rem;
  }
}
.has-media-on-the-right .wp-block-media-text__media img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
@media (min-width: 900px) {
  .has-media-on-the-right .wp-block-media-text__media img {
    height: 100%;
  }
}

@media (max-width: 900px) {
  .wp-block-media-text.is-stacked-on-mobile {
    grid-template-columns: 100% !important;
  }
}
@media (max-width: 900px) {
  .wp-block-media-text.is-stacked-on-mobile > .wp-block-media-text__media {
    grid-column: 1;
    grid-row: 1;
  }
  .wp-block-media-text.is-stacked-on-mobile > .wp-block-media-text__content {
    grid-column: 1;
    grid-row: 2;
  }
}
.wp-block-columns {
  gap: 0;
  margin: 0;
}
@media (min-width: 900px) {
  .wp-block-columns {
    gap: 2rem;
  }
}
.wp-block-columns .wp-block-column ul {
  margin: 0;
}
@media (min-width: 900px) {
  .wp-block-columns .wp-block-column ul {
    margin: 1rem 0;
  }
}

.clients-candidates {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 2rem 1rem;
}
@media (min-width: 900px) {
  .clients-candidates {
    padding: 4rem 1rem;
  }
}
.clients-candidates {
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease forwards 0.7s;
}
.clients-candidates .clients-candidates-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .clients-candidates .clients-candidates-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.clients-candidates .clients-candidates-grid .clients-candidates-box {
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  overflow: hidden;
}
.clients-candidates .clients-candidates-grid .clients-candidates-box .clients-candidates-image {
  overflow: hidden;
  height: 300px;
}
.clients-candidates .clients-candidates-grid .clients-candidates-box .clients-candidates-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0;
  display: block;
  transition: 0.3s;
  overflow: hidden;
}
.clients-candidates .clients-candidates-grid .clients-candidates-box .clients-candidates-content {
  padding: 1rem 1.5rem;
  color: #fff;
  background: #3B7E8D;
}
.clients-candidates .clients-candidates-grid .clients-candidates-box .clients-candidates-content span {
  margin: 2rem 0 0 0;
  border-radius: 1rem;
  background: #fff;
  color: #3B7E8D;
  border: 2px solid #3B7E8D;
}
.clients-candidates .clients-candidates-grid .clients-candidates-box:hover img, .clients-candidates .clients-candidates-grid .clients-candidates-box:focus img {
  transform: scale(1.1);
}
.clients-candidates .clients-candidates-grid .clients-candidates-box:hover span, .clients-candidates .clients-candidates-grid .clients-candidates-box:focus span {
  background: #3B7E8D;
  color: #fff;
  border: 2px solid #fff;
}

.services-wrap {
  width: 100%;
  background: #F8F9FA;
}
.services-wrap .services {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 2rem 1rem;
}
@media (min-width: 900px) {
  .services-wrap .services {
    padding: 4rem 1rem;
  }
}
.services-wrap .services .services-introduction {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.services-wrap .services .services-introduction h2 {
  color: #3B7E8D;
  margin: 0 0 0.5rem 0;
}
.services-wrap .services .services-grid {
  margin: 2rem 0 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 576px) {
  .services-wrap .services .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .services-wrap .services .services-grid {
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(3, 14rem);
  }
}
.services-wrap .services .services-grid .services-box {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  display: block;
}
.services-wrap .services .services-grid .services-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.3s;
}
.services-wrap .services .services-grid .services-box:hover img {
  transform: scale(1.1);
}
.services-wrap .services .services-grid .services-box .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  background: rgba(0, 0, 0, 0.3);
  padding: 1rem;
}
.services-wrap .services .services-grid .services-box .overlay h3 {
  color: #fff;
  margin: 0;
}
@media (min-width: 900px) {
  .services-wrap .services .services-grid .services-box:nth-child(1) {
    grid-area: 1/1/2/7;
  }
  .services-wrap .services .services-grid .services-box:nth-child(2) {
    grid-area: 1/7/3/9;
  }
  .services-wrap .services .services-grid .services-box:nth-child(3) {
    grid-area: 2/1/3/4;
  }
  .services-wrap .services .services-grid .services-box:nth-child(4) {
    grid-area: 2/4/3/7;
  }
  .services-wrap .services .services-grid .services-box:nth-child(5) {
    grid-area: 3/1/4/5;
  }
  .services-wrap .services .services-grid .services-box:nth-child(6) {
    grid-area: 3/5/4/9;
  }
}

.recent-job-listings {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 2rem 1rem;
}
@media (min-width: 900px) {
  .recent-job-listings {
    padding: 4rem 1rem;
  }
}
.recent-job-listings .recent-job-listings-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 0 2rem 0;
}
.recent-job-listings .recent-job-listings-header h2 {
  color: #3B7E8D;
}
@media (min-width: 900px) {
  .recent-job-listings .recent-job-listings-widget .job_listings {
    text-align: center;
  }
}
.recent-job-listings .recent-job-listings-widget .job_listings h3 {
  font-weight: 400 !important;
}
.recent-job-listings .recent-job-listings-widget .job_listings .location {
  color: #000;
  font-weight: 500;
}
.recent-job-listings .recent-job-listings-widget .job_listings .meta li {
  color: #000;
  font-weight: 500;
}
.recent-job-listings .recent-job-listings-widget .job_listings .load_more_jobs {
  display: block;
  margin: 2rem 0 0 0;
  color: #fff;
  padding: 1rem;
  background: #3B7E8D;
  transition: 0.3s;
  display: inline-block;
  font-weight: 700;
  border-radius: 1rem;
  border: 2px solid #3B7E8D;
  font-size: 1rem;
  cursor: pointer;
}
.recent-job-listings .recent-job-listings-widget .job_listings .load_more_jobs:hover, .recent-job-listings .recent-job-listings-widget .job_listings .load_more_jobs:focus {
  color: #3B7E8D;
  background: #fff;
}

.usp-bar {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 2rem 1rem;
}
@media (min-width: 900px) {
  .usp-bar {
    padding: 4rem 1rem;
  }
}
@media (min-width: 576px) {
  .usp-bar .slick-track {
    display: flex;
    gap: 1rem;
  }
}
.usp-bar .slick-slide {
  height: auto;
}
.usp-bar .usp-box {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #3B7E8D;
  border-radius: 1rem;
  padding: 2rem 1rem;
  min-height: 150px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.usp-bar .usp-box .heading {
  margin: 0.5rem 0 0 0;
  color: #fff;
  font-weight: 600;
  line-height: 1.4;
}
.usp-bar .usp-box .iconify {
  font-size: 2.5rem;
  color: #fff;
}

.testimonial-wrap {
  width: 100%;
  background: linear-gradient(90deg, #3B7E8D 0%, #78C7D8 100%);
  margin: 0 0 4rem 0;
}
.testimonial-wrap .testimonial {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 2rem 1rem;
}
@media (min-width: 900px) {
  .testimonial-wrap .testimonial {
    padding: 4rem 1rem;
  }
}
.testimonial-wrap .testimonial {
  position: relative;
  color: #fff;
}
.testimonial-wrap .testimonial h2 {
  text-align: center;
  margin: 0;
}
.testimonial-wrap .testimonial p {
  text-align: center;
  margin: 0 0 2rem 0;
}
.testimonial-wrap .testimonial .slick-track {
  display: flex;
  gap: 1rem;
}
.testimonial-wrap .testimonial .testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
}
.testimonial-wrap .testimonial .testimonial-slider .testimonial-card {
  display: flex !important;
  flex-direction: column;
  padding: 2rem;
  background: #fff;
  border-radius: 1rem;
}
.testimonial-wrap .testimonial .testimonial-slider .testimonial-card p {
  color: #000;
  text-align: center;
  margin: 0;
}
.testimonial-wrap .testimonial .testimonial-slider .testimonial-card .name {
  color: #3B7E8D;
  margin: 1rem 0 0 0;
  text-align: center;
}
.testimonial-wrap .testimonial .arrows-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 900px) {
  .testimonial-wrap .testimonial .arrows-container {
    position: absolute;
    inset: 0;
  }
}
.testimonial-wrap .testimonial .slick-prev,
.testimonial-wrap .testimonial .slick-next {
  position: static;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}
@media (min-width: 900px) {
  .testimonial-wrap .testimonial .slick-prev,
  .testimonial-wrap .testimonial .slick-next {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
  }
}
.testimonial-wrap .testimonial .slick-prev .iconify,
.testimonial-wrap .testimonial .slick-next .iconify {
  font-size: 1.8rem;
}
@media (min-width: 900px) {
  .testimonial-wrap .testimonial .slick-prev {
    left: 0;
  }
}
@media (min-width: 992px) {
  .testimonial-wrap .testimonial .slick-prev {
    left: 8%;
  }
}
@media (min-width: 900px) {
  .testimonial-wrap .testimonial .slick-next {
    right: 0;
  }
}
@media (min-width: 992px) {
  .testimonial-wrap .testimonial .slick-next {
    right: 8%;
  }
}

.introduction {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.introduction.home-introduction {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 2rem 1rem;
}
@media (min-width: 900px) {
  .introduction.home-introduction {
    padding: 4rem 1rem;
  }
}
@media (min-width: 900px) {
  .introduction {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}
.introduction .introduction-box {
  width: 100%;
}
@media (min-width: 900px) {
  .introduction .introduction-box {
    width: 45%;
  }
}
.introduction .introduction-box h2 {
  color: #3B7E8D;
}
.introduction .introduction-box .btn {
  margin: 2rem 0 0 0;
}
.introduction .introduction-image {
  width: 100%;
  display: flex;
  height: 400px;
  position: relative;
}
@media (min-width: 900px) {
  .introduction .introduction-image {
    width: 45%;
  }
  .introduction .introduction-image::before {
    content: "";
    position: absolute;
    left: -1.5rem;
    bottom: -1.5rem;
    width: 100%;
    height: 100%;
    background: #78C7D8;
    border-radius: 1rem;
    z-index: -1;
  }
}
.introduction .introduction-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

.home-contact-us {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.home-contact-us .overlay {
  width: 100%;
  height: 100%;
  background: rgba(59, 126, 141, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 0;
}
.home-contact-us .overlay .contact-box {
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 2rem;
}
.home-contact-us .overlay .contact-box .contact-container {
  color: #fff;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 900px) {
  .home-contact-us .overlay .contact-box .contact-container {
    width: 80%;
  }
}
.home-contact-us .overlay .contact-box .contact-container h2 {
  color: #fff;
}
.home-contact-us .overlay .contact-box .contact-container p {
  color: #fff;
}
.home-contact-us .overlay .contact-box .contact-container .links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0 0 0;
}
.home-contact-us .overlay .contact-box .contact-container .links .btn {
  margin: 1rem 0 0 0;
  background: #fff;
  color: #3B7E8D;
  border: 2px solid #fff;
}
.home-contact-us .overlay .contact-box .contact-container .links .btn:hover, .home-contact-us .overlay .contact-box .contact-container .links .btn:focus {
  background: #3B7E8D;
  color: #fff;
}

.address-container {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.address-container .iconify {
  color: #fff;
  margin: 0.3rem 0 0 0;
  font-size: 1.5rem;
}

.gform_required_legend {
  display: none;
}

.gfield_consent_label a {
  font-size: 0.9rem;
  position: relative;
}
.gfield_consent_label a::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: #000;
  transition: width 0.3s ease;
}
.gfield_consent_label a:hover {
  color: #000;
}
.gfield_consent_label a:hover::before {
  width: 100%;
}

.gform_wrapper.gravity-theme input[type=color],
.gform_wrapper.gravity-theme input[type=date],
.gform_wrapper.gravity-theme input[type=datetime-local],
.gform_wrapper.gravity-theme input[type=datetime],
.gform_wrapper.gravity-theme input[type=email],
.gform_wrapper.gravity-theme input[type=month],
.gform_wrapper.gravity-theme input[type=number],
.gform_wrapper.gravity-theme input[type=password],
.gform_wrapper.gravity-theme input[type=search],
.gform_wrapper.gravity-theme input[type=tel],
.gform_wrapper.gravity-theme input[type=text],
.gform_wrapper.gravity-theme input[type=time],
.gform_wrapper.gravity-theme input[type=url],
.gform_wrapper.gravity-theme input[type=week],
.gform_wrapper.gravity-theme select,
.gform_wrapper.gravity-theme textarea {
  background: #F8F9FA;
  border: none;
  border-radius: 1rem;
}

.split {
  display: flex;
  flex-direction: column-reverse;
  gap: 2rem;
  max-width: 80rem;
}
@media (min-width: 900px) {
  .split {
    flex-direction: row;
    justify-content: space-between;
    gap: 4rem;
  }
}
.split .section-one {
  width: 100%;
}
@media (min-width: 900px) {
  .split .section-one {
    width: 60%;
  }
}
.split .section-two {
  width: 100%;
}
@media (min-width: 900px) {
  .split .section-two {
    width: 40%;
  }
}
.split .section-two h2 {
  color: #3B7E8D;
}
.split .section-two p {
  margin: 0 0 1rem 0;
}
.split .section-two .contact-details {
  margin: 0 0 2rem 0;
}
.split .section-two .contact-details .card {
  padding: 2rem;
  background: #3B7E8D;
  margin: 0 0 2rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.split .section-two .contact-details .card h3 {
  color: #fff;
  font-size: 1.5rem;
  margin: 0;
}
.split .section-two .contact-details .card p {
  margin: 0;
  color: #fff;
}
.split .section-two .contact-details .card p .iconify {
  color: #fff;
  margin: 0 1rem 0 0;
  font-size: 1.5rem;
  position: relative;
  top: 5px;
}
.split .section-two .contact-details .card a {
  display: inline-block;
  color: #fff;
  position: relative;
}
.split .section-two .contact-details .card a::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.3s ease;
}
.split .section-two .contact-details .card a:hover {
  color: #fff;
}
.split .section-two .contact-details .card a:hover::before {
  width: 100%;
}
.split .section-two .contact-details p {
  margin: 0;
  color: #000;
}
.split .section-two .contact-details p .iconify {
  color: #000;
  margin: 0 0.5rem -0.2rem 0;
}
.split .section-two .contact-details a {
  display: inline-block;
  color: #000;
  position: relative;
}
.split .section-two .contact-details a::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.3s ease;
}
.split .section-two .contact-details a:hover {
  color: #fff;
}
.split .section-two .contact-details a:hover::before {
  width: 100%;
}

.gform-field-label {
  font-family: "roboto", sans-serif !important;
  font-weight: 400 !important;
  font-style: normal !important;
}

.error {
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.error .overlay {
  width: 100%;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  margin: 2rem 0 0 0;
}
@media (min-width: 900px) {
  .error .overlay {
    margin: 0;
  }
}
.error .content {
  text-align: center;
}
.error .content .btn {
  margin: 1rem 0 0 0;
}

.blog-header {
  width: 100%;
  background: #333;
  padding: 2rem;
  text-align: center;
}
.blog-header h2 {
  color: #fff;
}

.blog-post {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
@media (min-width: 576px) {
  .blog-post {
    width: 48%;
    margin: 0 1%;
  }
  @supports (display: grid) {
    .blog-post {
      width: 100%;
      margin: 0;
    }
  }
}
.blog-post .image {
  width: 100%;
  height: 300px;
  background-size: cover !important;
  background-position: center center !important;
}
.blog-post .meta {
  color: #000;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.blog-post .title {
  color: #000;
  font-size: 1.2rem;
}
.blog-post p {
  color: #000;
}

.job-post-layout {
  width: 100%;
  max-width: 75rem;
  padding: 2rem;
  margin: 0 auto;
}
.job-post-layout .attachment-post-thumbnail {
  margin-bottom: 2rem;
}
.job-post-layout .attachment-post-thumbnail img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.job-post-layout .application_button {
  color: #fff;
  padding: 1rem;
  background: #3B7E8D;
  transition: 0.3s;
  display: inline-block;
  font-weight: 700;
  border-radius: 1rem;
  border: 2px solid #3B7E8D;
  transition: 0.3s;
  font-size: 1rem;
  cursor: pointer;
}
.job-post-layout .application_button:hover, .job-post-layout .application_button:focus {
  color: #3B7E8D;
  background: #fff;
}

.news-main {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}
@media (min-width: 900px) {
  .news-main {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pagination {
  text-align: center;
  margin: 2rem 0 0 0;
}
.pagination .page-numbers {
  color: #fff;
  font-weight: 700;
  padding: 0;
  background: #fff;
  color: #fff;
}
@media (min-width: 576px) {
  .pagination .page-numbers {
    padding: 0.5rem 1rem;
    background: #000;
  }
}
@media (min-width: 576px) {
  .pagination .page-numbers:hover, .pagination .page-numbers:focus {
    background: #000;
    color: #fff;
  }
}
@media (min-width: 576px) {
  .pagination .current {
    background: #000;
    color: #fff;
  }
}

.usp-bar-wrap {
  width: 100%;
  background: linear-gradient(90deg, #3B7E8D 0%, #78C7D8 100%);
}
.usp-bar-wrap .usp-bar {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 2rem 1rem;
}
@media (min-width: 900px) {
  .usp-bar-wrap .usp-bar {
    padding: 4rem 1rem;
  }
}
.usp-bar-wrap .usp-bar {
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease forwards 0.3s;
}
@media (min-width: 576px) {
  .usp-bar-wrap .usp-bar .slick-track {
    display: flex;
    gap: 1rem;
  }
}
.usp-bar-wrap .usp-bar .slick-slide {
  height: auto;
}
.usp-bar-wrap .usp-bar .usp-box {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
  border-radius: 1rem;
  padding: 2rem 1rem;
  min-height: 150px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.usp-bar-wrap .usp-bar .usp-box .heading {
  margin: 0.5rem 0 0 0;
  color: #3B7E8D;
  font-weight: 600;
  line-height: 1.4;
}
.usp-bar-wrap .usp-bar .usp-box .iconify {
  font-size: 2.5rem;
  color: #3B7E8D;
}

.key-information-introduction h2 {
  color: #3B7E8D;
}
.key-information-introduction ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.key-information-introduction li {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  position: relative;
  padding-left: 14px;
}
.key-information-introduction li:before {
  content: "";
  width: 5px;
  height: 5px;
  background: #78C7D8;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 9px;
}
.key-information-introduction li:last-child {
  margin-bottom: 0;
}

.additional-information h2 {
  color: #3B7E8D;
}
.additional-information a {
  color: #3B7E8D;
  position: relative;
}
.additional-information a::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: #3B7E8D;
  transition: width 0.3s ease;
}
.additional-information a:hover {
  color: #3B7E8D;
}
.additional-information a:hover::before {
  width: 100%;
}

.service-wrap {
  width: 100%;
  background: #F8F9FA;
}
.service-wrap .service {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 2rem 1rem;
}
@media (min-width: 900px) {
  .service-wrap .service {
    padding: 4rem 1rem;
  }
}
.service-wrap .service {
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease forwards 0.3s;
}
.service-wrap .service .service-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 576px) {
  .service-wrap .service .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .service-wrap .service .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.service-wrap .service .service-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}
.service-wrap .service .service-card h3 {
  background: linear-gradient(135deg, #3B7E8D, #78C7D8);
  color: #fff;
  margin: 0;
  padding: 1.3rem 1.5rem;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.service-wrap .service .service-card .service-text {
  padding: 1.4rem 1.6rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.service-wrap .service .service-card .service-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-wrap .service .service-card .service-text li {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  position: relative;
  padding-left: 14px;
}
.service-wrap .service .service-card .service-text li:before {
  content: "";
  width: 5px;
  height: 5px;
  background: #78C7D8;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 9px;
}
.service-wrap .service .service-card .service-text li:last-child {
  margin-bottom: 0;
}

.specialisms-wrap {
  width: 100%;
  background: #F8F9FA;
}
.specialisms-wrap .specialisms {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 2rem 1rem;
}
@media (min-width: 900px) {
  .specialisms-wrap .specialisms {
    padding: 4rem 1rem;
  }
}
.specialisms-wrap .specialisms {
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease forwards 0.3s;
}
.specialisms-wrap .specialisms .specialisms-header {
  margin: 0 0 2rem 0;
}
.specialisms-wrap .specialisms .specialisms-header h2 {
  margin: 0 0 0.5rem 0;
  color: #3B7E8D;
}
.specialisms-wrap .specialisms .specialisms-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 576px) {
  .specialisms-wrap .specialisms .specialisms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .specialisms-wrap .specialisms .specialisms-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.specialisms-wrap .specialisms .specialisms-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}
.specialisms-wrap .specialisms .specialisms-card h3 {
  background: linear-gradient(135deg, #3B7E8D, #78C7D8);
  color: #fff;
  margin: 0;
  padding: 1.3rem 1.5rem;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.specialisms-wrap .specialisms .specialisms-card h3 .iconify {
  width: 10%;
}
.specialisms-wrap .specialisms .specialisms-card .specialisms-text {
  padding: 1.4rem 1.6rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.specialisms-wrap .specialisms .specialisms-card .specialisms-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.specialisms-wrap .specialisms .specialisms-card .specialisms-text li {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  position: relative;
  padding-left: 14px;
}
.specialisms-wrap .specialisms .specialisms-card .specialisms-text li:before {
  content: "";
  width: 5px;
  height: 5px;
  background: #78C7D8;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 9px;
}
.specialisms-wrap .specialisms .specialisms-card .specialisms-text li:last-child {
  margin-bottom: 0;
}

.why-choose h2 {
  color: #3B7E8D;
}
.why-choose h3 {
  color: #3B7E8D;
}

.roles-we-place-wrap {
  width: 100%;
  background: #F8F9FA;
}
.roles-we-place-wrap .roles-we-place {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 2rem 1rem;
}
@media (min-width: 900px) {
  .roles-we-place-wrap .roles-we-place {
    padding: 4rem 1rem;
  }
}
.roles-we-place-wrap .roles-we-place {
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease forwards 0.3s;
}
.roles-we-place-wrap .roles-we-place .roles-we-place-header {
  margin: 0 0 2rem 0;
}
.roles-we-place-wrap .roles-we-place .roles-we-place-header h2 {
  margin: 0 0 0.5rem 0;
  color: #3B7E8D;
}
.roles-we-place-wrap .roles-we-place .roles-we-place-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 576px) {
  .roles-we-place-wrap .roles-we-place .roles-we-place-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.roles-we-place-wrap .roles-we-place .roles-we-place-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}
.roles-we-place-wrap .roles-we-place .roles-we-place-card:hover {
  transform: translateY(-3px);
}
.roles-we-place-wrap .roles-we-place .roles-we-place-card:hover h3 {
  background: linear-gradient(135deg, rgb(49.973, 106.722, 119.427), rgb(96.2586206897, 189.1517241379, 209.1413793103));
}
.roles-we-place-wrap .roles-we-place .roles-we-place-card h3 {
  background: linear-gradient(135deg, #3B7E8D, #78C7D8);
  color: #fff;
  margin: 0;
  padding: 1.3rem 1.5rem;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.roles-we-place-wrap .roles-we-place .roles-we-place-card .roles-we-place-text {
  padding: 1.4rem 1.6rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.roles-we-place-wrap .roles-we-place .roles-we-place-card .roles-we-place-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.roles-we-place-wrap .roles-we-place .roles-we-place-card .roles-we-place-text li {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  position: relative;
  padding-left: 14px;
}
.roles-we-place-wrap .roles-we-place .roles-we-place-card .roles-we-place-text li:before {
  content: "";
  width: 5px;
  height: 5px;
  background: #78C7D8;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 9px;
}
.roles-we-place-wrap .roles-we-place .roles-we-place-card .roles-we-place-text li:last-child {
  margin-bottom: 0;
}

.extra-information h2 {
  color: #3B7E8D;
}
.extra-information h3 {
  color: #3B7E8D;
}
.extra-information ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.extra-information li {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  position: relative;
  padding-left: 14px;
}
.extra-information li:before {
  content: "";
  width: 5px;
  height: 5px;
  background: #78C7D8;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 9px;
}
.extra-information li:last-child {
  margin-bottom: 0;
}

.locations-wrap {
  background: #F8F9FA;
  width: 100%;
}
.locations-wrap .locations {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 2rem 1rem;
}
@media (min-width: 900px) {
  .locations-wrap .locations {
    padding: 4rem 1rem;
  }
}
.locations-wrap .locations {
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease forwards 0.3s;
}
.locations-wrap .locations .location-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.locations-wrap .locations .location-tabs .tab-btn {
  padding: 0.9rem 1.6rem;
  border: 1px solid #fff;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
  color: #000;
  transition: 0.2s;
  position: relative;
  border-radius: 6px 6px 0 0;
  border-bottom: 0;
}
.locations-wrap .locations .location-tabs .tab-btn:hover {
  background: #3B7E8D;
  color: #fff;
}
.locations-wrap .locations .location-tabs .tab-btn.active {
  background: #3B7E8D;
  color: #fff;
}
.locations-wrap .locations .location {
  display: none;
  background: #fff;
  padding: 3rem;
  border-radius: 0 1rem 1rem 1rem;
}
.locations-wrap .locations .location.active {
  display: block;
}
.locations-wrap .locations .location:last-child {
  margin-bottom: 0;
}
.locations-wrap .locations .location .location-top {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 900px) {
  .locations-wrap .locations .location .location-top {
    grid-template-columns: 2fr 1fr;
    align-items: start;
  }
}
.locations-wrap .locations .location .location-left h2 {
  margin-bottom: 1rem;
  position: relative;
  color: #3B7E8D;
}
.locations-wrap .locations .location .location-left p:last-child {
  margin-bottom: 0;
}
.locations-wrap .locations .location .location-right {
  background: #F8F9FA;
  padding: 2rem;
  border-radius: 1rem;
}
.locations-wrap .locations .location .location-right p {
  margin-bottom: 0.6rem;
}
.locations-wrap .locations .location .location-right a {
  position: relative;
}
.locations-wrap .locations .location .location-right a::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: #3B7E8D;
  transition: width 0.3s ease;
}
.locations-wrap .locations .location .location-right a:hover {
  color: #3B7E8D;
}
.locations-wrap .locations .location .location-right a:hover::before {
  width: 100%;
}
.locations-wrap .locations .location .location-map {
  margin-bottom: 2.5rem;
}
.locations-wrap .locations .location .location-map iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 10px;
}
.locations-wrap .locations .location .meet-the-team {
  margin-top: 1.5rem;
}
.locations-wrap .locations .location .meet-the-team h3 {
  margin-bottom: 2rem;
  color: #3B7E8D;
}
.locations-wrap .locations .location .meet-the-team .team-container {
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .locations-wrap .locations .location .meet-the-team .team-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .locations-wrap .locations .location .meet-the-team .team-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
.locations-wrap .locations .location .meet-the-team .team-member {
  border: 1px solid #3B7E8D;
  padding: 1.5rem;
  background: #fff;
  border-radius: 1rem;
}
.locations-wrap .locations .location .meet-the-team .team-member h4 {
  margin-bottom: 0.5rem;
}
.locations-wrap .locations .location .meet-the-team .team-member p:last-child {
  margin-bottom: 0;
}

.btn, #gform_submit_button_1 {
  color: #fff;
  padding: 1rem;
  background: #3B7E8D;
  transition: 0.3s;
  display: inline-block;
  font-weight: 700;
  border-radius: 1rem;
  border: 2px solid #3B7E8D;
  transition: 0.3s;
  font-size: 1rem;
  cursor: pointer;
}
.btn:hover, .btn:focus, #gform_submit_button_1:hover, #gform_submit_button_1:focus {
  color: #3B7E8D;
  background: #fff;
}

footer {
  background: #252525;
  width: 100%;
  display: flex;
  flex-direction: column;
}
footer p {
  margin: 0;
}
footer .main-footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 2rem 1rem;
}
@media (min-width: 900px) {
  footer .main-footer {
    padding: 4rem 1rem;
  }
}
footer .main-footer {
  padding: 4rem 1rem;
}
@media (min-width: 900px) {
  footer .main-footer {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2rem;
  }
}
footer .main-footer .section-one {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 900px) {
  footer .main-footer .section-one {
    width: 30%;
    align-items: flex-start;
  }
}
footer .main-footer .section-one .logo {
  margin: 0 0 1rem 0;
  background: #fff;
  padding: 1rem;
}
footer .main-footer .section-one .logo img {
  max-width: 10rem;
  height: auto;
  transition: 0.3s;
  display: block;
}
footer .main-footer .section-one p {
  color: #fff;
  text-align: center;
  max-width: 500px;
}
@media (min-width: 900px) {
  footer .main-footer .section-one p {
    font-size: 0.8rem;
    text-align: left;
  }
}
footer .main-footer .section-two {
  margin: 1rem 0 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 900px) {
  footer .main-footer .section-two {
    width: 25%;
    margin: 0;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
footer .main-footer .section-two h2 {
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
}
@media (min-width: 900px) {
  footer .main-footer .section-two h2 {
    text-align: left;
  }
}
footer .main-footer .section-two a {
  display: block;
  color: #fff;
  transition: 0.3s;
  text-align: center;
  margin: 0 0 0.5rem 0;
  position: relative;
}
footer .main-footer .section-two a::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.3s ease;
}
footer .main-footer .section-two a:hover {
  color: #fff;
}
footer .main-footer .section-two a:hover::before {
  width: 100%;
}
@media (min-width: 900px) {
  footer .main-footer .section-two a {
    text-align: left;
  }
}
footer .main-footer .section-three {
  margin: 1rem 0 0 0;
}
@media (min-width: 900px) {
  footer .main-footer .section-three {
    width: 25%;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
}
footer .main-footer .section-three h2 {
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
  margin: 0;
}
@media (min-width: 900px) {
  footer .main-footer .section-three h2 {
    text-align: left;
  }
}
footer .main-footer .section-three p {
  color: #fff;
  text-align: center;
}
@media (min-width: 900px) {
  footer .main-footer .section-three p {
    text-align: left;
  }
}
footer .main-footer .section-three p a {
  color: #fff;
  transition: 0.3s;
  text-align: center;
  margin: 0 0 0.5rem 0;
  position: relative;
}
footer .main-footer .section-three p a::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.3s ease;
}
footer .main-footer .section-three p a:hover {
  color: #fff;
}
footer .main-footer .section-three p a:hover::before {
  width: 100%;
}
@media (min-width: 900px) {
  footer .main-footer .section-three p a {
    text-align: left;
  }
}
footer .main-footer .section-three .footer-address {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0.5rem 0 0 0;
}
@media (min-width: 900px) {
  footer .main-footer .section-three .footer-address {
    justify-content: flex-start;
  }
}
footer .main-footer .section-three .footer-address address {
  color: #fff;
  text-align: center;
}
@media (min-width: 900px) {
  footer .main-footer .section-three .footer-address address {
    text-align: left;
  }
}
footer .main-footer .section-four {
  margin: 1rem 0 0 0;
}
@media (min-width: 900px) {
  footer .main-footer .section-four {
    width: 25%;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
}
footer .main-footer .section-four h2 {
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
  margin: 0;
}
@media (min-width: 900px) {
  footer .main-footer .section-four h2 {
    text-align: left;
  }
}
footer .main-footer .section-four p {
  color: #fff;
  text-align: center;
}
@media (min-width: 900px) {
  footer .main-footer .section-four p {
    text-align: left;
  }
}
footer .main-footer .section-four p a {
  color: #fff;
  transition: 0.3s;
  text-align: center;
  margin: 0 0 0.5rem 0;
  position: relative;
}
footer .main-footer .section-four p a::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.3s ease;
}
footer .main-footer .section-four p a:hover {
  color: #fff;
}
footer .main-footer .section-four p a:hover::before {
  width: 100%;
}
@media (min-width: 900px) {
  footer .main-footer .section-four p a {
    text-align: left;
  }
}
footer .main-footer .section-four .footer-address {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 0.5rem;
}
@media (min-width: 900px) {
  footer .main-footer .section-four .footer-address {
    justify-content: flex-start;
  }
}
footer .main-footer .section-four .footer-address address {
  color: #fff;
  text-align: center;
}
@media (min-width: 900px) {
  footer .main-footer .section-four .footer-address address {
    text-align: left;
  }
}
footer .bottom-footer-wrap .bottom-footer {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 2rem 1rem;
}
@media (min-width: 900px) {
  footer .bottom-footer-wrap .bottom-footer {
    padding: 4rem 1rem;
  }
}
footer .bottom-footer-wrap .bottom-footer {
  padding: 1rem !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 900px) {
  footer .bottom-footer-wrap .bottom-footer {
    flex-direction: row;
    justify-content: space-between;
  }
}
footer .bottom-footer-wrap .bottom-footer p {
  color: #fff;
  font-size: 0.8rem;
  margin: 0 0 0.5rem 0;
  text-align: center;
}
@media (min-width: 900px) {
  footer .bottom-footer-wrap .bottom-footer p {
    text-align: left;
    margin: 0;
  }
}
footer .bottom-footer-wrap .bottom-footer a {
  color: #fff;
  transition: 0.3s;
  font-size: 0.8rem;
  position: relative;
}
footer .bottom-footer-wrap .bottom-footer a::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.3s ease;
}
footer .bottom-footer-wrap .bottom-footer a:hover {
  color: #fff;
}
footer .bottom-footer-wrap .bottom-footer a:hover::before {
  width: 100%;
}

.home.active {
  height: 100%;
  overflow: hidden !important;
}

.site-header {
  background: #fff;
  display: flex;
  flex-wrap: wrap;
}
.site-header .container {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}
.site-header .logo img {
  max-width: 12.5rem;
  height: auto;
}
.site-header .logo a {
  display: flex;
}
.site-header #mobile-button {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border: 0;
  background: none;
  cursor: pointer;
  -webkit-appearance: none;
}
.site-header #mobile-button .iconify {
  color: #000;
  width: 25px;
  height: 25px;
  transition: 0.3s;
}
.site-header #mobile-button .iconify:hover, .site-header #mobile-button .iconify:focus {
  color: #3B7E8D;
}
@media (min-width: 900px) {
  .site-header #mobile-button {
    display: none;
  }
}
.site-header #close-button {
  position: absolute;
  top: 50px;
  right: 1rem;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
}
.site-header #close-button .iconify {
  color: #000;
  width: 25px;
  height: 25px;
  transition: 0.3s;
}
.site-header #close-button .iconify:hover, .site-header #close-button .iconify:focus {
  color: #3B7E8D;
}
.site-header #back-button {
  display: none;
  position: absolute;
  top: 50px;
  right: 1rem;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  z-index: 1002;
  transition: 0.3s;
  color: #000;
}
.site-header #back-button.active {
  display: block;
}
@media (min-width: 992px) {
  .site-header #back-button.active {
    display: none;
  }
}
.site-header #back-button .iconify {
  width: 20px;
  height: 20px;
  transition: 0.3s;
}
.site-header #back-button .iconify:focus, .site-header #back-button .iconify:hover {
  color: #3B7E8D;
}

#mobile-menu {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  overflow: scroll;
  padding: 1rem;
  margin: 0;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
#mobile-menu.active {
  opacity: 1;
  visibility: visible;
}
#mobile-menu .menu-primary-container {
  width: 100%;
}
#mobile-menu .menu {
  text-align: center;
  margin: 20px 0;
}
#mobile-menu .menu li a {
  display: inline-block;
  margin: 0.5rem 0;
}
#mobile-menu .sub-menu {
  list-style-type: none;
  padding: 4rem 0rem 0rem 1rem;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}
@media (min-width: 992px) {
  #mobile-menu .sub-menu {
    padding: 2rem 0 0;
  }
}
#mobile-menu .sub-menu.active {
  opacity: 1;
  visibility: visible;
}
#mobile-menu .sub-menu li {
  padding: 0.5rem 0;
}
@media (min-width: 900px) {
  #mobile-menu {
    display: none;
  }
}

#main-menu {
  display: none;
}
@media (min-width: 900px) {
  #main-menu {
    display: flex;
    padding: 0;
  }
}
#main-menu .menu {
  position: relative;
}
#main-menu .menu li {
  position: relative;
}
#main-menu .menu li .sub-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
#main-menu .menu li.active .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
#main-menu .menu-item-8008.active > a {
  background: #3B7E8D;
  color: #fff;
}
#main-menu .menu-item-8008.active > a:hover, #main-menu .menu-item-8008.active > a:focus {
  background: #3B7E8D;
  color: #fff;
}
#main-menu .sub-menu {
  position: absolute;
  top: 38px;
  left: 0;
  padding: 0;
  max-width: 300px;
  min-width: 250px;
  background: #fff;
  z-index: 2000;
  border-radius: 0.5rem;
  border-top-left-radius: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
#main-menu .sub-menu li {
  border-bottom: 1px solid #F8F9FA;
}
#main-menu .sub-menu li:last-child {
  border-bottom: none;
}
#main-menu .sub-menu a {
  display: block;
  padding: 0.75rem 1rem;
  background: none;
  color: #222;
}
#main-menu .sub-menu a:hover, #main-menu .sub-menu a:focus {
  color: #3B7E8D;
}

.menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 900px) {
  .menu {
    display: flex;
  }
}
.menu li {
  padding: 0.5rem 0;
}
@media (min-width: 900px) {
  .menu li {
    padding: 0;
    display: block;
  }
  .menu li:first-child a {
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
  }
  .menu li.active:first-child > a {
    border-bottom-left-radius: 0;
  }
  .menu li:last-child a {
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
  }
}
.menu a {
  display: inline-block;
  color: #000;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.3s;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  cursor: pointer;
}
@media (min-width: 900px) {
  .menu a {
    background: #F8F9FA;
    border-radius: 0;
  }
}
.menu a:hover {
  color: #fff;
  background: #3B7E8D;
}

.page-header {
  width: 100%;
  height: 250px;
  position: relative;
}
.page-header .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #3B7E8D;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  text-align: center;
}
.page-header .overlay h1 {
  padding: 0;
  margin: 0;
  color: #fff;
  text-transform: capitalize;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease forwards 0s;
}
.page-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slides {
  max-height: 600px;
  overflow: hidden;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .slides {
    height: 500px;
  }
}

.slide-img {
  width: 100%;
  height: 600px;
  position: relative;
}
@media (min-width: 576px) {
  .slide-img {
    height: 500px;
  }
}
.slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 25% 0%;
}
.slide-img .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(59, 126, 141, 0.8) 0%, rgba(120, 199, 216, 0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.slide-img .container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease forwards 0.3s;
}
@media (min-width: 900px) {
  .slide-img .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.slide-img .container .content {
  width: 100%;
}
@media (min-width: 900px) {
  .slide-img .container .content {
    width: 50%;
  }
}
.slide-img .container .content h1 {
  color: #fff;
  margin: 0;
  text-align: center;
  font-size: 1.5rem;
}
@media (min-width: 900px) {
  .slide-img .container .content h1 {
    text-align: left;
    font-size: 2.4rem;
  }
}
.slide-img .container .content p {
  color: #fff;
  font-size: 1rem;
  margin: 0;
  text-align: center;
}
@media (min-width: 900px) {
  .slide-img .container .content p {
    font-size: 1.5rem;
    text-align: left;
  }
}
.slide-img .container .quick-contact-form {
  background: #3B7E8D;
  padding: 2rem;
  border-radius: 1rem;
  max-width: 500px;
  margin-top: 2rem;
}
@media (min-width: 900px) {
  .slide-img .container .quick-contact-form {
    margin-top: 0;
  }
}
.slide-img .container .quick-contact-form .search-header h2 {
  margin: 0;
  font-size: 1.5rem;
  text-align: center;
}
@media (min-width: 900px) {
  .slide-img .container .quick-contact-form .search-header h2 {
    text-align: left;
  }
}
.slide-img .container .quick-contact-form .search-header p {
  margin: 0 0 0.5rem 0;
  text-align: center;
}
@media (min-width: 900px) {
  .slide-img .container .quick-contact-form .search-header p {
    text-align: left;
  }
}
.slide-img .container .quick-contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.slide-img .container .quick-contact-form input[type=text] {
  width: 100%;
  padding: 1rem;
  border-radius: 0.75rem;
  border: none;
  font-size: 1rem;
  outline: none;
}
.slide-img .container .quick-contact-form .search-btn {
  color: #3B7E8D;
  padding: 1rem;
  background: #fff;
  transition: 0.3s;
  display: inline-block;
  font-weight: 700;
  border-radius: 1rem;
  border: 2px solid #fff;
  transition: 0.3s;
  font-size: 1rem;
  cursor: pointer;
}
.slide-img .container .quick-contact-form .search-btn:hover, .slide-img .container .quick-contact-form .search-btn:focus {
  color: #fff;
  background: #3B7E8D;
}

.accreditation-container {
  width: 100%;
}
.accreditation-container .accreditation {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 2rem 1rem;
}
@media (min-width: 900px) {
  .accreditation-container .accreditation {
    padding: 4rem 1rem;
  }
}
.accreditation-container .accreditation .accreditation-img img {
  margin: 0 auto;
  height: 100px;
}

.social-links {
  margin: 0.5rem 0 0 0;
}
.social-links a {
  transition: 0.3s;
  display: inline-block;
}
.social-links a .iconify {
  font-size: 2rem;
  color: #000;
}
.social-links a:hover, .social-links a:focus {
  transform: scale(1.1);
}

.contact-links {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}
.contact-links .contact-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
}
.contact-links .contact-item .iconify {
  color: #000;
  margin: 0 0 0 0;
}

.accordion {
  margin: 2rem 0;
}
.accordion:last-child {
  margin-bottom: 0;
}
.accordion:first-child {
  margin-top: 0;
}
.accordion .accordion-box {
  margin-bottom: 1rem;
  width: 100%;
}
.accordion .accordion-box:last-child {
  margin-bottom: 0;
}
.accordion .accordion-box .accordion-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #F8F9FA;
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  width: 100%;
  transition: all 0.25s ease;
  border: none;
  border-radius: 1rem;
}
.accordion .accordion-box .accordion-question h3 {
  color: #3B7E8D;
  margin: 0;
  text-align: left;
  font-size: 1.2rem;
}
.accordion .accordion-box .accordion-question .iconify {
  font-size: 1.2rem;
  color: #3B7E8D;
  transition: transform 0.3s ease;
  transform: rotate(270deg) !important;
}
.accordion .accordion-box .accordion-question:hover {
  background: rgba(0, 0, 0, 0.03);
}
.accordion .accordion-box .active {
  background: rgba(0, 0, 0, 0.03);
  border-radius: 1rem 1rem 0 0;
}
.accordion .accordion-box .active .iconify {
  transform: rotate(360deg) !important;
}
.accordion .accordion-box .accordion-answer {
  max-height: 0;
  transition: max-height 0.5s ease;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 0 0 1rem 1rem;
}
.accordion .accordion-box .accordion-answer .inner-answer {
  margin: 1rem 1.5rem 1.5rem 1.5rem;
  line-height: 1.6;
}
.accordion .accordion-box .accordion-answer .inner-answer a {
  color: #3B7E8D;
  position: relative;
}
.accordion .accordion-box .accordion-answer .inner-answer a::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: #3B7E8D;
  transition: width 0.3s ease;
}
.accordion .accordion-box .accordion-answer .inner-answer a:hover {
  color: #3B7E8D;
}
.accordion .accordion-box .accordion-answer .inner-answer a:hover::before {
  width: 100%;
}

html {
  box-sizing: border-box;
}

* {
  box-sizing: inherit;
}

body {
  font-size: 16px;
  padding: 0;
  margin: 0;
  font-family: "gotham", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000;
}

.entry-content .alignwide {
  margin-left: -80px;
  margin-right: -80px;
}

.entry-content .alignfull {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  max-width: 100vw;
}

.alignfull img {
  width: 100vw;
}

.js-scroll {
  opacity: 0;
  transition: opacity 500ms;
}

.js-scroll.scrolled {
  opacity: 1;
}

.scrolled.fade-in {
  animation: fade-in 1s ease-in-out both;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-ms-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-o-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeup {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.page-layout {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 2rem 1rem;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease forwards 0.3s;
}
@media (min-width: 900px) {
  .page-layout {
    padding: 4rem 1rem;
  }
}
.page-layout.narrow {
  max-width: 65rem;
}

.page-split {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
}
@media (min-width: 900px) {
  .page-split {
    flex-direction: row;
    justify-content: space-between;
  }
}

#iubenda_policy li:before {
  display: none !important;
}

#iubenda_policy .iub_content {
  padding: 0 !important;
}

.footer__credits {
  display: none;
}

#iub-pp-container footer div:last-of-type {
  display: none;
}

#iub-pp-container h1 {
  display: none;
}

#iub-pp-container footer {
  display: none;
}

.job_listings h3 {
  font-weight: 400 !important;
}
.job_listings .location {
  color: #000;
  font-weight: 500;
}
.job_listings .meta li {
  color: #000;
  font-weight: 500;
}

.rp4wp-related-job_listing > ul li.job_listing a div.location, .rp4wp-related-job_listing > ul li.no_job_listings_found a div.location, ul.job_listings li.job_listing a div.location, ul.job_listings li.no_job_listings_found a div.location {
  color: #000;
}/*# sourceMappingURL=style.css.map */