body {
  width: 100%;
  overflow-x: hidden;
}
.history-slider {
  overflow: visible;
}
.history-slider .breakdance-swiper-wrapper {
  padding: 0;
}
.history-slider .breakdance-swiper-wrapper .swiper {
  overflow: visible;
}
.history-slider .advanced-slider__slide {
  border-radius: 9px;
  position: relative;
  box-shadow: 0 25px 60px 0 #A1AAB5;
}
.history-slider .swiper-button-prev,
.history-slider .swiper-button-next {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -50px;
  color: #fff;
  border: 2px solid #fff;
  transition: all .3s ease;
  border-radius: 9px;
}
.history-slider .swiper-button-disabled {
  color: #4EAED8;
  border: 2px solid #4EAED8;
}
.history-slider .swiper-button-next {
  right: auto;
  left: 60px;
}

/*----Team----*/
.team-members-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.team-member-card {
  text-align: left;
}

.team-member-card__image img {
  display: block;
  width: 100%;
  height: auto;
}
.team-member-card .team-member-card__text {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 24px;
}
.team-member-card .team-member-card__text .iteration {
  color: #222933;
  font-family: "Swis721 BT";
  font-size: 24px;
  font-weight: 400;
  line-height: 1em;
  margin-right: 24px;
}
.team-member-card .team-member-card__title {
  color: #222933;
  font-family: Gotham;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2em;
  margin: 0 8px 0 0;
}

.team-member-card .team-member-card__position {
  color: #222933;
  font-family: "Swis721 BT";
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5em;
}

.team-members-load-more-wrap {
  text-align: center;
  margin-top: 60px;
}

.team-members-load-more {
  cursor: pointer;
  border: 1px solid #8F9AAB;
  color: #8F9AAB;
  font-family: "Swis721 BT";
  font-size: 15px;
  font-weight: 500;
  line-height: 1em;
  border-radius: 9px;
  background-color: transparent;
  padding: 13px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.team-members-load-more:after {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background-color: #8F9AAB;
  margin-left: 20px;
  mask-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2221%22%20height%3D%2221%22%20viewBox%3D%220%200%2021%2021%22%20fill%3D%22none%22%3E%0D%0A%3Cpath%20d%3D%22M9.23996%2014.0305L12.76%2010.5005L9.23996%206.97052M7.5%2020.5H13.5C18.5%2020.5%2020.5%2018.5%2020.5%2013.5V7.5C20.5%202.5%2018.5%200.5%2013.5%200.5H7.5C2.5%200.5%200.5%202.5%200.5%207.5V13.5C0.5%2018.5%202.5%2020.5%207.5%2020.5Z%22%20stroke%3D%22%23222933%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0D%0A%3C%2Fsvg%3E);
  mask-repeat: no-repeat;
  mask-size: contain;
}

@media (max-width: 991px) {
  .team-members-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .team-members-grid {
    grid-template-columns: 1fr;
  }
}
/*----/Team----*/

/*----Contact Form----*/
.roberts-contact form {
  display: flex;
  flex-wrap: wrap;
}
.roberts-contact form > p {
  display: block;
  width: 100%;
  margin-top: 0;
  margin-bottom: 15px;
  color: #222933;
  font-family: "Swis721 BT";
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5em;
}
.roberts-contact form > p:nth-of-type(1),
.roberts-contact form > p:nth-of-type(2),
.roberts-contact form > p:nth-of-type(4),
.roberts-contact form > p:nth-of-type(5) {
  width: 50%;
}
.roberts-contact form > p:nth-of-type(1),
.roberts-contact form > p:nth-of-type(4) {
  padding-right: 15px;
}
.roberts-contact form > p:nth-of-type(2),
.roberts-contact form > p:nth-of-type(5) {
  padding-left: 15px;
}
.roberts-contact form > p input,
.roberts-contact form > p select,
.roberts-contact form > p textarea {
  width: 100%;
  border: 1px solid #CDD4DC;
  border-radius: 8px;
  padding: 12px;
  color: #CDD4DC;
}
.roberts-contact form > p:last-of-type {
  display: flex;
  flex-direction: row-reverse;
}
.roberts-contact form > p:last-of-type .wpcf7-submit {
  color: #fff;
  background-color: #B3D13F;
  padding: 10px 40px;
  border-radius: 5px;
  border: none;
  font-size: 16px;
  line-height: 1.5em;
  width: 187px;
  cursor: pointer;
  transition: all .3s ease;
}
.roberts-contact form > p .wpcf7-form-control-wrap {
  display: block;
  margin-top: 8px;
}
.roberts-contact form > p.form-legal {
  color: #D73648;
}
/*----/Contact Form----*/
.roberts-faq .bde-accordion__content-wrapper {
  border-radius: 5px;
  overflow: hidden;
}
.roberts-other-news .bde-loop article {
  overflow: hidden;
  position: static !important;
}
.roberts-other-news .bde-loop article:nth-of-type(2n+1) {
  background-color: #222933;
  color: #fff;
  align-self: start;
}
.roberts-other-news .bde-loop article:nth-of-type(2n+1) h3.ee-post-title {
  color: #fff;
}
.roberts-other-news .bde-loop article:nth-of-type(2n) {
  background-color: #fff;
  color: #222933;
  margin-top: -150px;
}
.roberts-other-news .bde-loop article:nth-of-type(2n) h3.ee-post-title {
  color: #222933;
}
.roberts-other-news .bde-loop article:nth-of-type(2),
.roberts-other-news .bde-loop article:nth-of-type(8n) {
  margin-top: 0;
}
.roberts-other-news .bde-loop article .bde-loop-item__wrap {
  padding: 30px 50px 47px;
}
.roberts-other-news .bde-loop article:nth-of-type(2n+1) .bde-loop-item__wrap {
 padding: 171px 50px 47px;
}
.roberts-other-news .bde-loop article:nth-of-type(2n+1) .bde-loop-item__image-link {
  display: none;
}
.roberts-other-news .bde-loop article a.button-atom.ee-post-button,
.roberts-other-news .bde-loop article .bde-loop-item__comments,
.roberts-other-news .bde-loop article .bde-loop-item__meta-author {
  display: none;
}
.roberts-other-news .bde-loop article .bde-loop-item__content {
  margin-bottom: 0;
}
.roberts-other-news .bde-posts-pagination button.bde-posts-pagination-loadmore-button {
  padding: 10px 119px;
  transition: all .3s ease;
}
.roberts-other-news .bde-posts-pagination button.bde-posts-pagination-loadmore-button:hover {
  background-color: #222933;
  color: #fff;
}
.roberts-other-news .bde-posts-pagination button.bde-posts-pagination-loadmore-button:hover::after {
  background-color: #fff;
}

/*----Other News----*/
.ac-blog-filters {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.ac-blog-filters .ac-blog-filter {
  color: #222933;
  font-family: "Swis721 BT";
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5em;
  border: 1px solid #CDD4DC;
  border-left: none;
  background: transparent;
  padding: 10px 16px;
  cursor: pointer;
  transition: 0.2s ease;
}
.ac-blog-filters .ac-blog-filter:first-of-type {
  border-left: 1px solid #CDD4DC;
}
.ac-blog-filters .ac-blog-filter.is-active,
.ac-blog-filters .ac-blog-filter:hover {
  background: #E3E9F0;
}
.ac-blog-filters .ac-blog-filter:nth-of-type(1) {
  border-radius: 5px 0 0 5px;
}
.ac-blog-filters .ac-blog-filter:last-of-type {
  border-radius: 0 5px 5px 0;
}

.ac-blog-grid {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.ac-blog-grid .ac-blog-card {
  height: auto;
  background-color: #fff;
  border-radius: 9px;
  overflow: hidden;
  border: none;
}
.ac-blog-grid .ac-blog-card .ac-blog-card__link {
  border: none;
}
.ac-blog-grid:not(.ac-blog-grid--simple) .ac-blog-card:nth-of-type(2n+1) {
  background-color: #222933;
}
.ac-blog-card:nth-of-type(2n) {
  margin-top: -159px;
}
.ac-blog-card:nth-of-type(2),
.ac-blog-card:nth-of-type(8n) {
  margin-top: 0;
}

.ac-blog-card__link {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
  border: 1px solid #e8e8e8;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ac-blog-card__link:hover {
  transform: translateY(-3px);
}

.ac-blog-card__image-wrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.ac-blog-grid:not(.ac-blog-grid--simple) .ac-blog-card:nth-of-type(2n+1) .ac-blog-card__image-wrap {
  display: none;
}
.ac-blog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ac-blog-card__image--placeholder {
  background: #f2f2f2;
}

.ac-blog-card__content {
  padding: 30px 50px 47px;
  color: #222933;
}
.ac-blog-grid:not(.ac-blog-grid--simple) .ac-blog-card:nth-of-type(2n+1) .ac-blog-card__content {
  padding: 171px 50px 47px;
  color: #fff;
}

.ac-blog-grid .ac-blog-card .ac-blog-card__link .ac-blog-card__meta {
  color: #222933;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1em;
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.ac-blog-grid:not(.ac-blog-grid--simple) .ac-blog-card:nth-of-type(2n+1) .ac-blog-card__link .ac-blog-card__meta {
  filter: brightness(0) invert(1);
}

.ac-blog-grid .ac-blog-card .ac-blog-card__link .ac-blog-card__title {
  color: #222933;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 24px;
    font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.2em;
}
.ac-blog-grid:not(.ac-blog-grid--simple) .ac-blog-card:nth-of-type(2n+1) .ac-blog-card__link .ac-blog-card__title {
  color: #fff;
}

.ac-blog-grid .ac-blog-card .ac-blog-card__link .ac-blog-card__excerpt {
  color: #222933;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ac-blog-grid:not(.ac-blog-grid--simple) .ac-blog-card:nth-of-type(2n+1) .ac-blog-card__link .ac-blog-card__excerpt {
  color: #fff;
}

.ac-blog-loadmore-wrap {
  margin-top: 58px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ac-blog-loadmore {
  padding: 10px 119px;
  border: 1px solid #222933;
  background: transparent;
  color: #222933;
  cursor: pointer;
  transition: all .3s ease;
  font-family: Gotham;
  font-size: 20px;
  font-weight: 700;
  line-height: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ac-blog-loadmore:after {
  content: '';
  display: block;
  width: 14px;
  height: 18px;
  background: url(/wp-content/uploads/2026/03/load.svg) no-repeat;
  background-position: center;
  background-size: contain;
  margin-left: 10px;
}
.ac-blog-grid .ac-blog-card .ac-blog-card__link .ac-blog-loadmore:disabled {
  opacity: 0.6;
  cursor: default;
}

@media (max-width: 991px) {
  .ac-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .ac-blog-grid {
    grid-template-columns: 1fr;
  }
}

.ac-blog-grid .ac-blog-card .ac-blog-card__link .ac-blog-card__date {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
}
.ac-blog-grid .ac-blog-card .ac-blog-card__link .ac-blog-card__date:before {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  margin-right: 5px;
  background: url(/wp-content/uploads/2026/02/calendar-check-02-1.svg) no-repeat;
  background-position: center;
  background-size: contain;
}

.ac-blog-grid .ac-blog-card .ac-blog-card__link .ac-blog-card__reading {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
}
.ac-blog-grid .ac-blog-card .ac-blog-card__link .ac-blog-card__reading:before {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  margin-right: 5px;
  background: url(/wp-content/uploads/2026/02/clock-stopwatch-1.svg) no-repeat;
  background-position: center;
  background-size: contain;
}
/*----/Other News----*/
