@import url('https://fonts.googleapis.com/css?family=Ubuntu+Condensed');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
/* List style */
ol,
ul {
  margin-left: 20px;
  padding-left: 20px;
}

/* Section title */
.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 30px;
}

/* Grid layout */
.body-part-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Card style with animation */
.body-part-card {
  background: white;
  border: 2px solid transparent;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s, border 0.4s, opacity 0.4s;
  opacity: 0;
  transform: translateY(30px);
}

/* Animation class when in view */
.body-part-card.visible {
  opacity: 1;
  transform: translateY(0);
  border-color: #007bff; /* Optional highlight on scroll-in */
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  -webkit-text-size-adjust: none;
}

mark {
  background-color: transparent;
  color: inherit;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input,
select,
textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
}

/* Basic */

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

@-ms-viewport {
  width: device-width;
}

body {
  font-size: 13.5pt;
  font-family: 'Ubuntu Condensed', sans-serif;
  background-color: #e3e9dc;
  color: #878e83;
  letter-spacing: -1px;
}

h1,
h2,
h3,
h4 {
  color: #007897;
  font-weight: normal;
}

h3,
h4 {
  color: #283121;
  margin-bottom: 0.5em;
}

h3 {
  font-size: 1.2em;
  margin-bottom: 0.8em;
}

h4 {
  font-size: 1em;
}

p,
ul {
  margin-bottom: 1.25em;
}

p {
  line-height: 1.8em;
}

strong {
  color: #474e43;
}

img.left {
  float: left;
  margin: 2px 1.25em 0 0;
}

img.top {
  margin: 4px 0 2.25em 0;
}

ul {
  padding: 0.25em 0 0 0;
}

a {
  color: #5d93a2;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

* > p:last-child {
  margin-bottom: 0 !important;
}

section,
article {
  margin: 0 0 60px 0;
}

section:last-child,
article:last-child {
  margin-bottom: 0;
}

/* Container */

.container {
  margin: 0 auto;
  max-width: 100%;
  width: 1200px;
}

@media screen and (max-width: 1680px) {
  .container {
    width: 1200px;
  }
}

@media screen and (max-width: 1280px) {
  .container {
    width: calc(100% - 70px);
  }
}

@media screen and (max-width: 980px) {
  .container {
    width: calc(100% - 100px);
  }
}

@media screen and (max-width: 736px) {
  .container {
    width: calc(100% - 40px);
  }
}

/* Row */

.row {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  align-items: stretch;
}

.row > * {
  box-sizing: border-box;
}

.row.gtr-uniform > * > :last-child {
  margin-bottom: 0;
}

.row.aln-left {
  justify-content: flex-start;
}

.row.aln-center {
  justify-content: center;
}

.row.aln-right {
  justify-content: flex-end;
}

.row.aln-top {
  align-items: flex-start;
}

.row.aln-middle {
  align-items: center;
}

.row.aln-bottom {
  align-items: flex-end;
}

.row > .imp {
  order: -1;
}

.row > .col-1 {
  width: 8.33333%;
}

.row > .off-1 {
  margin-left: 8.33333%;
}

.row > .col-2 {
  width: 16.66667%;
}

.row > .off-2 {
  margin-left: 16.66667%;
}

.row > .col-3 {
  width: 25%;
}

.row > .off-3 {
  margin-left: 25%;
}

.row > .col-4 {
  width: 33.33333%;
}

.row > .off-4 {
  margin-left: 33.33333%;
}

.row > .col-5 {
  width: 41.66667%;
}

.row > .off-5 {
  margin-left: 41.66667%;
}

.row > .col-6 {
  width: 50%;
}

.row > .off-6 {
  margin-left: 50%;
}

.row > .col-7 {
  width: 58.33333%;
}

.row > .off-7 {
  margin-left: 58.33333%;
}

.row > .col-8 {
  width: 66.66667%;
}

.row > .off-8 {
  margin-left: 66.66667%;
}

.row > .col-9 {
  width: 75%;
}

.row > .off-9 {
  margin-left: 75%;
}

.row > .col-10 {
  width: 83.33333%;
}

.row > .off-10 {
  margin-left: 83.33333%;
}

.row > .col-11 {
  width: 91.66667%;
}

.row > .off-11 {
  margin-left: 91.66667%;
}

.row > .col-12 {
  width: 100%;
}

.row > .off-12 {
  margin-left: 100%;
}

.row.gtr-0 {
  margin-top: 0px;
  margin-left: 0px;
}

.row.gtr-0 > * {
  padding: 0px 0 0 0px;
}

.row.gtr-0.gtr-uniform {
  margin-top: 0px;
}

.row.gtr-0.gtr-uniform > * {
  padding-top: 0px;
}

.row.gtr-25 {
  margin-top: -12.5px;
  margin-left: -12.5px;
}

.row.gtr-25 > * {
  padding: 12.5px 0 0 12.5px;
}

.row.gtr-25.gtr-uniform {
  margin-top: -12.5px;
}

.row.gtr-25.gtr-uniform > * {
  padding-top: 12.5px;
}

.row.gtr-50 {
  margin-top: -25px;
  margin-left: -25px;
}

.row.gtr-50 > * {
  padding: 25px 0 0 25px;
}

.row.gtr-50.gtr-uniform {
  margin-top: -25px;
}

.row.gtr-50.gtr-uniform > * {
  padding-top: 25px;
}

.row {
  margin-top: -50px;
  margin-left: -50px;
}

.row > * {
  padding: 50px 0 0 50px;
}

.row.gtr-uniform {
  margin-top: -50px;
}

.row.gtr-uniform > * {
  padding-top: 50px;
}

.row.gtr-150 {
  margin-top: -75px;
  margin-left: -75px;
}

.row.gtr-150 > * {
  padding: 75px 0 0 75px;
}

.row.gtr-150.gtr-uniform {
  margin-top: -75px;
}

.row.gtr-150.gtr-uniform > * {
  padding-top: 75px;
}

.row.gtr-200 {
  margin-top: -100px;
  margin-left: -100px;
}

.row.gtr-200 > * {
  padding: 100px 0 0 100px;
}

.row.gtr-200.gtr-uniform {
  margin-top: -100px;
}

.row.gtr-200.gtr-uniform > * {
  padding-top: 100px;
}

@media screen and (max-width: 1680px) {
  .row {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    align-items: stretch;
  }

  .row > * {
    box-sizing: border-box;
  }

  .row.gtr-uniform > * > :last-child {
    margin-bottom: 0;
  }

  .row.aln-left {
    justify-content: flex-start;
  }

  .row.aln-center {
    justify-content: center;
  }

  .row.aln-right {
    justify-content: flex-end;
  }

  .row.aln-top {
    align-items: flex-start;
  }

  .row.aln-middle {
    align-items: center;
  }

  .row.aln-bottom {
    align-items: flex-end;
  }

  .row > .imp-xlarge {
    order: -1;
  }

  .row > .col-1-xlarge {
    width: 8.33333%;
  }

  .row > .off-1-xlarge {
    margin-left: 8.33333%;
  }

  .row > .col-2-xlarge {
    width: 16.66667%;
  }

  .row > .off-2-xlarge {
    margin-left: 16.66667%;
  }

  .row > .col-3-xlarge {
    width: 25%;
  }

  .row > .off-3-xlarge {
    margin-left: 25%;
  }

  .row > .col-4-xlarge {
    width: 33.33333%;
  }

  .row > .off-4-xlarge {
    margin-left: 33.33333%;
  }

  .row > .col-5-xlarge {
    width: 41.66667%;
  }

  .row > .off-5-xlarge {
    margin-left: 41.66667%;
  }

  .row > .col-6-xlarge {
    width: 50%;
  }

  .row > .off-6-xlarge {
    margin-left: 50%;
  }

  .row > .col-7-xlarge {
    width: 58.33333%;
  }

  .row > .off-7-xlarge {
    margin-left: 58.33333%;
  }

  .row > .col-8-xlarge {
    width: 66.66667%;
  }

  .row > .off-8-xlarge {
    margin-left: 66.66667%;
  }

  .row > .col-9-xlarge {
    width: 75%;
  }

  .row > .off-9-xlarge {
    margin-left: 75%;
  }

  .row > .col-10-xlarge {
    width: 83.33333%;
  }

  .row > .off-10-xlarge {
    margin-left: 83.33333%;
  }

  .row > .col-11-xlarge {
    width: 91.66667%;
  }

  .row > .off-11-xlarge {
    margin-left: 91.66667%;
  }

  .row > .col-12-xlarge {
    width: 100%;
  }

  .row > .off-12-xlarge {
    margin-left: 100%;
  }

  .row.gtr-0 {
    margin-top: 0px;
    margin-left: 0px;
  }

  .row.gtr-0 > * {
    padding: 0px 0 0 0px;
  }

  .row.gtr-0.gtr-uniform {
    margin-top: 0px;
  }

  .row.gtr-0.gtr-uniform > * {
    padding-top: 0px;
  }

  .row.gtr-25 {
    margin-top: -12.5px;
    margin-left: -12.5px;
  }

  .row.gtr-25 > * {
    padding: 12.5px 0 0 12.5px;
  }

  .row.gtr-25.gtr-uniform {
    margin-top: -12.5px;
  }

  .row.gtr-25.gtr-uniform > * {
    padding-top: 12.5px;
  }

  .row.gtr-50 {
    margin-top: -25px;
    margin-left: -25px;
  }

  .row.gtr-50 > * {
    padding: 25px 0 0 25px;
  }

  .row.gtr-50.gtr-uniform {
    margin-top: -25px;
  }

  .row.gtr-50.gtr-uniform > * {
    padding-top: 25px;
  }

  .row {
    margin-top: -50px;
    margin-left: -50px;
  }

  .row > * {
    padding: 50px 0 0 50px;
  }

  .row.gtr-uniform {
    margin-top: -50px;
  }

  .row.gtr-uniform > * {
    padding-top: 50px;
  }

  .row.gtr-150 {
    margin-top: -75px;
    margin-left: -75px;
  }

  .row.gtr-150 > * {
    padding: 75px 0 0 75px;
  }

  .row.gtr-150.gtr-uniform {
    margin-top: -75px;
  }

  .row.gtr-150.gtr-uniform > * {
    padding-top: 75px;
  }

  .row.gtr-200 {
    margin-top: -100px;
    margin-left: -100px;
  }

  .row.gtr-200 > * {
    padding: 100px 0 0 100px;
  }

  .row.gtr-200.gtr-uniform {
    margin-top: -100px;
  }

  .row.gtr-200.gtr-uniform > * {
    padding-top: 100px;
  }
}

@media screen and (max-width: 1280px) {
  .row {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    align-items: stretch;
  }

  .row > * {
    box-sizing: border-box;
  }

  .row.gtr-uniform > * > :last-child {
    margin-bottom: 0;
  }

  .row.aln-left {
    justify-content: flex-start;
  }

  .row.aln-center {
    justify-content: center;
  }

  .row.aln-right {
    justify-content: flex-end;
  }

  .row.aln-top {
    align-items: flex-start;
  }

  .row.aln-middle {
    align-items: center;
  }

  .row.aln-bottom {
    align-items: flex-end;
  }

  .row > .imp-large {
    order: -1;
  }

  .row > .col-1-large {
    width: 8.33333%;
  }

  .row > .off-1-large {
    margin-left: 8.33333%;
  }

  .row > .col-2-large {
    width: 16.66667%;
  }

  .row > .off-2-large {
    margin-left: 16.66667%;
  }

  .row > .col-3-large {
    width: 25%;
  }

  .row > .off-3-large {
    margin-left: 25%;
  }

  .row > .col-4-large {
    width: 33.33333%;
  }

  .row > .off-4-large {
    margin-left: 33.33333%;
  }

  .row > .col-5-large {
    width: 41.66667%;
  }

  .row > .off-5-large {
    margin-left: 41.66667%;
  }

  .row > .col-6-large {
    width: 50%;
  }

  .row > .off-6-large {
    margin-left: 50%;
  }

  .row > .col-7-large {
    width: 58.33333%;
  }

  .row > .off-7-large {
    margin-left: 58.33333%;
  }

  .row > .col-8-large {
    width: 66.66667%;
  }

  .row > .off-8-large {
    margin-left: 66.66667%;
  }

  .row > .col-9-large {
    width: 75%;
  }

  .row > .off-9-large {
    margin-left: 75%;
  }

  .row > .col-10-large {
    width: 83.33333%;
  }

  .row > .off-10-large {
    margin-left: 83.33333%;
  }

  .row > .col-11-large {
    width: 91.66667%;
  }

  .row > .off-11-large {
    margin-left: 91.66667%;
  }

  .row > .col-12-large {
    width: 100%;
  }

  .row > .off-12-large {
    margin-left: 100%;
  }

  .row.gtr-0 {
    margin-top: 0px;
    margin-left: 0px;
  }

  .row.gtr-0 > * {
    padding: 0px 0 0 0px;
  }

  .row.gtr-0.gtr-uniform {
    margin-top: 0px;
  }

  .row.gtr-0.gtr-uniform > * {
    padding-top: 0px;
  }

  .row.gtr-25 {
    margin-top: -8.75px;
    margin-left: -8.75px;
  }

  .row.gtr-25 > * {
    padding: 8.75px 0 0 8.75px;
  }

  .row.gtr-25.gtr-uniform {
    margin-top: -8.75px;
  }

  .row.gtr-25.gtr-uniform > * {
    padding-top: 8.75px;
  }

  .row.gtr-50 {
    margin-top: -17.5px;
    margin-left: -17.5px;
  }

  .row.gtr-50 > * {
    padding: 17.5px 0 0 17.5px;
  }

  .row.gtr-50.gtr-uniform {
    margin-top: -17.5px;
  }

  .row.gtr-50.gtr-uniform > * {
    padding-top: 17.5px;
  }

  .row {
    margin-top: -35px;
    margin-left: -35px;
  }

  .row > * {
    padding: 35px 0 0 35px;
  }

  .row.gtr-uniform {
    margin-top: -35px;
  }

  .row.gtr-uniform > * {
    padding-top: 35px;
  }

  .row.gtr-150 {
    margin-top: -52.5px;
    margin-left: -52.5px;
  }

  .row.gtr-150 > * {
    padding: 52.5px 0 0 52.5px;
  }

  .row.gtr-150.gtr-uniform {
    margin-top: -52.5px;
  }

  .row.gtr-150.gtr-uniform > * {
    padding-top: 52.5px;
  }

  .row.gtr-200 {
    margin-top: -70px;
    margin-left: -70px;
  }

  .row.gtr-200 > * {
    padding: 70px 0 0 70px;
  }

  .row.gtr-200.gtr-uniform {
    margin-top: -70px;
  }

  .row.gtr-200.gtr-uniform > * {
    padding-top: 70px;
  }
}

@media screen and (max-width: 980px) {
  .row {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    align-items: stretch;
  }

  .row > * {
    box-sizing: border-box;
  }

  .row.gtr-uniform > * > :last-child {
    margin-bottom: 0;
  }

  .row.aln-left {
    justify-content: flex-start;
  }

  .row.aln-center {
    justify-content: center;
  }

  .row.aln-right {
    justify-content: flex-end;
  }

  .row.aln-top {
    align-items: flex-start;
  }

  .row.aln-middle {
    align-items: center;
  }

  .row.aln-bottom {
    align-items: flex-end;
  }

  .row > .imp-medium {
    order: -1;
  }

  .row > .col-1-medium {
    width: 8.33333%;
  }

  .row > .off-1-medium {
    margin-left: 8.33333%;
  }

  .row > .col-2-medium {
    width: 16.66667%;
  }

  .row > .off-2-medium {
    margin-left: 16.66667%;
  }

  .row > .col-3-medium {
    width: 25%;
  }

  .row > .off-3-medium {
    margin-left: 25%;
  }

  .row > .col-4-medium {
    width: 33.33333%;
  }

  .row > .off-4-medium {
    margin-left: 33.33333%;
  }

  .row > .col-5-medium {
    width: 41.66667%;
  }

  .row > .off-5-medium {
    margin-left: 41.66667%;
  }

  .row > .col-6-medium {
    width: 50%;
  }

  .row > .off-6-medium {
    margin-left: 50%;
  }

  .row > .col-7-medium {
    width: 58.33333%;
  }

  .row > .off-7-medium {
    margin-left: 58.33333%;
  }

  .row > .col-8-medium {
    width: 66.66667%;
  }

  .row > .off-8-medium {
    margin-left: 66.66667%;
  }

  .row > .col-9-medium {
    width: 75%;
  }

  .row > .off-9-medium {
    margin-left: 75%;
  }

  .row > .col-10-medium {
    width: 83.33333%;
  }

  .row > .off-10-medium {
    margin-left: 83.33333%;
  }

  .row > .col-11-medium {
    width: 91.66667%;
  }

  .row > .off-11-medium {
    margin-left: 91.66667%;
  }

  .row > .col-12-medium {
    width: 100%;
  }

  .row > .off-12-medium {
    margin-left: 100%;
  }

  .row.gtr-0 {
    margin-top: 0px;
    margin-left: 0px;
  }

  .row.gtr-0 > * {
    padding: 0px 0 0 0px;
  }

  .row.gtr-0.gtr-uniform {
    margin-top: 0px;
  }

  .row.gtr-0.gtr-uniform > * {
    padding-top: 0px;
  }

  .row.gtr-25 {
    margin-top: -12.5px;
    margin-left: -12.5px;
  }

  .row.gtr-25 > * {
    padding: 12.5px 0 0 12.5px;
  }

  .row.gtr-25.gtr-uniform {
    margin-top: -12.5px;
  }

  .row.gtr-25.gtr-uniform > * {
    padding-top: 12.5px;
  }

  .row.gtr-50 {
    margin-top: -25px;
    margin-left: -25px;
  }

  .row.gtr-50 > * {
    padding: 25px 0 0 25px;
  }

  .row.gtr-50.gtr-uniform {
    margin-top: -25px;
  }

  .row.gtr-50.gtr-uniform > * {
    padding-top: 25px;
  }

  .row {
    margin-top: -50px;
    margin-left: -50px;
  }

  .row > * {
    padding: 50px 0 0 50px;
  }

  .row.gtr-uniform {
    margin-top: -50px;
  }

  .row.gtr-uniform > * {
    padding-top: 50px;
  }

  .row.gtr-150 {
    margin-top: -75px;
    margin-left: -75px;
  }

  .row.gtr-150 > * {
    padding: 75px 0 0 75px;
  }

  .row.gtr-150.gtr-uniform {
    margin-top: -75px;
  }

  .row.gtr-150.gtr-uniform > * {
    padding-top: 75px;
  }

  .row.gtr-200 {
    margin-top: -100px;
    margin-left: -100px;
  }

  .row.gtr-200 > * {
    padding: 100px 0 0 100px;
  }

  .row.gtr-200.gtr-uniform {
    margin-top: -100px;
  }

  .row.gtr-200.gtr-uniform > * {
    padding-top: 100px;
  }
}

@media screen and (max-width: 736px) {
  .row {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    align-items: stretch;
  }

  .row > * {
    box-sizing: border-box;
  }

  .row.gtr-uniform > * > :last-child {
    margin-bottom: 0;
  }

  .row.aln-left {
    justify-content: flex-start;
  }

  .row.aln-center {
    justify-content: center;
  }

  .row.aln-right {
    justify-content: flex-end;
  }

  .row.aln-top {
    align-items: flex-start;
  }

  .row.aln-middle {
    align-items: center;
  }

  .row.aln-bottom {
    align-items: flex-end;
  }

  .row > .imp-small {
    order: -1;
  }

  .row > .col-1-small {
    width: 8.33333%;
  }

  .row > .off-1-small {
    margin-left: 8.33333%;
  }

  .row > .col-2-small {
    width: 16.66667%;
  }

  .row > .off-2-small {
    margin-left: 16.66667%;
  }

  .row > .col-3-small {
    width: 25%;
  }

  .row > .off-3-small {
    margin-left: 25%;
  }

  .row > .col-4-small {
    width: 33.33333%;
  }

  .row > .off-4-small {
    margin-left: 33.33333%;
  }

  .row > .col-5-small {
    width: 41.66667%;
  }

  .row > .off-5-small {
    margin-left: 41.66667%;
  }

  .row > .col-6-small {
    width: 50%;
  }

  .row > .off-6-small {
    margin-left: 50%;
  }

  .row > .col-7-small {
    width: 58.33333%;
  }

  .row > .off-7-small {
    margin-left: 58.33333%;
  }

  .row > .col-8-small {
    width: 66.66667%;
  }

  .row > .off-8-small {
    margin-left: 66.66667%;
  }

  .row > .col-9-small {
    width: 75%;
  }

  .row > .off-9-small {
    margin-left: 75%;
  }

  .row > .col-10-small {
    width: 83.33333%;
  }

  .row > .off-10-small {
    margin-left: 83.33333%;
  }

  .row > .col-11-small {
    width: 91.66667%;
  }

  .row > .off-11-small {
    margin-left: 91.66667%;
  }

  .row > .col-12-small {
    width: 100%;
  }

  .row > .off-12-small {
    margin-left: 100%;
  }

  .row.gtr-0 {
    margin-top: 0px;
    margin-left: 0px;
  }

  .row.gtr-0 > * {
    padding: 0px 0 0 0px;
  }

  .row.gtr-0.gtr-uniform {
    margin-top: 0px;
  }

  .row.gtr-0.gtr-uniform > * {
    padding-top: 0px;
  }

  .row.gtr-25 {
    margin-top: -5px;
    margin-left: -5px;
  }

  .row.gtr-25 > * {
    padding: 5px 0 0 5px;
  }

  .row.gtr-25.gtr-uniform {
    margin-top: -5px;
  }

  .row.gtr-25.gtr-uniform > * {
    padding-top: 5px;
  }

  .row.gtr-50 {
    margin-top: -10px;
    margin-left: -10px;
  }

  .row.gtr-50 > * {
    padding: 10px 0 0 10px;
  }

  .row.gtr-50.gtr-uniform {
    margin-top: -10px;
  }

  .row.gtr-50.gtr-uniform > * {
    padding-top: 10px;
  }

  .row {
    margin-top: -20px;
    margin-left: -20px;
  }

  .row > * {
    padding: 20px 0 0 20px;
  }

  .row.gtr-uniform {
    margin-top: -20px;
  }

  .row.gtr-uniform > * {
    padding-top: 20px;
  }

  .row.gtr-150 {
    margin-top: -30px;
    margin-left: -30px;
  }

  .row.gtr-150 > * {
    padding: 30px 0 0 30px;
  }

  .row.gtr-150.gtr-uniform {
    margin-top: -30px;
  }

  .row.gtr-150.gtr-uniform > * {
    padding-top: 30px;
  }

  .row.gtr-200 {
    margin-top: -40px;
    margin-left: -40px;
  }

  .row.gtr-200 > * {
    padding: 40px 0 0 40px;
  }

  .row.gtr-200.gtr-uniform {
    margin-top: -40px;
  }

  .row.gtr-200.gtr-uniform > * {
    padding-top: 40px;
  }
}

/* Reusable */

article.blog-post {
  position: relative;
}

article.blog-post .comments {
  position: absolute;
  top: 0;
  right: 0;
  height: 32px;
  line-height: 24px;
  padding-left: 40px;
  background: url('images/icon-bubble.png') no-repeat;
}

article.blog-post .blog-post-image {
  width: 100%;
}

ul.small-image-list li {
  overflow: hidden;
  margin-bottom: 1.5em;
}

ul.small-image-list li img {
  width: 78px;
}

ul.big-image-list li {
  overflow: hidden;
  margin-bottom: 2em;
}

ul.big-image-list li img {
  width: 178px;
}

ul.link-list li {
  border-top: solid 1px #ced0b7;
  padding: 0.75em 0 0 0;
  margin: 0.75em 0 0 0;
}

ul.link-list li:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}

.button {
  background-image: -moz-linear-gradient(top, #008dad, #007b9d);
  background-image: -webkit-linear-gradient(top, #008dad, #007b9d);
  background-image: -ms-linear-gradient(top, #008dad, #007b9d);
  background-image: linear-gradient(top, #008dad, #007b9d);
  display: inline-block;
  padding: 15px 25px 15px 25px;
  background-color: #007b9d;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  font-size: 1.2em;
  letter-spacing: -1px;
  border: solid 1px #006e8b;
  box-shadow: inset 0px 0px 0px 1px #18a8c8;
}

.button:hover {
  background-image: -moz-linear-gradient(top, #1b9fbe, #118eb1);
  background-image: -webkit-linear-gradient(top, #1b9fbe, #118eb1);
  background-image: -ms-linear-gradient(top, #1b9fbe, #118eb1);
  background-image: linear-gradient(top, #1b9fbe, #118eb1);
  background-color: #118eb1;
  box-shadow: inset 0px 0px 0px 1px #3ecceb;
}

/* Header */

#header-wrapper {
  background-image: -moz-linear-gradient(top, #008dab, #007294);
  background-image: -webkit-linear-gradient(top, #008dab, #007294);
  background-image: -ms-linear-gradient(top, #008dab, #007294);
  background-image: linear-gradient(top, #008dab, #007294);
  background-color: #007294;
}

#header {
  background-image: -moz-linear-gradient(top, #008ead, #007b9d);
  background-image: -webkit-linear-gradient(top, #008ead, #007b9d);
  background-image: -ms-linear-gradient(top, #008ead, #007b9d);
  background-image: linear-gradient(top, #008ead, #007b9d);
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  -ms-box-sizing: content-box;
  box-sizing: content-box;
  position: relative;
  margin: 2.5% 0 2.5% 0;
  padding: 0 40px 0 40px;
  border-radius: 10px;
  border: solid 1px #006e8b;
  box-shadow: inset 0px 0px 0px 1px #12a0bf, 0px 1px 4px 0px rgba(0, 0, 0, 0.1);
  background-color: #007b9d;
  height: 86px;
}

#header h1 {
  position: absolute;
  left: 40px;
  top: 0;
  color: #fff;
  font-size: 2.4em;
  letter-spacing: -2px;
  line-height: 86px;
}

#header h1 a {
  color: #fff;
  text-decoration: none;
}

#header nav {
  position: absolute;
  right: 40px;
  top: 1px;
  line-height: 84px;
  font-size: 1.3em;
  letter-spacing: -1px;
}

#header nav a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  padding: 0 25px 0 25px;
  outline: 0;
}

#header nav a.current-page-item {
  background-image: -moz-linear-gradient(top, #007b99, #007897);
  background-image: -webkit-linear-gradient(top, #007b99, #007897);
  background-image: -ms-linear-gradient(top, #007b99, #007897);
  background-image: linear-gradient(top, #007b99, #007897);
  background-color: #007897;
  box-shadow: inset 0px 1px 5px 1px rgba(0, 0, 0, 0.1), 0px 0px 5px 1px rgba(255, 255, 255, 0.1);
}

#header nav a:hover {
  background-image: -moz-linear-gradient(top, #0782a0, #077d9b);
  background-image: -webkit-linear-gradient(top, #0782a0, #077d9b);
  background-image: -ms-linear-gradient(top, #0782a0, #077d9b);
  background-image: linear-gradient(top, #0782a0, #077d9b);
  background-color: #0882a1;
  box-shadow: inset 0px 1px 5px 1px rgba(0, 0, 0, 0.05), 0px 0px 5px 1px rgba(255, 255, 255, 0.05);
}

/* Banner */

#banner-wrapper {
  background: #c8d2bc url(images/bg1.png);
  background-image: url(/images/opening_office.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  height: calc(100vh - 100px); /* 100px ~ header height */
  display: flex;
  justify-content: center;
  align-items: center;
}

#banner {
  position: relative;
  width: 100%;
  padding: 6em 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8); /* White background with 80% opacity */
  text-align: center;
  box-shadow: none; /* Removed to eliminate grey frame */
}

#banner h2 {
  font-size: 3.3em;
  color: #008dab; /* Changed from #fff to match header bar color */
  text-align: center;
  letter-spacing: -2px;
  margin: 0;
}

#banner span {
  display: block;
  left: 0;
  margin: 0.5em 0 0 0;
  font-size: 1.6em;
  color: #008dab; /* Changed from #fff to match header bar color */
  letter-spacing: -1px;
  opacity: 0.8;
}

/* Main */

#main {
  background: #fff;
  padding: 4em 0;
}

/* Footer */

#footer-wrapper {
  padding: 4em 0;
  background: linear-gradient(to bottom, #e3e9dc, #d8e0cc); /* Subtle gradient for footer */
}

/* Copyright */

#copyright {
  text-align: center;
  color: #a6a88f;
  border-top: solid 1px #ced0b7;
  padding: 3em 0 0 0;
  margin: 3em 0 0 0;
}

#copyright a {
  color: #a6a88f;
}

/* Large */

@media screen and (max-width: 1280px) {
  /* Reusable */
  ul.small-image-list img {
    width: 50px;
  }

  ul.big-image-list img {
    width: 75px;
  }

  /* Header */
  #header {
    height: 76px;
  }

  #header h1 {
    font-size: 2em;
    line-height: 76px;
  }

  #header nav {
    line-height: 74px;
    font-size: 1.1em;
  }

  #header nav a {
    padding: 0 20px 0 20px;
  }

  /* Banner */
  #banner {
    width: 100%;
    padding: 5em 0;
  }

  #banner h2 {
    font-size: 3em;
    color: #008dab; /* Changed from #fff to match header bar color */
  }

  #banner span {
    font-size: 1.4em;
    color: #008dab; /* Changed from #fff to match header bar color */
  }

  /* Footer */
  #footer-wrapper {
    padding: 4em 0;
  }

  /* Copyright */
  #copyright {
    padding: 3em 0 0 0;
    margin: 4em 0 0 0;
  }
}

/* Small */

#navPanel,
#titleBar {
  display: none;
}

@media screen and (max-width: 980px) {
  /* Basic */
  html,
  body {
    overflow-x: hidden;
  }

  /* Page Wrapper */
  #page-wrapper {
    padding-top: 44px;
  }

  /* Header */
  #header-wrapper {
    background-image: -moz-linear-gradient(top, #008dab, #007294);
    background-image: -webkit-linear-gradient(top, #008dab, #007294);
    background-image: -ms-linear-gradient(top, #008dab, #007294);
    background-image: linear-gradient(top, #008dab, #007294);
    background-color: #007294;
  }

  #header {
    display: none;
  }

  #banner {
    padding: 6em 0;
  }

  #banner h2 {
    font-size: 2.5em;
    color: #008dab; /* Changed from #fff to match header bar color */
  }

  /* Nav */
  #page-wrapper {
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-transition: -moz-transform 0.5s ease;
    -webkit-transition: -webkit-transform 0.5s ease;
    -ms-transition: -ms-transform 0.5s ease;
    transition: transform 0.5s ease;
    padding-bottom: 1px;
  }

  #titleBar {
    background-image: -moz-linear-gradient(top, #008dab, #007294);
    background-image: -webkit-linear-gradient(top, #008dab, #007294);
    background-image: -ms-linear-gradient(top, #008dab, #007294);
    background-image: linear-gradient(top, #008dab, #007294);
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-transition: -moz-transform 0.5s ease;
    -webkit-transition: -webkit-transform 0.5s ease;
    -ms-transition: -ms-transform 0.5s ease;
    transition: transform 0.5s ease;
    display: block;
    height: 44px;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10001;
    text-align: center;
    color: #fff;
    font-size: 1.25em;
    background-color: #007294;
  }

  #titleBar .title {
    line-height: 44px;
  }

  #titleBar .toggle {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 60px;
  }

  #titleBar .toggle:after {
    content: '';
    position: absolute;
    left: 4px;
    top: 4px;
    color: #fff;
    text-align: center;
    line-height: 31px;
    font-size: 0.8em;
    width: 50px;
    height: 35px;
    border-radius: 5px;
    box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.25), inset 0px 1px 2px 0px rgba(0, 0, 0, 0.5),
      inset 0px 6px 13px 0px rgba(255, 255, 255, 0.2), 0px 2px 2px 0px rgba(255, 255, 255, 0.1);
  }

  #titleBar .toggle:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 30px;
    background: url('images/mobileUI-site-nav-opener-bg.svg');
    top: 16px;
    left: 19px;
  }

  #titleBar .toggle:active:after {
    background: rgba(0, 0, 0, 0.2);
  }

  #navPanel {
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-transform: translateX(-275px);
    -webkit-transform: translateX(-275px);
    -ms-transform: translateX(-275px);
    transform: translateX(-275px);
    -moz-transition: -moz-transform 0.5s ease;
    -webkit-transition: -webkit-transform 0.5s ease;
    -ms-transition: -ms-transform 0.5s ease;
    transition: transform 0.5s ease;
    display: block;
    height: 100%;
    left: 0;
    overflow-y: auto;
    position: fixed;
    top: 0;
    width: 275px;
    z-index: 10002;
    background: #00536f;
    color: #fff;
    box-shadow: inset -10px 0px 40px 0px rgba(0, 0, 0, 0.5);
  }

  #navPanel .link {
    display: block;
    color: #fff;
    border-top: solid 1px rgba(255, 255, 255, 0.1);
    border-bottom: solid 1px rgba(0, 0, 0, 0.2);
    height: 55px;
    line-height: 55px;
    padding: 0 15px 0 15px;
    text-decoration: none;
  }

  #navPanel .link:first-child {
    border-top: 0;
  }

  #navPanel .link:last-child {
    border-bottom: 0;
  }

  body.navPanel-visible #page-wrapper {
    -moz-transform: translateX(275px);
    -webkit-transform: translateX(275px);
    -ms-transform: translateX(275px);
    transform: translateX(275px);
  }

  body.navPanel-visible #titleBar {
    -moz-transform: translateX(275px);
    -webkit-transform: translateX(275px);
    -ms-transform: translateX(275px);
    transform: translateX(275px);
  }

  body.navPanel-visible #navPanel {
    -moz-transform: translateX(0);
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

/* Small */

@media screen and (max-width: 736px) {
  /* Basic */
  body {
    font-size: 13pt;
  }

  h2 {
    font-size: 1.4em;
  }

  h3 {
    font-size: 1.2em;
  }

  h4 {
    font-size: 1em;
  }

  /* Reusable */
  ul.small-image-list li img {
    width: 100px;
  }

  ul.big-image-list li img {
    width: 100px;
  }

  ul.link-list {
    margin: 0 0 1em 0;
  }

  article.blog-post .comments {
    display: block;
    position: relative;
    top: -0.5em;
    margin: 0 0 0.5em 0;
  }

  .button {
    font-size: 1em;
  }

  .blog-post-image {
    width: 100%;
  }

  /* Banner */
  #banner-wrapper {
    padding: 20px 0;
  }

  #banner {
    box-shadow: none;
    padding: 4em 1em;
    background: rgba(255, 255, 255, 0.8); /* White background with 50% opacity */
  }

  #banner h2 {
    font-size: 2em;
    letter-spacing: -2px;
    line-height: 1.25em;
    color: #008dab; /* Changed from #fff to match header bar color */
  }

  #banner span {
    font-size: 1.25em;
    letter-spacing: -1px;
    line-height: 1.25em;
    color: #008dab; /* Changed from #fff to match header bar color */
  }

  /* Main */
  #main {
    padding: 40px 0;
  }

  /* Footer */
  #footer-wrapper {
    padding: 40px 0;
  }

  /* Navigation */
  #nav a {
    color: #878e83;
    text-decoration: none;
    font-weight: normal;
    border: 0;
    display: inline-block;
    padding: 1.65em 1.5em 1.35em 1.5em;
    font-size: 1.3em;
    outline: 0;
  }

  /* Copyright */
  #copyright {
    text-align: center;
    color: #a6a88f;
    padding: 30px 0 0 0;
    font-size: 0.8em;
    line-height: 1.5em;
  }

  #copyright a {
    color: #a6a88f;
  }
}

/* Card Styles */
.card-container {
  display: flex;
  flex-wrap: nowrap; /* Ensure cards stay in one row */
  gap: 20px;
  justify-content: center; /* Center the cards */
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px; /* Reduced padding for smaller cards */
  width: 200px; /* Reduced width */
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
  opacity: 0;
  animation: fadeIn 1s ease-in-out forwards;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em; /* Slightly reduced font size */
  line-height: 1.5;
}

.card:nth-child(1) {
  animation-delay: 0.2s;
}
.card:nth-child(2) {
  animation-delay: 0.4s;
}
.card:nth-child(3) {
  animation-delay: 0.6s;
}
.card:nth-child(4) {
  animation-delay: 0.8s;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  color: #006d99;
  font-size: 1.4em; /* Reduced header size */
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: none; /* Override global text-transform */
}

.card p {
  color: #444;
  font-size: 0.9em; /* Reduced text size */
  line-height: 1.5;
}

.card a {
  color: #006d99;
  text-decoration: none;
  font-weight: 500;
}

.card a:hover {
  text-decoration: underline;
}

.difference-card {
  background: linear-gradient(135deg, #f0f8ff, #e6f3fa);
  border: 2px solid #006d99;
  padding: 15px; /* Reduced padding */
  width: 200px; /* Reduced width */
  text-align: left;
  position: relative;
  overflow: hidden;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em; /* Slightly reduced font size */
}

.difference-card h3 {
  color: #006d99;
  font-size: 1.4em; /* Reduced header size */
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: none; /* Override global text-transform */
}

.difference-item {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  font-size: 0.9em; /* Reduced text size */
  color: #00334d;
  cursor: pointer;
}

.difference-item:before {
  content: '★';
  position: absolute;
  left: 0;
  color: #006d99;
  font-size: 1.1em;
  transition: transform 0.3s;
}

.difference-card .time-stamp {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: #555;
  font-size: 0.8em; /* Reduced font size */
  font-style: italic;
}

.tooltip {
  position: absolute;
  background: #fff;
  border: 1px solid #006d99;
  padding: 12px;
  border-radius: 6px;
  color: #00334d;
  font-size: 0.9em;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 1;
  white-space: nowrap;
  font-family: Arial, Helvetica, sans-serif;
}

.difference-item:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

.highlighted:before {
  color: #cc3300;
  transform: scale(1.2);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotateHighlight {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.difference-card:hover .difference-item:before {
  animation: rotateHighlight 2s infinite linear;
}

/* Video Section */
.video-section {
  width: 100%;
  margin: 20px auto;
  text-align: center;
}

.video-section iframe {
  width: 100%;
  min-height: 500px;
  border: 2px solid #006d99;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Map Section */
.map-container {
  background: #fff;
  padding: 20px 0;
  margin-bottom: 0; /* Remove margin to join with footer */
  border-bottom: 2px solid #006d99; /* Visual connection to footer */
}

.map-section {
  margin: 20px 0;
  text-align: center;
}

.map-section iframe {
  width: 100%;
  height: 400px;
  border: 2px solid #006d99;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Contact Info */
.contact-info {
  text-align: center;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.contact-info h3 {
  color: #006d99;
  font-size: 1.5em;
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: none;
}

.contact-info .decorative-line {
  width: 100px;
  height: 3px;
  background: linear-gradient(to right, #006d99, #00a1d6);
  margin: 0 auto 15px;
  border-radius: 2px;
}

.contact-info .contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0;
  font-size: 1em;
  color: #283121;
}

.contact-info .contact-item i {
  font-size: 1.2em;
  margin-right: 10px;
  color: #006d99;
  transition: color 0.3s;
}

.contact-info .contact-item.location i {
  color: #d9534f; /* Red for location pin */
}

.contact-info .contact-item.phone i {
  color: #28a745; /* Green for phone */
}

.contact-info .contact-item a {
  color: #006d99;
  text-decoration: none;
}

.contact-info .contact-item a:hover {
  text-decoration: underline;
  color: #004d73;
}

.contact-info .contact-item:hover i {
  color: #00a1d6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .card-container {
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    justify-content: center;
  }

  .card,
  .difference-card {
    width: 100%; /* Full width on small screens */
    max-width: 300px; /* Limit max width */
    margin-bottom: 20px;
  }

  .map-container {
    padding: 10px 0;
  }

  .map-section {
    margin: 10px 0;
  }

  .map-section iframe {
    height: 300px; /* Smaller height for mobile */
  }

  .contact-info {
    padding: 15px;
  }

  .contact-info h3 {
    font-size: 1.3em;
  }

  .contact-info .contact-item {
    font-size: 0.9em;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-info .contact-item i {
    margin-right: 0;
    margin-bottom: 5px;
  }
  .diagnostics-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
  }
  .diagnostics-section .section-title {
    font-size: 2em;
    margin-bottom: 10px;
  }
  .diagnostics-line {
    width: 60px;
    height: 4px;
    background-color: #007bff;
    margin: 0 auto 40px;
    transition: width 0.6s ease-in-out;
  }
  .diagnostics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  .diagnostics-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
  }
  .diagnostics-card:hover {
    transform: scale(1.03);
  }
  .diagnostics-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
  }
  .diagnostics-card h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #333;
  }
  .diagnostics-card p {
    font-size: 0.95em;
    color: #555;
  }
}
