* {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Tone down the animation to avoid vestibular motion triggers like scaling or panning large objects. */
@media (prefers-reduced-motion) {
  * {
    scroll-behavior: none;
  }
}
a:focus-visible,
input:focus-visible,
button:focus-visible {
  border: solid 5px orange !important;
}

body {
  font-family: "Work Sans", sans-serif;
  line-height: 1.5;
  background: #f2f2f2;
}

/* Only allow content to be seen by screen-readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only:focus {
  height: auto;
  width: auto;
  padding: 1rem;
  display: block;
  clip: auto;
  z-index: 999;
  background-color: blue;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0, "opsz" 24;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  margin: 0;
}

a {
  text-decoration: none;
}

button {
  outline: none;
  background: none;
  border: none;
}

.bg-grey {
  background: #F2F2F2;
}

.bg-red {
  background: #BE1C1A;
}

.bg-red-darker {
  background: #aa1f1d;
}

.bg-white {
  background: white;
}

.bg-black {
  background: #000;
}

.txt-grey {
  color: #F2F2F2;
}

.txt-red {
  color: #BE1C1A;
}

.txt-white {
  color: white !important;
}

.txt-white-faded {
  color: rgba(255, 255, 255, 0.7);
}

.fw-1 {
  font-weight: 300;
}

.fw-2 {
  font-weight: 600;
}

.fw-3 {
  font-weight: 700;
}

.mt-1 {
  margin-top: 1rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.mt-6 {
  margin-top: 6rem;
}

.mb-6 {
  margin-bottom: 6rem;
}

.mt-8 {
  margin-top: 8rem;
}

.mb-8 {
  margin-bottom: 8rem;
}

.pt-1 {
  padding-top: 1rem;
}

.pb-1 {
  padding-bottom: 1rem;
}

.pt-2 {
  padding-top: 2rem;
}

.pb-2 {
  padding-bottom: 2rem;
}

.pt-3 {
  padding-top: 3rem;
}

.pb-3 {
  padding-bottom: 3rem;
}

.pt-4 {
  padding-top: 4rem;
}

.pb-4 {
  padding-bottom: 4rem;
}

.pt-6 {
  padding-top: 6rem;
}

.pb-6 {
  padding-bottom: 6rem;
}

.pt-8 {
  padding-top: 8rem;
}

.pb-8 {
  padding-bottom: 8rem;
}

.pt-10 {
  padding-top: 10rem;
}

.pb-10 {
  padding-bottom: 10rem;
}

.pt-12 {
  padding-top: 12rem;
}

.pb-12 {
  padding-bottom: 12rem;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-align-center {
  text-align: center;
}

.flip {
  transform: rotate(180deg);
}

.txt-balance {
  text-wrap: balance;
}

.italics {
  font-style: italic;
}

.grayscale-100 {
  filter: grayscale(100%);
}

.txt-content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}
@media screen and (max-width: 1360px) {
  .txt-content-split {
    grid-template-columns: 1fr;
    grid-gap: 3rem;
  }
}

.half-width-content {
  width: 50%;
}
@media screen and (max-width: 1360px) {
  .half-width-content {
    width: 100%;
  }
}

.section-heading--sm {
  font-size: 1.5rem;
  line-height: 1.4;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1360px) {
  .section-heading--sm {
    font-size: 1.4rem;
  }
}
.section-heading--sm:after {
  content: "";
  height: 1px;
  width: 300%;
  position: absolute;
  bottom: -1.4rem;
  right: 0;
  background: currentColor;
}

.section-subheading {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  color: #000;
}
@media screen and (max-width: 1800px) {
  .section-subheading {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1360px) {
  .section-subheading {
    text-wrap: balance;
  }
}
@media screen and (max-width: 560px) {
  .section-subheading {
    font-size: 1.8rem;
  }
}

.body-txt {
  font-size: 1.1rem;
  font-weight: 300;
}

.section-heading-container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.section-heading-container .section-heading {
  text-wrap: balance;
}
@media screen and (max-width: 1360px) {
  .section-heading-container {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 2rem;
  }
}
.section-heading-container .carousel-navigation {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-heading-container .carousel-navigation button {
  cursor: pointer;
}
.section-heading-container .carousel-navigation button i {
  transition: all 0.3s ease;
  font-size: 1.6rem;
}
.section-heading-container .carousel-navigation button i:hover {
  color: #222;
}

.full-width-img {
  height: 500px;
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 1360px) {
  .full-width-img {
    height: 500px;
  }
}
@media screen and (max-width: 560px) {
  .full-width-img {
    height: 400px;
  }
}

.bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 0;
}

.content h2 {
  font-size: 2.4rem;
  font-weight: 600;
  margin: 2.4rem 0;
  line-height: 1.4;
}
@media screen and (max-width: 1800px) {
  .content h2 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 560px) {
  .content h2 {
    font-size: 1.8rem;
  }
}
.content h2:first-of-type {
  margin-top: 0;
}
.content h3 {
  font-size: 1.4rem;
  margin: 3rem 0 1rem 0;
  line-height: 1.4;
}
.content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
}
.content p:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 1800px) {
  .content p {
    font-size: 1rem;
  }
}
.content ul {
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  margin: 2.4rem 0;
  gap: 0.8rem;
}
.content ul li {
  font-weight: 300;
}
.content ul li::marker {
  color: #BE1C1A;
}
.content ul:last-of-type {
  margin-bottom: 0;
}
.content ul:last-of-type + p {
  margin-top: 4rem;
}
.content img {
  width: 50%;
  margin: 3rem 0;
}
@media screen and (max-width: 1360px) {
  .content img {
    width: 75%;
  }
}
@media screen and (max-width: 560px) {
  .content img {
    width: 100%;
  }
}
.content a {
  color: #222;
  text-decoration: underline;
}

.carousel-navigation-container {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.carousel-navigation-container button {
  cursor: pointer;
}
.carousel-navigation-container button span {
  transition: all 0.6s ease;
  font-size: 3.4rem;
  opacity: 0.7;
}
.carousel-navigation-container button span:hover {
  transform: rotate(360deg);
  opacity: 1;
}

.navbar {
  transition: all 0.5s ease;
  padding: 3rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 995;
}
@media screen and (max-width: 1360px) {
  .navbar {
    padding: 2rem 0;
  }
}
.navbar.navbar--scrolled {
  transition: all 0.5s ease;
  background: #0e0e0e;
  padding: 0.6rem 0;
}
@media screen and (max-width: 1360px) {
  .navbar.navbar--scrolled {
    padding: 1.1rem 0;
  }
}
.navbar nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar nav .navbar__brand-logo img {
  width: 110px;
}
@media screen and (max-width: 1360px) {
  .navbar nav .navbar__brand-logo img {
    width: 100px;
  }
}
@media screen and (max-width: 560px) {
  .navbar nav .navbar__brand-logo img {
    width: 80px;
  }
}
.navbar nav .navbar-right {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: #BE1C1A;
  padding: 1.4rem 2.4rem;
  border-radius: 40px;
}
@media screen and (max-width: 1360px) {
  .navbar nav .navbar-right {
    display: none;
  }
}
.navbar nav .navbar-right .menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.navbar nav .navbar-right .menu li a {
  transition: all 0.3s ease;
  color: white;
}
.navbar nav .navbar-right .menu li a:hover {
  opacity: 0.6;
}
.navbar nav .navbar-right .menu .menu-item-has-children:hover > .sub-menu {
  transition: all 0.2s ease;
  opacity: 1;
  pointer-events: all;
}
.navbar nav .navbar-right .menu .sub-menu {
  transition: all 0.2s ease;
  border-radius: 20px;
  position: absolute;
  background: white;
  text-wrap: nowrap;
  display: flex;
  align-content: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  list-style: none;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 10px 20px rgba(128, 128, 128, 0.173);
}
.navbar nav .navbar-right .menu .sub-menu li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  color: #BE1C1A;
  padding: 1.4rem 1rem;
  font-size: 0.9rem;
}
.navbar nav .navbar-right .menu .sub-menu li a:hover {
  opacity: 1;
  background: #aa1f1d;
  color: white;
}
.navbar nav .navbar__menu-icon {
  display: none;
}
@media screen and (max-width: 1360px) {
  .navbar nav .navbar__menu-icon {
    display: block;
  }
}
.navbar nav .navbar__menu-icon i {
  font-size: 2.2rem;
}
.navbar nav .navbar__search-icon {
  transition: all 0.3s ease;
  cursor: pointer;
}
.navbar nav .navbar__search-icon:hover {
  opacity: 0.7;
}

.btn {
  transition: all 0.3s ease;
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 30px;
}
.btn.btn--transparent-white {
  background: transparent;
  color: white;
  border: solid 1px white;
}
.btn.btn--transparent-white:hover {
  background: white;
  color: #222;
}
.btn.btn--white {
  background: white;
  color: #BE1C1A;
}
.btn.btn--white:hover {
  background: #BE1C1A;
  color: white;
}
.btn.btn--red {
  background: #BE1C1A;
  color: white;
}
.btn.btn--red:hover {
  opacity: 0.6;
}
.btn.btn--black {
  background: #222;
  color: white;
}
.btn.btn--black:hover {
  background: #BE1C1A;
}
.btn.full-width-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.btn-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 560px) {
  .btn-container {
    flex-direction: column;
  }
}
@media screen and (max-width: 560px) {
  .btn-container .btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
}

.site-footer {
  padding-top: 5rem;
  overflow: hidden;
  position: relative;
}
.site-footer .footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 560px) {
  .site-footer .footer-container {
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 4rem;
  }
}
.site-footer .footer-container .column .footer__brand-logo img {
  width: 110px;
}
.site-footer .footer-container .column .footer__tagline {
  font-size: 1.4rem;
}
.site-footer .footer-container .column .footer-contact .footer-contact-method {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 1rem;
}
@media screen and (max-width: 560px) {
  .site-footer .footer-container .column .footer-contact .footer-contact-method {
    margin-bottom: 2rem;
  }
}
.site-footer .footer-container .column .footer-contact .footer-contact-method:hover {
  text-decoration: underline;
}
.site-footer .footer-container .column .footer-contact .footer-social-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.site-footer .footer-container .column .footer-contact .footer-social-icons .footer-social-icon {
  font-size: 1.4rem;
}
.site-footer .footer-container .column .footer-contact .footer-social-icons .footer-social-icon:hover {
  opacity: 0.6;
}
.site-footer .footer-container .column .footer-column-heading {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.site-footer .footer-container .column ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-direction: column;
  gap: 0.6rem;
}
@media screen and (max-width: 560px) {
  .site-footer .footer-container .column ul {
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.site-footer .footer-container .column ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}
.site-footer .footer-container .column ul li a:hover {
  color: white;
  text-decoration: underline;
}
.site-footer .footer-bottom {
  margin-top: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: solid 1px rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 560px) {
  .site-footer .footer-bottom {
    flex-direction: column-reverse;
    gap: 1rem;
    text-align: center;
  }
}
.site-footer .bg-graphic {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  pointer-events: none;
  opacity: 0.06;
  z-index: 2;
}
@media screen and (max-width: 560px) {
  .site-footer .bg-graphic {
    width: 100vw;
  }
}

#testimonials .title-container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media screen and (max-width: 1360px) {
  #testimonials .title-container {
    flex-direction: column;
    gap: 4rem;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media screen and (max-width: 560px) {
  #testimonials .title-container {
    gap: 3rem;
  }
}
#testimonials .title-container .testimonial-carousel-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
#testimonials .title-container .testimonial-carousel-nav i {
  cursor: pointer;
  font-size: 1.6rem;
}
@media screen and (max-width: 560px) {
  #testimonials .title-container .testimonial-carousel-nav i {
    font-size: 1.2rem;
  }
}
#testimonials .title-container .testimonial-carousel-nav i:hover {
  color: #222;
}
#testimonials .testimonial-carousel .testimonial {
  padding: 4rem 3.4rem;
  border-radius: 10px;
}
@media screen and (max-width: 560px) {
  #testimonials .testimonial-carousel .testimonial {
    padding: 3rem 2rem;
  }
}
#testimonials .testimonial-carousel .testimonial blockquote {
  font-size: 1rem;
  color: #575757;
}
@media screen and (max-width: 560px) {
  #testimonials .testimonial-carousel .testimonial blockquote {
    font-size: 1rem;
  }
}
#testimonials .testimonial-carousel .testimonial cite {
  font-style: normal;
}
#testimonials .testimonial-carousel .testimonial cite .testimonial__author {
  font-size: 1.4rem;
}

#accreditations .accreditation-logos {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2rem;
}
@media screen and (max-width: 1360px) {
  #accreditations .accreditation-logos {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 560px) {
  #accreditations .accreditation-logos {
    grid-gap: 1rem;
  }
}
#accreditations .accreditation-logos .accreditation {
  transition: all 0.3s ease;
  height: 160px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0;
  position: relative;
}
@media screen and (max-width: 560px) {
  #accreditations .accreditation-logos .accreditation {
    height: 100px;
  }
}
#accreditations .accreditation-logos .accreditation:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(128, 128, 128, 0.2);
}
#accreditations .accreditation-logos .accreditation .accreditation__logo {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0;
}
#accreditations .accreditation-logos .accreditation .accreditation__logo img {
  display: block;
  width: 50%;
}
@media screen and (max-width: 560px) {
  #accreditations .accreditation-logos .accreditation .accreditation__logo img {
    width: 65%;
  }
}

#page-title-banner {
  position: relative;
  padding: 16rem 0 6rem 0;
  margin: 1rem 1rem 0 1rem;
  overflow: hidden;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}
@media screen and (max-width: 1360px) {
  #page-title-banner {
    padding: 14rem 0 4rem 0;
    margin: 0;
    border-radius: 0;
  }
}
#page-title-banner:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.8;
}
#page-title-banner .page-title-banner__bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  filter: grayscale(100%);
}
#page-title-banner .page-title-banner__title {
  position: relative;
  z-index: 2;
  font-size: 4rem;
  text-wrap: balance;
}
@media screen and (max-width: 1800px) {
  #page-title-banner .page-title-banner__title {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 1360px) {
  #page-title-banner .page-title-banner__title {
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 560px) {
  #page-title-banner .page-title-banner__title {
    font-size: 2.6rem;
  }
}

#searchbar {
  transition: all 0.3s ease;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem 0;
  background: #BE1C1A;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0;
  pointer-events: none;
  transform: translateY(-100%);
}
#searchbar.searchbar--active {
  transition: all 0.3s ease;
  transform: translateY(0);
  pointer-events: all;
}
#searchbar .close-searchbar-btn {
  transition: all 0.3s ease;
  position: absolute;
  height: 100%;
  width: 130px;
  top: 0;
  right: 0;
  z-index: 999;
  padding: 1rem;
  background: #d52c29;
  cursor: pointer;
}
#searchbar .close-searchbar-btn:hover {
  background: #aa1f1d;
}
#searchbar .close-searchbar-btn span {
  font-size: 2.8rem;
  color: white;
}
#searchbar input[type=text] {
  background: none;
  outline: none;
  border: solid 1px white;
  border-radius: 50px;
  color: white;
  font-family: "Work Sans", sans-serif;
  font-size: 1.6rem;
  padding: 1rem 2rem;
  margin-right: 1rem;
}
#searchbar input[type=text]:focus {
  border: solid 1px rgb(220, 220, 220) !important;
}
#searchbar #searchsubmit {
  transition: all 0.3s ease;
  font-family: "Work Sans", sans-serif;
  color: white;
  background: none;
  outline: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
}
#searchbar #searchsubmit:hover {
  opacity: 0.5;
}

#device-menu {
  transition: all 0.6s ease;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: #1c1c1c;
  z-index: 999;
  padding: 7rem 4rem 4rem 4rem;
  transform: translateX(-100%);
  pointer-events: none;
}
@media screen and (max-width: 560px) {
  #device-menu {
    padding: 5rem 2rem 2rem 2rem;
  }
}
#device-menu.device-menu--active {
  transition: all 0.6s ease;
  transform: translateX(0);
  pointer-events: all;
}
#device-menu .device-menu-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.6rem;
}
#device-menu .device-menu-content {
  overflow: scroll;
  height: 80vh;
}
#device-menu .device-menu-content::-webkit-scrollbar {
  display: none;
}
#device-menu .device-menu-content .menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#device-menu .device-menu-content .menu > li a {
  color: white;
  font-size: 3rem;
}
@media screen and (max-width: 560px) {
  #device-menu .device-menu-content .menu > li a {
    font-size: 2rem;
  }
}
#device-menu .device-menu-content .menu .sub-menu {
  transition: all 0.3s ease;
  flex-direction: column;
  list-style: none;
  gap: 0.5rem;
  display: none;
}
#device-menu .device-menu-content .menu .sub-menu > li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.6rem;
}
@media screen and (max-width: 560px) {
  #device-menu .device-menu-content .menu .sub-menu > li a {
    font-size: 1.2rem;
  }
}
#device-menu .device-menu-content .menu .sub-menu.sub-menu--active {
  display: flex;
  padding: 1rem 0;
}

.width-container {
  width: 85%;
  max-width: 1800px;
  margin: 0 auto;
}

.padding-container {
  padding: 8rem 0;
}
@media screen and (max-width: 1360px) {
  .padding-container {
    padding: 6rem 0;
  }
}
@media screen and (max-width: 560px) {
  .padding-container {
    padding: 5rem 0 4rem 0;
  }
}

#hero {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  height: 100dvh;
  z-index: 0;
}
#hero .hero-content-container {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  margin: 2rem 1rem 0 1rem;
}
@media screen and (max-width: 1360px) {
  #hero .hero-content-container {
    margin: 0;
    border-radius: 0;
  }
}
#hero .hero-content-container:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1a1a1a;
  opacity: 0.85;
}
#hero .hero-content-container .brand-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  width: 50%;
  pointer-events: none;
}
@media screen and (max-width: 560px) {
  #hero .hero-content-container .brand-icon {
    width: 100vw;
    opacity: 0.04;
  }
}
#hero .hero-content-container .hero-content {
  position: relative;
  z-index: 3;
  margin-top: 4rem;
}
#hero .hero-content-container .hero-content .hero__heading {
  font-size: 4.5vw;
  width: 20ch;
}
@media screen and (max-width: 1360px) {
  #hero .hero-content-container .hero-content .hero__heading {
    font-size: 4rem;
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  #hero .hero-content-container .hero-content .hero__heading {
    font-size: 3rem;
  }
}
#hero .hero-content-container .hero-content .hero__subheading {
  font-size: 1.3vw;
}
@media screen and (max-width: 1360px) {
  #hero .hero-content-container .hero-content .hero__subheading {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 560px) {
  #hero .hero-content-container .hero-content .hero__subheading {
    font-size: 1.1rem;
  }
}

#who-are-we {
  overflow: hidden;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}

#our-services {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
}
#our-services .service-blocks-carousel {
  position: relative;
}
#our-services .service-blocks-carousel .service-block a {
  position: relative;
  display: block;
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width: 560px) {
  #our-services .service-blocks-carousel .service-block a {
    height: 350px;
  }
}
#our-services .service-blocks-carousel .service-block .service-block__thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#our-services .service-blocks-carousel .service-block .service-block-content-container {
  background: rgba(190, 29, 26, 0.9);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 2;
  padding: 2rem;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}
#our-services .service-blocks-carousel .service-block .service-block-content-container .service-block__icon {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 70px;
}
@media screen and (max-width: 560px) {
  #our-services .service-blocks-carousel .service-block .service-block-content-container .service-block__icon {
    top: 1.6rem;
    right: 1.6rem;
    width: 50px;
  }
}
#our-services .service-blocks-carousel .service-block .service-block-content-container .service-block-content {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  align-items: flex-end;
}
#our-services .service-blocks-carousel .service-block .service-block-content-container .service-block-content .service-block__heading {
  font-size: 1.8rem;
}
@media screen and (max-width: 1800px) {
  #our-services .service-blocks-carousel .service-block .service-block-content-container .service-block-content .service-block__heading {
    font-size: 1.7rem;
  }
}

#digital-construction-hero {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
}
#digital-construction-hero .digital-construction-hero-content {
  width: 100ch;
  margin: 0 auto;
  padding: 8rem 0;
}
@media screen and (max-width: 1360px) {
  #digital-construction-hero .digital-construction-hero-content {
    width: 80%;
  }
}
@media screen and (max-width: 560px) {
  #digital-construction-hero .digital-construction-hero-content {
    padding: 6rem 0;
  }
}

#projects {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 4;
}
#projects .project-blocks {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}
@media screen and (max-width: 1360px) {
  #projects .project-blocks {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 560px) {
  #projects .project-blocks {
    grid-template-columns: 1fr;
  }
}
#projects .project-blocks .project-block a {
  transition: all 0.3s ease;
  position: relative;
  display: block;
  width: 100%;
  height: 600px;
  overflow: hidden;
}
@media screen and (max-width: 1800px) {
  #projects .project-blocks .project-block a {
    height: 500px;
  }
}
@media screen and (max-width: 560px) {
  #projects .project-blocks .project-block a {
    height: 400px;
  }
}
@media screen and (max-width: 560px) {
  #projects .project-blocks .project-block a {
    height: 340px;
  }
}
#projects .project-blocks .project-block a:hover > .project-block__thumbnail {
  transition: all 0.3s ease;
  transform: scale(1.1);
  filter: grayscale(100%);
}
#projects .project-blocks .project-block a .project-block__thumbnail {
  transition: all 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#projects .project-blocks .project-block a .project-block-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 2;
  padding: 2.6rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #2A7B9B;
  background: linear-gradient(180deg, rgba(42, 123, 155, 0) 0%, rgb(190, 28, 26) 100%);
}
@media screen and (max-width: 560px) {
  #projects .project-blocks .project-block a .project-block-content {
    padding: 2.2rem 1.4rem;
  }
}
#projects .project-blocks .project-block a .project-block-content .project-block__heading {
  font-size: 2rem;
}
@media screen and (max-width: 1800px) {
  #projects .project-blocks .project-block a .project-block-content .project-block__heading {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 560px) {
  #projects .project-blocks .project-block a .project-block-content .project-block__heading {
    font-size: 1.6rem;
  }
}

#working-with-aimis {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
}
@media screen and (max-width: 1360px) {
  #working-with-aimis {
    position: relative;
  }
}
#working-with-aimis .feature-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
@media screen and (max-width: 1360px) {
  #working-with-aimis .feature-cards {
    grid-template-columns: 1fr;
  }
}
#working-with-aimis .feature-cards .feature-card {
  padding: 4rem 3rem 3rem 3rem;
}
@media screen and (max-width: 560px) {
  #working-with-aimis .feature-cards .feature-card {
    padding: 4rem 2rem 3rem 2rem;
  }
}
#working-with-aimis .feature-cards .feature-card .feature-card__heading {
  font-size: 1.4rem;
}

#sticky-testimonials {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 6;
}

#sticky-full-width-img {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 7;
}

#sticky-accreditations {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 8;
}
@media screen and (max-width: 1360px) {
  #sticky-accreditations {
    position: relative;
  }
}

#latest-news {
  position: relative;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
#latest-news .brand-icon {
  width: 300px;
}
@media screen and (max-width: 1360px) {
  #latest-news .brand-icon {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    opacity: 0.06;
  }
}
#latest-news .news-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1360px) {
  #latest-news .news-cards {
    grid-template-columns: 1fr;
  }
}
#latest-news .news-cards .news-card .news-card__thumbnail {
  transition: all 0.3s ease;
  display: block;
  width: 100%;
  height: 350px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 1800px) {
  #latest-news .news-cards .news-card .news-card__thumbnail {
    height: 300px;
  }
}
#latest-news .news-cards .news-card .news-card__thumbnail:hover {
  transition: all 0.3s ease;
  filter: grayscale(100%);
}
#latest-news .news-cards .news-card .news-card-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
#latest-news .news-cards .news-card .news-card-bottom .news-card__heading {
  transition: all 0.3s ease;
  font-size: 1.6rem;
}
@media screen and (max-width: 1800px) {
  #latest-news .news-cards .news-card .news-card-bottom .news-card__heading {
    font-size: 1.4rem;
  }
}
#latest-news .news-cards .news-card .news-card-bottom .news-card__heading:hover {
  color: #d52c29;
}
#latest-news .news-cards .news-card .news-card-bottom .arrow-icon {
  transition: all 0.3s ease;
}
#latest-news .news-cards .news-card .news-card-bottom .arrow-icon:hover {
  transition: all 0.3s ease;
  transform: rotate(-45deg);
}

#about-intro .about-intro-content {
  width: 60%;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1360px) {
  #about-intro .about-intro-content {
    width: 100%;
  }
}
#about-intro .about-intro-content h2 {
  font-size: 1.1rem;
  color: #222;
  text-transform: uppercase;
  font-weight: 400;
}
#about-intro .about-intro-content h3 {
  color: #BE1C1A;
  font-size: 2.6rem;
  margin: 2rem 0;
  text-wrap: balance;
}
@media screen and (max-width: 1360px) {
  #about-intro .about-intro-content h3 {
    font-size: 2.2rem;
  }
}
#about-intro .about-intro-content p {
  margin-bottom: 1rem;
  color: grey;
  font-weight: 300;
}
#about-intro .the-future {
  overflow: hidden;
  position: relative;
}
#about-intro .the-future .brand-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 35vw;
  pointer-events: none;
}
@media screen and (max-width: 1800px) {
  #about-intro .the-future .brand-icon {
    width: 40vw;
  }
}
@media screen and (max-width: 560px) {
  #about-intro .the-future .brand-icon {
    width: 100vw;
    opacity: 0.5;
  }
}

.team-members-carousel .team-members .team-member {
  background: white;
}
.team-members-carousel .team-members .team-member .team-member__photo {
  display: block;
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 1360px) {
  .team-members-carousel .team-members .team-member .team-member__photo {
    height: 350px;
  }
}
.team-members-carousel .team-members .team-member figcaption {
  padding: 2rem;
}
.team-members-carousel .team-members .team-member figcaption .team-member__name {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

.faq-intro {
  padding: 8rem 0 4rem 0;
}
@media screen and (max-width: 560px) {
  .faq-intro {
    padding: 5rem 0 3rem 0;
  }
}

#faq {
  padding-bottom: 8rem;
}
@media screen and (max-width: 560px) {
  #faq {
    padding-bottom: 5rem;
  }
}
#faq .faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#faq .faq-list .faq {
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
}
#faq .faq-list .faq[open] > .faq__header:after {
  content: "-";
}
#faq .faq-list .faq .faq__header {
  padding: 2rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.2rem;
  text-wrap: balance;
}
@media screen and (max-width: 560px) {
  #faq .faq-list .faq .faq__header {
    font-size: 1.1rem;
    padding: 1.4rem;
  }
}
#faq .faq-list .faq .faq__header:after {
  content: "+";
}
@media screen and (max-width: 1360px) {
  #faq .faq-list .faq .faq__header:after {
    display: none;
  }
}
#faq .faq-list .faq .faq__panel {
  padding: 2rem;
  background: rgb(248, 248, 248);
}
@media screen and (max-width: 560px) {
  #faq .faq-list .faq .faq__panel {
    font-size: 1.1rem;
    padding: 1.4rem;
  }
}
#faq .faq-list .faq .faq__panel p {
  line-height: 1.6;
  margin-bottom: 1rem;
  color: grey;
  width: 85%;
}
#faq .faq-list .faq .faq__panel p:last-of-type {
  margin-bottom: 0;
}
#faq .faq-list .faq .faq__panel a {
  color: #BE1C1A;
}

.contact-content {
  padding: 8rem 0 6rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
@media screen and (max-width: 1360px) {
  .contact-content {
    grid-gap: 2rem;
  }
}
@media screen and (max-width: 560px) {
  .contact-content {
    grid-template-columns: 1fr;
    grid-gap: 3rem;
    padding: 5rem 0;
  }
}
.contact-content .body-txt {
  width: -moz-fit-content;
  width: fit-content;
  width: 90%;
}
.contact-content .contact-method a, .contact-content .contact-method address {
  display: block;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
  color: #333333;
  font-style: normal;
}
.contact-content .contact-method a:hover, .contact-content .contact-method address:hover {
  color: #BE1C1A;
}
.contact-content .form {
  padding: 5rem 4rem 2rem 4rem;
  border-radius: 15px;
  position: relative;
}
@media screen and (max-width: 1360px) {
  .contact-content .form {
    padding: 5rem 2rem 2rem 2rem;
  }
}
@media screen and (max-width: 560px) {
  .contact-content .form {
    padding: 4rem 1.8rem 1.8rem 1.8rem;
  }
}
.contact-content .form .form__heading {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
.contact-content .form .bg-icon {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  opacity: 0.1;
}
.contact-content .form form {
  position: relative;
  z-index: 2;
}
.contact-content .form form input,
.contact-content .form form textarea {
  display: block;
  width: 100%;
  background: white;
  padding: 1rem;
  font-family: "Work Sans", sans-serif;
  border: solid 1px white;
  outline: none;
  margin: 0.5rem 0 1rem 0;
  resize: none;
  font-size: 1.1rem;
  color: #222;
  border-radius: 10px;
}
.contact-content .form form input:focus,
.contact-content .form form textarea:focus {
  border-width: 2px !important;
  border-color: grey !important;
}
.contact-content .form form p {
  margin-bottom: 0;
}
.contact-content .form form textarea {
  height: 150px;
}
.contact-content .form form select {
  width: 100%;
  padding: 1rem;
  border-radius: 10px;
  font-family: "Work Sans", sans-serif;
  margin-bottom: 1rem;
}
.contact-content .form form input[type=submit] {
  transition: all 0.3s ease;
  background: #222;
  border-color: #222;
  color: white;
  padding: 1.6rem;
  cursor: pointer;
  border-radius: 10px;
}
.contact-content .form form input[type=submit]:hover {
  opacity: 0.7;
}
.contact-content .form form label {
  color: rgba(255, 255, 255, 0.6);
}
.contact-content .form form .wpcf7-not-valid-tip {
  color: white;
  background: #d52c29;
  margin: 1rem 0 2rem 0;
  font-size: 0.85rem;
  padding: 0.8rem 1rem;
  border-radius: 30px;
  width: -moz-fit-content;
  width: fit-content;
}
.contact-content .form form .wpcf7-response-output {
  margin: 0;
  padding: 1rem;
  text-align: center;
  color: white;
  border-radius: 10px;
  text-wrap: balance;
}

#location {
  position: relative;
  z-index: 2;
  padding-bottom: 6rem;
}
#location iframe {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
@media screen and (max-width: 1360px) {
  #location iframe {
    height: 400px;
  }
}
#location .location-address {
  padding: 1.6rem;
  font-size: 1.2rem;
  font-style: normal;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
@media screen and (max-width: 560px) {
  #location .location-address {
    font-size: 1.1rem;
  }
}
#location .location-address br {
  display: none;
}

.bg-icon {
  position: absolute;
  bottom: 0;
  left: 0;
  pointer-events: none;
  width: 100vw;
  opacity: 0.6;
}

.project-filtration {
  padding: 8rem 0 4rem 0;
}
@media screen and (max-width: 1360px) {
  .project-filtration {
    padding-top: 5rem;
  }
}
.project-filtration .project-filter-btn-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.project-filtration .project-filter-btn-container::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 1360px) {
  .project-filtration .project-filter-btn-container {
    width: 90vw;
    padding-right: 1rem;
    overflow: scroll;
    margin-top: 3rem;
    gap: 0.5rem;
  }
}
.project-filtration .project-filter-btn-container .filter-btn {
  text-wrap: nowrap;
  font-size: 1rem;
}
.project-filtration .project-filter-btn-container .filter-btn.is-active {
  background: #BE1C1A;
  color: white;
}

#project-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  list-style: none;
  padding-bottom: 6rem;
}
@media screen and (max-width: 1360px) {
  #project-blocks {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 560px) {
  #project-blocks {
    grid-template-columns: 1fr;
    padding-bottom: 5rem;
  }
}
#project-blocks .project-block {
  height: 550px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
@media screen and (max-width: 1360px) {
  #project-blocks .project-block {
    height: 500px;
  }
}
#project-blocks .project-block:hover > .project-block__img {
  transform: scale(1.1);
  filter: grayscale(100%);
}
#project-blocks .project-block:hover > .project-block-content .project-block__heading {
  opacity: 0.7;
}
#project-blocks .project-block .project-block__img {
  transition: all 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#project-blocks .project-block .project-block-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 2;
  padding: 2.6rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #2A7B9B;
  background: linear-gradient(180deg, rgba(42, 123, 155, 0) 0%, rgb(190, 28, 26) 100%);
}
@media screen and (max-width: 1360px) {
  #project-blocks .project-block .project-block-content {
    padding: 2rem;
  }
}
@media screen and (max-width: 560px) {
  #project-blocks .project-block .project-block-content {
    padding: 2.2rem 1.4rem;
  }
}
#project-blocks .project-block .project-block-content .project-block__heading {
  transition: all 0.3s ease;
  font-size: 2rem;
}
@media screen and (max-width: 1800px) {
  #project-blocks .project-block .project-block-content .project-block__heading {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 560px) {
  #project-blocks .project-block .project-block-content .project-block__heading {
    font-size: 1.6rem;
  }
}

.project-image-carousel {
  overflow: hidden;
  border-radius: 30px;
  height: 700px;
  margin-bottom: 6rem;
}
@media screen and (max-width: 1800px) {
  .project-image-carousel {
    height: 600px;
  }
}
@media screen and (max-width: 1360px) {
  .project-image-carousel {
    height: 400px;
  }
}
@media screen and (max-width: 560px) {
  .project-image-carousel {
    height: 300px;
  }
}
.project-image-carousel .project-image-carousel-slide {
  position: relative;
}
.project-image-carousel .project-image-carousel-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.article-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  list-style: none;
}
@media screen and (max-width: 1360px) {
  .article-blocks {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
.article-blocks .article-block {
  width: 100%;
}
.article-blocks .article-block .article-block__img {
  transition: all 0.3s ease;
  display: block;
  width: 100%;
  height: 300px;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.article-blocks .article-block .article-block__img:hover {
  opacity: 0.6;
}
.article-blocks .article-block .article-block-content {
  padding-top: 1.4rem;
}
.article-blocks .article-block .article-block-content .article-block__heading {
  transition: all 0.3s ease;
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  line-height: 1.4;
}
.article-blocks .article-block .article-block-content .article-block__heading:hover {
  opacity: 0.6;
}

.article .article-width-container {
  width: 50%;
  margin: 0 auto;
  max-width: 1000px;
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 1360px) {
  .article .article-width-container {
    width: 70%;
    max-width: auto;
  }
}
@media screen and (max-width: 560px) {
  .article .article-width-container {
    width: 90%;
  }
}
.article .article-title {
  background: #000;
  padding: 18rem 0 13rem 0;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1800px) {
  .article .article-title {
    padding-top: 16rem;
  }
}
@media screen and (max-width: 560px) {
  .article .article-title {
    padding-top: 11rem;
  }
}
.article .article-title:has(> .project-article-title-img):after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(15px);
}
.article .article-title .bg-graphic {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100vw;
  opacity: 0.06;
  pointer-events: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 560px) {
  .article .article-title .bg-graphic {
    bottom: 0;
    left: 0;
    width: 50vw;
  }
}
.article .article-title .article__title {
  font-size: 3.2rem;
  font-weight: 900;
  z-index: 2;
  text-wrap: balance;
}
@media screen and (max-width: 1800px) {
  .article .article-title .article__title {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 1360px) {
  .article .article-title .article__title {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 560px) {
  .article .article-title .article__title {
    font-size: 2rem;
    line-height: 1.4;
    text-wrap: unset;
  }
}
.article .article-title .article-title-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}
.article .article-title .article-title-bottom .article__date {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}
.article .article-title .article-title-bottom .article__all-news-btn {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (max-width: 560px) {
  .article .article-title .article-title-bottom .article__all-news-btn {
    font-size: 1rem;
  }
}
@media screen and (max-width: 560px) {
  .article .article-title .article-title-bottom .article__all-news-btn img {
    display: none;
  }
}
.article .article__featured-img {
  display: block;
  width: 50%;
  margin: 0 auto;
  max-width: 1000px;
  height: 450px;
  border-radius: 30px;
  margin-top: -10rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 1800px) {
  .article .article__featured-img {
    height: 400px;
  }
}
@media screen and (max-width: 1360px) {
  .article .article__featured-img {
    width: 70%;
    height: 350px;
  }
}
@media screen and (max-width: 560px) {
  .article .article__featured-img {
    height: 300px;
    width: 90%;
  }
}
.article article {
  padding: 4rem 0 8rem 0;
}
@media screen and (max-width: 560px) {
  .article article {
    padding: 4rem 0 6rem 0;
  }
}
.article article h2 {
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1800px) {
  .article article h2 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 560px) {
  .article article h2 {
    font-size: 1.6rem;
  }
}
.article article h2 strong {
  font-weight: 700;
}
.article article h2:has(+ h3) {
  margin-bottom: 3.4rem;
}
.article article h3 {
  font-size: 1.4rem;
  color: #aa1f1d;
  margin: 2rem 0;
  line-height: 1.5;
}
@media screen and (max-width: 1800px) {
  .article article h3 {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 1360px) {
  .article article h3 {
    text-wrap: balance;
  }
}
.article article h3 strong {
  font-weight: 600;
}
.article article p {
  margin-bottom: 1.8rem;
  line-height: 2.2;
}
.article article p:first-of-type {
  font-size: 1.7rem !important;
  line-height: 1.8;
}
@media screen and (max-width: 1800px) {
  .article article p:first-of-type {
    font-size: 1.6rem !important;
    line-height: 1.7;
  }
}
@media screen and (max-width: 1360px) {
  .article article p:first-of-type {
    font-size: 1.4rem !important;
  }
}
@media screen and (max-width: 560px) {
  .article article p:first-of-type {
    line-height: 1.6;
  }
}
.article article p:first-of-type:has(+ h2) {
  margin-bottom: 4rem !important;
}
.article article p:first-of-type:has(+ h3) {
  margin-bottom: 4rem !important;
}
.article article p:first-of-type strong {
  font-weight: 400;
}
.article article p:last-of-type {
  margin-bottom: 0;
}
.article article p:has(+ h2) {
  margin-bottom: 4rem;
}
.article article p:has(+ h3) {
  margin-bottom: 4rem;
}
.article article ul {
  padding-left: 1rem;
  margin: 2.4rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.article article ul li {
  line-height: 1.8;
}
.article article ul li::marker {
  color: #BE1C1A;
}
.article article a {
  color: #BE1C1A;
}
.article article img {
  display: block;
  width: auto;
  height: auto;
  margin: 3rem 0;
  border-radius: 12px;
  width: 70%;
}
@media screen and (max-width: 560px) {
  .article article img {
    width: 100%;
  }
}

.resources-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  grid-gap: 10rem;
}
@media screen and (max-width: 1800px) {
  .resources-intro {
    grid-gap: 2rem;
  }
}
@media screen and (max-width: 1360px) {
  .resources-intro {
    grid-template-columns: 1fr;
    grid-gap: 6rem;
  }
}
@media screen and (max-width: 560px) {
  .resources-intro .content {
    text-wrap: unset;
  }
}
.resources-intro .resources-intro__img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 1360px) {
  .resources-intro .resources-intro__img {
    width: 70%;
  }
}
@media screen and (max-width: 560px) {
  .resources-intro .resources-intro__img {
    width: 100%;
  }
}

#video-resources .video-resource-blocks {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
@media screen and (max-width: 1360px) {
  #video-resources .video-resource-blocks {
    grid-template-columns: 1fr 1fr;
    grid-gap: 4rem;
  }
}
@media screen and (max-width: 560px) {
  #video-resources .video-resource-blocks {
    grid-template-columns: 1fr;
  }
}
#video-resources .video-resource-blocks .video-resource-block {
  position: relative;
}
#video-resources .video-resource-blocks .video-resource-block .video-resource-block__img {
  display: block;
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 1800px) {
  #video-resources .video-resource-blocks .video-resource-block .video-resource-block__img {
    height: 200px;
  }
}
#video-resources .video-resource-blocks .video-resource-block .video-resource-block-content {
  padding-top: 2rem;
}
#video-resources .video-resource-blocks .video-resource-block .video-resource-block-content .video-resource-block__heading {
  font-size: 1.4rem;
}
#video-resources .video-resource-blocks .video-resource-block .video-resource-block-content .btn {
  position: absolute;
  bottom: 0;
  left: 0;
}

#bim-series .content {
  width: 80%;
}
@media screen and (max-width: 1360px) {
  #bim-series .content {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  #bim-series .content {
    text-wrap: unset;
  }
}
#bim-series .bim-series-blocks {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
@media screen and (max-width: 1360px) {
  #bim-series .bim-series-blocks {
    grid-template-columns: 1fr;
  }
}
#bim-series .bim-series-blocks .bim-series-block {
  padding: 3rem;
  border-radius: 20px;
}
@media screen and (max-width: 1360px) {
  #bim-series .bim-series-blocks .bim-series-block {
    padding: 2rem;
  }
}
#bim-series .bim-series-blocks .bim-series-block .bim-series-block__heading {
  margin-top: 0.5rem;
  font-size: 1.3rem;
}
@media screen and (max-width: 560px) {
  #bim-series .bim-series-blocks .bim-series-block .bim-series-block__heading {
    text-wrap: balance;
    font-size: 1.4rem;
  }
}

#training {
  padding-bottom: 8rem;
}
@media screen and (max-width: 560px) {
  #training {
    padding-top: 4rem;
    padding-bottom: 5rem;
  }
}
#training .content {
  width: 90%;
}
@media screen and (max-width: 560px) {
  #training .content {
    width: 100%;
  }
}

.search-title__container {
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16rem 0 6rem 0;
  position: relative;
}
@media screen and (max-width: 560px) {
  .search-title__container {
    padding: 12rem 0 4rem 0;
  }
}
.search-title__container h2 {
  font-size: 2.8rem;
  color: white;
}
.search-title__container h2 span {
  color: #d52c29;
}
@media screen and (max-width: 560px) {
  .search-title__container h2 {
    width: 90vw;
    margin: 0 auto;
  }
}

.search-result__container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40vw;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 4rem 0;
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
}
@media screen and (max-width: 1800px) {
  .search-result__container {
    width: 50vw;
  }
}
@media screen and (max-width: 1360px) {
  .search-result__container {
    width: 75vw;
  }
}
@media screen and (max-width: 560px) {
  .search-result__container {
    width: 90vw;
  }
}
.search-result__container .search-result__title {
  color: #222;
  font-size: 1.8rem;
}
@media screen and (max-width: 1360px) {
  .search-result__container .search-result__title {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 560px) {
  .search-result__container .search-result__title {
    font-size: 1.2rem;
  }
}
.search-result__container .btn {
  transition: all 0.3s ease;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-size: 1.1rem;
  background: #BE1C1A;
  color: white;
  text-wrap: nowrap;
}
.search-result__container .btn:hover {
  transition: all 0.3s ease;
  background: #BE1C1A;
  color: white;
}
@media screen and (max-width: 560px) {
  .search-result__container .btn {
    font-size: 0.9rem;
  }
}

.no-results__container {
  background: #000;
  height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 560px) {
  .no-results__container {
    height: auto;
    padding: 10rem 0 4rem 0;
  }
}
.no-results__container i {
  color: #BE1C1A;
  font-size: 4rem;
  transform: rotate(5deg);
}
.no-results__container h2 {
  color: white;
  font-size: 3rem;
}
@media screen and (max-width: 560px) {
  .no-results__container h2 {
    font-size: 2.2rem;
  }
}
.no-results__container p {
  color: white;
  margin: 1rem auto 0 auto;
  text-align: center;
}
@media screen and (max-width: 1360px) {
  .no-results__container p {
    width: 70%;
  }
}
@media screen and (max-width: 560px) {
  .no-results__container p {
    width: 85%;
    margin: 1rem auto 2rem auto;
  }
}
.no-results__container input[type=text] {
  transition: all 0.3s ease;
  border: none;
  border-bottom: solid 1px grey;
  background: none;
  font-size: 1.6rem;
  color: white;
  outline: none;
  padding: 1rem;
  font-family: "Work Sans", sans-serif;
  margin-top: 2rem;
}
.no-results__container input[type=text]:focus {
  transition: all 0.3s ease;
  border: none !important;
}
@media screen and (max-width: 560px) {
  .no-results__container input[type=text] {
    display: block;
    width: 90vw;
    margin: 0 auto 1rem auto;
  }
}
.no-results__container input[type=submit] {
  transition: all 0.3s ease;
  background: #BE1C1A;
  color: white;
  font-size: 1.4rem;
  font-family: "Work Sans", sans-serif;
  text-transform: uppercase;
  outline: none;
  background: none;
  border: none;
  border: solid 1px #BE1C1A;
  padding: 1rem 2rem;
  margin-left: 1rem;
  border-radius: 30px;
  cursor: pointer;
}
.no-results__container input[type=submit]:hover {
  transition: all 0.3s ease;
  background: #BE1C1A;
  color: white;
}
@media screen and (max-width: 560px) {
  .no-results__container input[type=submit] {
    display: block;
    width: 90vw;
    margin: 1rem auto 1rem auto;
  }
}

.service-content-container {
  background: white;
}
.service-content-container:nth-child(odd) {
  background: #f2f2f2;
}
.service-content-container .service-content h2 {
  font-size: 2rem;
  margin-bottom: 2.6rem;
  line-height: 1.7;
  text-wrap: balance;
  width: 90%;
}
@media screen and (max-width: 1360px) {
  .service-content-container .service-content h2 {
    font-size: 2rem;
    line-height: 1.6;
  }
}
@media screen and (max-width: 560px) {
  .service-content-container .service-content h2 {
    font-size: 1.6rem;
    width: 100%;
    text-wrap: unset;
  }
}
.service-content-container .service-content p {
  margin-bottom: 1.4rem;
  line-height: 2;
  font-weight: 300;
  width: 65%;
}
@media screen and (max-width: 2200px) {
  .service-content-container .service-content p {
    width: 70%;
  }
}
@media screen and (max-width: 1800px) {
  .service-content-container .service-content p {
    width: 80%;
  }
}
@media screen and (max-width: 1360px) {
  .service-content-container .service-content p {
    width: 100%;
  }
}
.service-content-container .service-content p:last-of-type {
  margin-bottom: 0;
}
.service-content-container .service-content strong {
  font-weight: 600;
}
.service-content-container .service-content ul, .service-content-container .service-content ol {
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  margin: 2.4rem 0;
  gap: 0.8rem;
}
.service-content-container .service-content ul li, .service-content-container .service-content ol li {
  font-weight: 300;
}
.service-content-container .service-content ul li::marker, .service-content-container .service-content ol li::marker {
  color: #BE1C1A;
}
.service-content-container .service-content ul:last-of-type, .service-content-container .service-content ol:last-of-type {
  margin-bottom: 0;
}
.service-content-container .service-content ul:last-of-type + p, .service-content-container .service-content ol:last-of-type + p {
  margin-top: 4rem;
}

#service-faq {
  background: #e9e9e9;
}
#service-faq .service-faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 4rem;
}
#service-faq .service-faq-list .service-faq-list-item {
  display: block;
  width: 100%;
  background: white;
  border-radius: 15px;
  overflow: hidden;
}
#service-faq .service-faq-list .service-faq-list-item[open] > .service-faq-list-item__header:after {
  content: "-";
}
#service-faq .service-faq-list .service-faq-list-item[open] > .service-faq-list-item__header {
  color: crimson;
  background: #f5f5f5;
}
#service-faq .service-faq-list .service-faq-list-item .service-faq-list-item__header {
  padding: 2.4rem 2rem;
  list-style: none;
  font-size: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
@media screen and (max-width: 560px) {
  #service-faq .service-faq-list .service-faq-list-item .service-faq-list-item__header {
    font-size: 1.1rem;
    gap: 2rem;
    padding: 2rem 1.4rem;
  }
}
#service-faq .service-faq-list .service-faq-list-item .service-faq-list-item__header:after {
  content: "+";
  position: relative;
}
#service-faq .service-faq-list .service-faq-list-item .service-faq-list-item__panel {
  padding: 3rem 2rem;
}
@media screen and (max-width: 560px) {
  #service-faq .service-faq-list .service-faq-list-item .service-faq-list-item__panel {
    padding: 1rem 1.4rem 2rem 1.4rem;
  }
}
#service-faq .service-faq-list .service-faq-list-item .service-faq-list-item__panel h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
#service-faq .service-faq-list .service-faq-list-item .service-faq-list-item__panel a {
  color: #BE1C1A;
}
#service-faq .service-faq-list .service-faq-list-item .service-faq-list-item__panel p {
  margin-bottom: 1.4rem;
  line-height: 1.8;
  font-weight: 300;
  width: 90%;
}
@media screen and (max-width: 560px) {
  #service-faq .service-faq-list .service-faq-list-item .service-faq-list-item__panel p {
    width: 100%;
  }
}
#service-faq .service-faq-list .service-faq-list-item .service-faq-list-item__panel p:last-of-type {
  margin-bottom: 0;
}
#service-faq .service-faq-list .service-faq-list-item .service-faq-list-item__panel strong {
  font-weight: 600;
}
#service-faq .service-faq-list .service-faq-list-item .service-faq-list-item__panel ul {
  padding-left: 1rem;
  margin: 1.8rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-weight: 300;
}
#service-faq .service-faq-list .service-faq-list-item .service-faq-list-item__panel ul li::marker {
  color: #BE1C1A;
}
#service-faq .service-faq-list .service-faq-list-item .service-faq-list-item__panel ol {
  padding-left: 1rem;
  margin: 1.8rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-weight: 300;
}
#service-faq .service-faq-list .service-faq-list-item .service-faq-list-item__panel ol li::marker {
  color: #BE1C1A;
}
#service-faq .why-choose-aimis {
  margin-top: 6rem;
}
#service-faq .why-choose-aimis ul {
  padding-left: 1rem;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#service-faq .why-choose-aimis ul + p {
  margin-top: 4rem;
  color: #BE1C1A;
  font-weight: 800;
  font-size: 1.1rem;
  text-wrap: balance;
}

#bim-solutions .solutions-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  list-style: none;
}
@media screen and (max-width: 1360px) {
  #bim-solutions .solutions-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 560px) {
  #bim-solutions .solutions-list {
    grid-template-columns: 1fr;
  }
}
#bim-solutions .solutions-list .solutions-list-item {
  border-radius: 15px;
  padding: 2rem;
  font-size: 1.2rem;
}

#bim-standards {
  padding: 2rem 0 8rem 0;
}
@media screen and (max-width: 560px) {
  #bim-standards {
    padding-bottom: 5rem;
  }
}
#bim-standards .bim-standards {
  margin-top: 4rem;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2rem;
}
@media screen and (max-width: 1360px) {
  #bim-standards .bim-standards {
    grid-template-columns: 1fr;
  }
}
#bim-standards .bim-standards .bim-standard {
  padding: 5rem;
  height: auto !important;
  border-radius: 14px;
}
@media screen and (max-width: 1360px) {
  #bim-standards .bim-standards .bim-standard {
    padding: 4rem 3rem;
  }
}
@media screen and (max-width: 560px) {
  #bim-standards .bim-standards .bim-standard {
    padding: 4rem 2rem;
  }
}
#bim-standards .bim-standards .bim-standard .bim-standard__heading {
  font-size: 1.6rem;
  text-wrap: balance;
}
@media screen and (max-width: 1360px) {
  #bim-standards .bim-standards .bim-standard .bim-standard__heading {
    font-size: 1.4rem;
  }
}
#bim-standards .bim-standards .bim-standard .bim-standard__body ul {
  padding-left: 1rem;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#bim-standards .bim-standards .bim-standard .bim-standard__body ul:last-of-type {
  margin-bottom: 0;
}
#bim-standards .bim-standards .bim-standard .bim-standard__body ul:last-of-type + p {
  margin-top: 2rem;
}
#bim-standards .bim-standards .bim-standard .bim-standard__body p {
  margin-bottom: 1.4rem;
}
#bim-standards .bim-standards .bim-standard .bim-standard__body p:last-of-type {
  margin-bottom: 0;
}

/* 
Theme Name: Aimis Custom Theme
Author: The Digital Lookout
Description: This is a custom build WP Theme for Aimis by The Digital Lookou
Version: 1.1
*/
