/* Variables */
/* New Colors */
/* Animations */
@keyframes fadeInScale {
  /*
  from{
      opacity:0;
      scale: 0.5;
  } to {
      opacity:1;
      scale:1;
  }
  */
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    scale: 0.5;
    transform: translate(-1000px);
  }
  to {
    opacity: 1;
    scale: 1;
    transform: translate(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    scale: 0.5;
    transform: translate(1000px);
  }
  to {
    opacity: 1;
    scale: 1;
    transform: translate(0);
  }
}
.fadeinscale {
  animation: fadeInScale linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.fadeinleft {
  animation: fadeInLeft linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.fadeinright {
  animation: fadeInRight linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

/* Main */
body {
  font-family: "Bw Modelica", san-serif;
  font-weight: 500;
  overflow-x: hidden;
}

a:link {
  color: #1d243c;
  text-decoration: none;
}

a:hover {
  color: #408eb0;
  text-decoration: none;
}

a:visited {
  color: #1d243c;
  text-decoration: none;
}

a:active {
  color: #408eb0;
  text-decoration: none;
}

#htdl-logo {
  width: auto;
}

/* Nav */
nav.navbar {
  background-color: transparent !important;
  z-index: 1050;
  transition: background-color 0.35s ease, padding 0.35s ease;
  padding-top: 0;
  padding-bottom: 0;
}

nav.navbar.scrolled {
  background-color: rgba(8, 9, 32, 0.9);
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-collapse {
  background-color: #1d243c;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100vh;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  clip-path: circle(0% at 95% 5%);
  -webkit-clip-path: circle(0% at 95% 5%);
  transition: clip-path 0.6s ease-in-out, -webkit-clip-path 0.6s ease-in-out;
}

.navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 991.98px) {
  .navbar-nav {
    flex-direction: column;
  }
}
.navbar-toggler,
.navbar-brand {
  position: relative;
  z-index: 1;
}

.navbar-toggler:focus,
.navbar-toggler:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

.navbar-collapse .nav-link {
  text-transform: uppercase;
  font-size: 2em;
  font-weight: 700;
  letter-spacing: 2px;
}

.nav-link {
  color: #b2946b !important;
}

.nav-link:hover {
  color: #cd1f3e !important;
}

.nav-link:visited {
  color: #b2946b !important;
}

.nav-link:active {
  color: #cd1f3e !important;
}

.navbar-collapse .nav-item:not(:last-child) {
  border-bottom: 1px solid #b2946b;
  padding: 0.2em 4em;
}

@media screen and (min-width: 576px) {
  .navbar-collapse .nav-item:not(:last-child) {
    padding: 0.4em 7em;
  }
}
.navbar-collaspse .nav-link,
.navbar-collapse {
  color: #b2946b;
}

.navbar-collaspse .nav-link:hover,
.navbar-collapse .nav-link.active {
  color: #fff;
}

.navbar-collapse.show {
  clip-path: circle(160% at 95% 5%);
  -webkit-clip-path: circle(160% at 95% 5%);
}

.o-sprites {
  display: none;
}

#htdl-logo {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 0 1rem 0 0;
  padding: 0;
  text-decoration: none;
  transition: padding 0.25s ease;
}

#htdl-logo .logo-img {
  width: 8rem;
  height: auto;
  mix-blend-mode: difference;
  transform-origin: top left;
  transition: transform 0.35s ease, filter 0.35s ease, opacity 0.35s ease;
}

#htdl-logo:hover .logo-img {
  filter: brightness(1.2);
}

#htdl-logo.logo-scrolled .logo-img {
  transform: scale(0.65);
}

.navbar-toggler, .navbar-toggler:focus {
  border: none;
  outline: none;
  box-shadow: none;
}

.navbar-toggler-icon {
  display: inline-block;
  outline: none;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  background-image: none;
}

.navbar-toggler:focus {
  boxshadow: none;
  border: 0;
}

/* Typography */
h1 {
  font-family: "Bw Modelica";
  font-weight: 900;
  color: #1d243c;
}

h2 {
  font-family: "Bw Modelica";
  color: #1d243c;
  font-weight: 700;
}

h3 {
  font-family: "Bw Modelica";
  color: #1d243c;
  font-weight: 500;
}

h4 {
  font-family: "Bw Modelica";
  color: #1d243c;
  font-weight: 700;
  font-size: 1.15rem;
}

h5 {
  font-family: "Bw Modelica";
  color: #1d243c;
  font-weight: 500;
  font-size: 1rem;
}

h6 {
  font-family: "Bw Modelica";
  color: #1d243c;
  font-weight: 500;
}

.lead {
  font-family: "Bw Modelica";
  color: #1d243c;
  font-weight: 500;
  font-size: 1.5rem;
}

.p {
  color: #1d243c;
}

/* Tip Tap Paragraph Issue */
ul > li > p {
  margin-bottom: 0;
}

ol > li > p {
  margin-bottom: 0;
}

.blockquote {
  margin-left: 30px;
}

.blockquote h2 {
  font-size: 1.8rem;
}

.blockquote-footer {
  margin-top: 5px;
  font-family: "Bw Modelica";
  color: #636466;
  font-weight: 500;
}

.display-1 {
  font-family: "Bw Modelica";
  font-weight: 900;
}

.display-2 {
  font-family: "Bw Modelica";
  font-weight: 700;
}

.display-3 {
  font-family: "Bw Modelica";
  font-weight: 500;
}

.display-4 {
  font-family: "Bw Modelica";
  font-weight: 700;
}

.dotted-border {
  border: 1px dashed #ccc;
}

.closed-typography {
  width: min(450px, 100%);
  text-transform: uppercase;
  line-height: 43pt;
  letter-spacing: -8px;
}

@media (max-width: 575.98px) {
  .closed-typography {
    width: 100%;
    letter-spacing: -4px;
    line-height: 23pt;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .closed-typography {
    width: 90%;
    letter-spacing: -5px;
    line-height: 29pt;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .closed-typography {
    width: 400px;
    letter-spacing: -7px;
    line-height: 33pt;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .closed-typography {
    width: 400px;
    letter-spacing: -8px;
    line-height: 39pt;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .closed-typography {
    width: 450px;
    letter-spacing: -9px;
    line-height: 44pt;
  }
}
@media (min-width: 1400px) {
  .closed-typography {
    width: 450px;
    letter-spacing: -10px;
    line-height: 44pt;
  }
}
/* Colors */
.color-selected {
  color: #2CD1A1;
}

.bg-dark-blue {
  background-color: #1d243c;
}

.bg-tan {
  background-color: #b2946b;
}

.bg-red {
  background-color: #cd1f3e;
}

.bg-green {
  background-color: #2eaa7e;
}

.bg-blue {
  background-color: #408eb0;
}

.bg-mustard {
  background-color: #edb41e;
}

.bg-dark-grey {
  background-color: #505357;
}

.bg-slategrey {
  background-color: #636466;
}

/* Colors */
.htdl-dark-blue {
  color: #1d243c;
}

.htdl-tan {
  color: #b2946b;
}

.htdl-red {
  color: #cd1f3e;
}

.htdl-green {
  color: #2eaa7e;
}

.htdl-blue {
  color: #408eb0;
}

.htdl-mustard {
  color: #edb41e;
}

.htdl-dark-grey {
  color: #505357;
}

.htdl-slategrey {
  color: #636466;
}

/* hr */
.hr-blue {
  opacity: 1;
  border: 0;
  width: 100%;
  border-bottom: 4px solid #408eb0;
}

/* Remove Border Radius */
.card, .card-img, .card-img-top, .card-img-fluid {
  border-radius: 0 !important;
}

.card img {
  border-radius: 0 !important;
}

.accordion, .accordion-button, .accordion-item, .accordion-body {
  border-radius: 0 !important;
}

/* Header Image */
.header-image {
  height: 300px;
}

@media (min-width: 576px) {
  .header-image {
    height: 325px;
  }
}
@media (min-width: 768px) {
  .header-image {
    height: 350px;
  }
}
@media (min-width: 992px) {
  .header-image {
    height: 375px;
  }
}
@media (min-width: 1200px) {
  .header-image {
    height: 400px;
  }
}
@media (min-width: 1400px) {
  .header-image {
    height: 450px;
  }
}
.card {
  border: 0;
}

.card-footer {
  padding: 0;
  color: none;
  background-color: none;
  border-top: none;
}

/* Team Cards */
.team-card {
  position: relative;
  overflow: hidden;
}

.team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(64, 142, 176, 0.8);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
}

.team-card:hover::after {
  opacity: 1;
}

.team-card img.card-img-top {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 2;
  color: #ffffff;
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.team-card:hover .team-card-body {
  opacity: 1;
  transform: translateY(0);
}

/* News Cards */
.news-card {
  position: relative;
  overflow: hidden;
  /*
  animation: fadeInScale linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
  */
}

.news-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(205, 31, 62, 0.8);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
}

.news-card:hover::after {
  opacity: 1;
}

.news-card img.card-img-top {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 2;
  color: #ffffff;
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.news-card:hover .news-card-body {
  opacity: 1;
  transform: translateY(0);
}

/* Portfolio Cards */
.portfolio-card {
  position: relative;
  overflow: hidden;
  animation: fadeInScale linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(64, 142, 176, 0.8);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
}

.portfolio-card:hover::after {
  opacity: 1;
}

.portfolio-card img.card-img-top {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 2;
  color: #ffffff;
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.portfolio-card:hover .portfolio-card-body {
  opacity: 1;
  transform: translateY(0);
}

.website-card {
  position: relative;
  overflow: hidden;
}

.website-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(13, 26, 42, 0.8);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
}

.website-card:hover::after {
  opacity: 1;
}

.website-card img.card-img-top {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.website-card-body {
  position: absolute;
  inset: 0;
  padding: 2rem;
  z-index: 2;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(13, 26, 42, 0) 0%, rgba(13, 26, 42, 0.9) 85%);
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.35s ease, transform 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 0.75rem;
}

.website-card:hover .website-card-body {
  opacity: 1;
  transform: translateY(0);
}

/* Client Logo */
.client-logo-frame {
  min-height: 230px;
}

.client-logo {
  transition: transform 0.4s ease;
  transform-origin: center;
  text-shadow: 2px 2px 5px #1D243C;
}

.client-logo:hover {
  transform: scale(2);
  text-shadow: 2px 2px 5px #1D243C;
}

/* Partnership Logo */
.partner-logo {
  width: 225px;
}

.partner-logo {
  transition: transform 0.4s ease;
  transform-origin: center;
  transform: scale(1);
  opacity: 0.5;
}

.partner-logo:hover {
  transform: scale(1.1);
  opacity: 1;
}

/* USPs */
.usp {
  /*padding:15px;*/
}

/* Our Methodology */
.our-methodology {
  background-image: url("../../assets/img/Home-banners/our-methodology.svg");
  background-repeat: no-repeat;
  background-position: right 30px top 30px;
  min-height: 410px;
}

/* Our Clients */
/*.our-clients{
    background: url("../../assets/img/Home-banners/some-of-our-clients.svg") top left no-repeat;
    min-height:470px;
}*/
@media (max-width: 991.98px) {
  .our-methodology {
    background-image: url("../../assets/img/Home-banners/our-methodology-light.svg");
    background-repeat: no-repeat;
    background-position: right 30px top 30px;
    min-height: 410px;
  }
  /*.our-clients{
      background: url("../../assets/img/Home-banners/some-of-our-clients-light.svg") top left no-repeat;
      min-height:470px;
  }*/
}
/* Shadows */
.shadow {
  text-shadow: 2px 2px 5px #1D243C;
}

/* Footer SEO Accordion */
#seo-accordion .accordion-header, #seo-accordion .accordion-button {
  color: #E6E6E6;
  background-color: #1d243c;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
}

#seo-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125);
}

#seo-accordion .accordion-body {
  background-color: #1d243c;
  border-left: none;
  border-right: none;
  border-bottom: none;
}

/* Accordion Arrow */
#seo-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23E6E6E6'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
}

.htdl-badge {
  background-color: #1d243c;
  color: #ffffff;
}

#search-accordion .accordion-header, #search-accordion .accordion-button {
  color: #1d243c;
  background-color: #E6E6E6;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
}

#search-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125);
}

#search-accordion .accordion-body {
  background-color: #E6E6E6;
  border-left: none;
  border-right: none;
  border-bottom: none;
}

/* Accordion Arrow */
#search-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231d243c'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
}

.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: none;
  box-shadow: none;
}

.accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: none;
}

/*body {
    cursor: url("../../assets/img//Cursor/cursor.webp") 16 16, url("../../assets/img//Cursor/cursor.svg") 16 16, auto;
}*/
@media (pointer: coarse) {
  body {
    cursor: auto;
  }
}
.cursor-trail {
  position: fixed;
  width: 26px;
  height: 26px;
  pointer-events: none;
  background-image: url("../../assets/img//Cursor/cursor.svg");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.9;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 2147483647;
}

.cursor-trail--fade {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.6);
}

/* Statistics */
.stat {
  color: #b2946b;
  border: 2px solid #b2946b;
  border-radius: 15px;
  min-height: 240px;
  padding: 15px;
  width: 100%;
  margin-bottom: 5px;
}

.stat:hover {
  color: #1d243c;
  border: 2px solid #1d243c;
  border-radius: 15px;
  min-height: 240px;
  padding: 15px;
  width: 100%;
  margin-bottom: 5px;
}

/* general Accordion */
.general-accordion .accordion-header, .general-accordion .accordion-button {
  color: #E6E6E6;
  background-color: #1d243c;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
}

.general-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125);
}

.general-accordion .accordion-body {
  background-color: #E6E6E6;
  border-left: none;
  border-right: none;
  border-bottom: none;
}

/* Accordion Arrow */
.general-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23E6E6E6'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
}

/* Edit Button */
.umbraco-edit-button {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 99999;
  padding: 10px 16px;
  border-radius: 8px;
  background: #0d1b2a;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  transition: all 0.2s ease;
}

.umbraco-edit-button:hover {
  background: #1b263b;
  transform: translateY(-2px);
}

/* Gallery */
.card-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(64, 142, 176, 0.8);
  /* 50% black overlay */
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
}

.card:hover .card-image-overlay {
  opacity: 1;
}

.card-image-overlay i {
  color: white;
  font-size: 2em;
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
  border-color: #b2946b !important;
}

.fancybox__progress {
  background: #b2946b !important;
}

/* Horizontal Rule */
.horizontal-rule {
  border: none;
  border-bottom: 3px solid #b2946b;
}

/* Homepage Quote Carousel */
.quote-triangle img {
  height: 60px;
}

.quote-triangle img {
  height: 60px;
}

/* Owl Dots */
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #b2946b;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #cd1f3e;
}

/* Tabs */
.nav-tabs {
  text-transform: uppercase;
  font-weight: 700;
}

/* Website View Cards */
.website-card {
  position: relative;
  overflow: hidden;
  /*
  animation: fadeInScale linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
  */
}

.website-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(64, 142, 176, 0.8);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
}

.website-card:hover::after {
  opacity: 1;
}

.website-card img.card-img-top {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.website-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 2;
  color: #ffffff;
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.website-card:hover .website-card-body {
  opacity: 1;
  transform: translateY(0);
}

/* Paragraph Columns */
.column-rule {
  column-rule: 1px solid #408eb0;
}

@media (max-width: 575px) {
  .newspaper-2 {
    column-count: 1;
    column-gap: 30px;
  }
  .newspaper-3 {
    column-count: 1;
    column-gap: 30px;
  }
}
@media (min-width: 576px) {
  .newspaper-2 {
    column-count: 1;
    column-gap: 30px;
  }
  .newspaper-3 {
    column-count: 1;
    column-gap: 30px;
  }
}
@media (min-width: 768px) {
  .newspaper-2 {
    column-count: 2;
    column-gap: 30px;
  }
  .newspaper-3 {
    column-count: 2;
    column-gap: 30px;
  }
}
@media (min-width: 992px) {
  .newspaper-2 {
    column-count: 2;
    column-gap: 30px;
  }
  .newspaper-3 {
    column-count: 3;
    column-gap: 30px;
  }
}
@media (min-width: 1200px) {
  .newspaper-2 {
    column-count: 2;
    column-gap: 30px;
  }
  .newspaper-3 {
    column-count: 3;
    column-gap: 30px;
  }
}
@media (min-width: 1400px) {
  .newspaper-2 {
    column-count: 2;
    column-gap: 30px;
  }
  .newspaper-3 {
    column-count: 3;
    column-gap: 30px;
  }
}
/* HR */
hr {
  border: none;
  border-bottom: 2px solid #b2946b;
  opacity: 1;
}

/* Pagination */
.active > .page-link, .page-link.active {
  z-index: 3;
  color: #ffffff;
  background-color: #1d243c;
}

/* CGI Cards */
.cgi-card {
  position: relative;
  overflow: hidden;
  /*
  animation: fadeInScale linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
  */
}

.cgi-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(64, 142, 176, 0.8);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
}

.cgi-card:hover::after {
  opacity: 1;
}

.cgi-card img.card-img-top {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cgi-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 2;
  color: #ffffff;
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.cgi-card:hover .cgi-card-body {
  opacity: 1;
  transform: translateY(0);
}

.masonry-item img {
  display: block;
  width: 100%;
  height: auto;
}

/* Buttons */
.htdl-primary-btn {
  background-color: #1d243c;
  color: #ffffff;
  padding-left: 40px;
  padding-right: 40px;
  font-weight: 600;
}

.htdl-primary-btn:link {
  background-color: #1d243c;
  color: #ffffff;
  padding-left: 40px;
  padding-right: 40px;
  font-weight: 600;
}

.htdl-primary-btn:hover {
  background-color: #408eb0;
  color: #ffffff;
  padding-left: 40px;
  padding-right: 40px;
  font-weight: 600;
}

.htdl-primary-btn:visited {
  background-color: #1d243c;
  color: #ffffff;
  padding-left: 40px;
  padding-right: 40px;
  font-weight: 600;
}

.htdl-primary-btn:active {
  background-color: #408eb0;
  color: #ffffff;
  padding-left: 40px;
  padding-right: 40px;
  font-weight: 600;
}

/* Homepage Contact Button */
.btn-contact {
  background-color: #cd1f3e;
  color: #ffffff !important;
  padding-left: 40px;
  padding-right: 40px;
  font-weight: 600;
}

.btn-contact:link {
  background-color: #cd1f3e;
  color: #ffffff !important;
  padding-left: 40px;
  padding-right: 40px;
  font-weight: 600;
}

.btn-contact:hover {
  background-color: #408eb0;
  color: #ffffff !important;
  padding-left: 40px;
  padding-right: 40px;
  font-weight: 600;
}

.btn-contact:visited {
  background-color: #cd1f3e;
  color: #ffffff !important;
  padding-left: 40px;
  padding-right: 40px;
  font-weight: 600;
}

.btn-contact:active {
  background-color: #408eb0;
  color: #ffffff !important;
  padding-left: 40px;
  padding-right: 40px;
  font-weight: 600;
}

/* page */
.header {
  min-height: 450px;
}

/* Footer */
#footer a:link {
  color: #ffffff;
}

#footer a:hover {
  color: #408eb0;
}

#footer a:visited {
  color: #ffffff;
}

#footer a:active {
  color: #408eb0;
}

#seo-footer-text > :is(h2, h3, h4, h5, h6, .lead) {
  color: #ffffff !important;
}

/* Forms */
::-moz-selection { /* Code for Firefox */
  color: #000000;
  background: #408eb0;
}

::selection {
  color: #000000;
  background: #408eb0;
}

input, textarea {
  caret-color: #1d243c;
}

/* Halo */
.form-control:focus {
  border-color: #408eb0;
  box-shadow: 0 0 0 0.2rem #408eb0;
}

.form-control {
  border-radius: 0.5rem;
  font-weight: 500;
  color: #1d243c;
  border: 1px solid #E6E6E6;
}

input[type=checkbox],
input[type=radio] {
  accent-color: #408eb0;
}

input[type=checkbox]:checked,
input[type=radio]:checked {
  background-color: #408eb0;
  border-color: #408eb0;
}

legend {
  font-weight: 700;
  text-transform: uppercase;
  color: #1d243c;
  font-size: 1.5em;
}

label {
  font-weight: 700 !important;
  color: #1d243c;
}

.form-label {
  font-weight: 700;
  color: #1d243c;
}

::placeholder {
  font-weight: 700;
}

/* Umbraco Specific */
.umbraco-forms-form .checkboxlist label {
  float: none !important;
  clear: none !important;
}

label.umbraco-forms-label {
  font-weight: 500;
}

#contactform textarea {
  width: 100%;
}

#contactform fieldset {
  margin: 0;
}

#contactform .umbraco-forms-form input.text, .umbraco-forms-form textarea {
  min-width: 100% important;
}

.umbraco-forms-form input.text, .umbraco-forms-form textarea {
  min-width: 100% important;
}

.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 1050;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.15);
}

.cookie-bar.cookie-bar--visible {
  transform: translateY(0);
}

.cookie-bar .container {
  max-width: 960px;
}