:root {
  /* --brand-blue: #01619d; */
  --brand-blue: #005692;
  --brand-blue-light: #3986c5;
  --brand-blue-bright: #54DFFF;
  /* --brand-gold: #f0be24; */
  --brand-gold: #EDB621;
  --brand-gold-dark: #D27400;
  --brand-gold-medium: #e4a121;
  --brand-navy: #001D63;
  --brand-navy-dark: #020d28;
  
  /* --brand-gold-dark: rgb(228, 159, 20); */
  --nav-height: 84px;

  --marquee-speed: 15s;
  --img-width: 255px;
  --img-height: 190px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 300;
  /* background-color: #d9ddeb; */
  background: #060d3d;
  /* background: radial-gradient(circle, rgba(6, 13, 61, 0.77) 0%, rgba(242, 198, 36, 0.51) 50%, rgba(3, 9, 56, 0.9) 100%); */
  color: #0f2f4a;
  scroll-behavior: initial !important;
  
}
/* body.splash-active {
  overflow: hidden;
}

body.splash-complete {
  overflow-x: hidden;
  overflow-y: auto;
} */

video {
  /* background-color: #000 !important; */
  border: 0px solid transparent;
  width: 100%;
  height: 100%;
}

/* .page {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
} */
.page .container {
  padding-top: 6rem;
  padding-bottom: 1rem;
  position: relative;
  width: 100%;
}

.bg-gradient-wrapper {
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  max-width: 60vw;
  z-index: -1;
}
.bg-gradient-wrapper.bottom {
  bottom: -110%;
}
.bg-gradient-wrapper.top {
  top: -10%;
}

.bg-shape {
  width: 500px;
  height: 500px;
  border-radius: 50%;
}
.bg-blur {
  filter: blur(150px);
}
.bg-blue {
  background-color: var(--brand-blue);
}
.bg-navy {
  background-color: var(--brand-navy);
}
.bg-blue-light {
  background-color: var(--brand-blue-light);
}
.bg-blue-bright {
  background-color: var(--brand-blue-bright);
}
.bg-gold {
  background-color: var(--brand-gold);
}
.bg-gold-dark {
  background-color: var(--brand-gold-dark);
}
.bg-gold-medium {
  background-color: var(--brand-gold-medium);
}


#main-nav {
  z-index: 40;
  /* background: rgba(255, 255, 255, 0.96); */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  /* backdrop-filter: blur(6px); */
  /* From https://css.glass */
background: rgba(255, 255, 255, 0.75);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border: 1px solid rgba(237, 233, 185, 0.55);
  transition: transform 0.3s ease;
}

#main-nav .brand-pill {
  font-size: 1.05rem;
}

#main-nav .logo-item {
  width: 180px;
  position: relative;
}
#main-nav .logo-item img {
  width: auto;
  max-width: 100%;
  position: absolute;
  margin: auto;
  top: -20px;
}

#main-nav .nav-link {
  /* color: #0d2f56; */
  font-weight: 400;
  font-size: 20px;
  color: var(--brand-blue);
}

#main-nav .nav-link:hover {
  color: var(--brand-navy);
}

/** Site loader and Intro Video Wrapper* **/
#site-loader,
#splash-wrapper {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

#site-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #010419;
}
#site-loader .bg-gradient-wrapper {
  /* animation: expand 4s linear infinite alternate-reverse; */
  max-width: 50vw;
  transform: scale(1.1);
}
.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.spinner {
  width: 56px;
  height: 56px;
  border: 4px solid rgba(255, 255, 255, 0.25);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes expand {
  0% {
    transform: scale(0.95);  
  }
  100% {
    transform: scale(1.5);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loader-text {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spinner-svg {
  animation: spin 1s linear infinite;
}

#splash-wrapper {
  z-index: 9998;
  pointer-events: none;
  /* background: rgba(255, 255, 255, 0.92); */
  overflow: hidden;
  opacity: 1;
  visibility: visible;
}
/* .splash-video {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0);
} */

.splash-video {
  position: absolute;
  inset: 0;
  opacity: 1;
}
/* .splash-video#splash-2 {
  opacity: 0;
} */

.splash-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.splash-complete .splash {
  display: none;
}

/** Font weight **/
.fw-l {
  font-weight: 300;
}
.fw-n {
  font-weight: 400;
}
.fw-sb {
  font-weight: 500;
}
.fw-b {
  font-weight: 600;
}
.fw-eb {
  font-weight: 800;
}

/** Btn styles **/
.btn-theme-link {
  padding: 0 5px;
  background-color: transparent;
  color: var(--brand-blue);
  text-decoration: none;
  cursor: pointer;
}
.btn-theme-link:hover,
.btn-theme-link:active {
  color: var(--brand-blue-light);
}

.btn-theme.btn-theme-outline {
  color: var(--brand-blue);
  background-color: transparent;
  border: 1px solid var(--brand-blue);
  font-size: 16px;
  padding: 0.85rem 1rem;
}
.btn-theme.btn-theme-outline:hover {
  background-color: var(--brand-blue);
  color: #fff;
  border: 1px solid var(--brand-blue);
}

/* Section list **/
.list-unstyled.section-list {
  padding-left: 1.3rem;
  border-left: 2px solid var(--brand-blue);
  line-height: 1.5;
}
.list-unstyled.section-list li {
  color: var(--brand-blue);
  font-size: 1.5rem;
  font-weight: 400;
}
.list-unstyled.section-list.list-light{
  border-left: 2px solid var(--brand-blue-light);
}
.list-unstyled.section-list.list-light li {
  color: #fff;
}
.list-unstyled.section-list li a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
  position: relative;
}
.list-unstyled.section-list li a::after {
  position: absolute;
  content: '';
  display: inline-block;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: bottom right;
  background-color: var(--brand-blue);
  bottom: -3px;
  left: 0;
  transition: transform 0.35s ease-in-out;
}
.list-unstyled.section-list.list-light li a::after {
  background-color: #fff;
}
.list-unstyled.section-list li a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.list-unstyled.section-list li a.text-decoration-none::after {
  display: none;
}

.list-unstyled.section-list li:not(:last-child) {
  margin-bottom: 1rem;
}
.list-unstyled.section-list.list-zigzag {
  padding-left: 0;
  border-left: 0;
}
.list-unstyled.section-list.list-zigzag li a::after {
  position: absolute;
  content: '';
  display: inline-block;
  width: 100%;
  height: 2px;
  transform: scaleX(1);
  transform-origin: bottom left;
  background-color: var(--brand-blue);
  bottom: -3px;
  left: 0;
  transition: transform 0.35s ease-in-out;
}
.list-unstyled.section-list.list-zigzag.list-light li a::after {
  background-color: #fff;
}
.list-unstyled.section-list.list-zigzag li a:hover::after {
  transform: scaleX(0);
  transform-origin: bottom right;
}
.list-unstyled.section-list.list-zigzag li:nth-child(even) {
  margin-left: 6rem;
}

/** Section heading **/
.section-heading {
  position: relative;
  padding-left: 15px;
}
.section-heading h1 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 0.9;
  color: var(--brand-blue);
}
.section-heading .small {
  font-size: 2.4rem;
  font-weight: 400;
}
.section-heading .line2 {
  padding-left: 3.5rem;
  letter-spacing: 1px;
}

.section-heading.heading-light h1 {
  color: #fff;
}
.section-heading .heading-border {
  position: absolute;
  top: 15px;
  left: 0px;
  max-width: 260px;
}
.section-heading .heading-icon {
  position: absolute;
  left: -30px;
  bottom: -30px;
  z-index: 1;
}

/** section text **/
.text-content {
  position: relative;
  z-index: 1;
}
.text {
  padding-top: 3rem;
  margin-bottom: 2.5rem;
}
.text p {
  font-size: 1.35rem;
  line-height: 1.5;
}
.page .section-line {
  position: absolute;
  bottom: -10px;
  left: -20px;
  z-index: 0;
  max-width: 60%;
}

.wrapper {
  height: 100vh;
}
.page-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    position: relative;
    padding: 0.2rem;
}
.page {
  width: 100vw;
  height: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0%;
  overflow: hidden;
  /* box-shadow: 0 8px 24px rgba(149, 157, 165, 0.2); */
}


.media-container video {
  /* background: #005692; */
  background: var(--brand-blue);
  /* position: relative; */
}

.media-container video {
  display: block;
  width: 100%;
}

/* .media-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--brand-blue);
  mix-blend-mode: multiply;
  pointer-events: none;
} */
.theme-gold .media-container video{
  background: var(--brand-gold);
}

/* .theme-gold .media-container::after {
  background: var(--brand-gold);
} */



/** Card thumbnail **/
.card-thumbnail {
  border: 0px solid transparent;
  border-radius: 0;
  transition: 0.25s ease-in-out;
  background: var(--brand-gold);
  cursor: default;
}
.card-thumbnail img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: 0.25s ease-in-out;
}
/* .card-thumbnail:hover {
  border-width: 8px;
  border-color: var(--brand-gold); 
  padding: 5px;
} */
.card-thumbnail:hover img {
  transform: scale(0.95);
}

/** Job Card **/
.card-job {
  background-color: var(--brand-gold-medium);
  color: #fff;
  padding: 1.2rem 1.6rem;
}
.card-job .job-title {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}
.card-job .job-desc {
  font-size: 1rem;
}

/** card-theme card-theme-testimonial **/
.testimonial-slider {
  position: relative;
  min-height: 260px;
}

.card-testimonial {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.card-testimonial.active {
  opacity: 1;
  pointer-events: auto;
}
.card-testimonial {
  background-color: transparent;
  border: 0px solid transparent;
}
.card-testimonial .card-body {
  padding-left: 2rem;
  position: relative;
  color: #fff;
}
.card-testimonial .card-body::before,
.card-testimonial .card-body::after {
  content: '';
  position: absolute;
  display: block;
  color: #fff;
  background-color: #fff;
}
.card-testimonial .card-body::before {
  left: 10px;
  top: 45px;
  height: calc(100% - 45px);
  width: 1px;
}
.card-testimonial .card-body::after {
  right: 45px;
  bottom: 0px;
  width: calc(100% - 55px);
  height: 1px;
}
.card-testimonial .card-body .desc {
  font-size: 1.45rem;
  font-weight: 300;
  margin-bottom: 0;
}
.card-testimonial .card-body .quote {
  position: absolute;
  display: inline-block;
  width: 40px;
  z-index: 1;
}
.card-testimonial .card-body .quote img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.card-testimonial .card-body .quote.quote-l {
  top: 0;
  left: -10px;
}
.card-testimonial .card-footer {
  color: #fff;
  padding-top: 1rem;
  padding-left: 2rem;
  padding-right: 45px;
}
.card-testimonial .card-body .quote.quote-r {
  right: 0;
  bottom: 0;
}
.card-testimonial .card-footer h5 {
  font-size: 1.2rem;
  line-height: 1.1;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.card-testimonial .card-footer .subtitle {
  font-size: 1rem;
  font-weight: 300;
}

.list-ratings {
  display: flex;
  align-items: center;
}
.list-ratings li {
  width: 20px;
  color: var(--brand-blue-light);
}
.list-ratings li:not(:last-child) { margin-right: 2px;}
.list-ratings li.active {
  color: var(--brand-blue-bright);
}
.list-ratings li svg {
  width: 100%;
}


.theme-modal .modal-body::-webkit-scrollbar {
  display: none;
}

.theme-modal.theme-modal-dark .modal-content {
  background-color: var(--brand-navy-dark);
}
.theme-modal.theme-modal-dark .modal-title {
  color: var(--brand-gold);
  font-size: 1.35rem;
  font-weight: 400;
}
.theme-button-group {
  position: fixed;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 5vh;
  background-color: rgba(4, 31, 74, 0.56);
  z-index: 1;
}
.theme-button-group button {
  background: transparent;
  border: 0;
  box-shadow: none;
  outline: none;
  cursor: pointer;
  font-size: 1.35rem;
  letter-spacing: 0.04rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 1px 3px 6px rgba(0,0,0,0.7);
  transition: 0.25s ease-in-out;
}
.theme-button-group button:hover,
.theme-button-group button.is-checked {
  color: var(--brand-gold);
}

.theme-gallery-modal.theme-modal.theme-modal-dark .modal-content {
  position: relative;
}

.theme-gallery-modal.theme-modal.theme-modal-dark .modal-header { 
  z-index: 1;
  background: transparent;
  position: absolute;
  width: 100%;
}
.theme-gallery-modal.theme-modal.theme-modal-dark .modal-title {
  background: rgba(55, 55, 55, 0.65);
  padding: 0.1rem 1rem;
  border-radius: 1.5rem;
}
.theme-gallery-modal.theme-modal.theme-modal-dark .modal-header .btn-close {
  background-color: rgba(255,255,255,1);

}

.theme-gallery-modal.theme-modal.theme-modal-dark .modal-content::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background-color: rgba(4, 32, 50, 0.32);
  z-index: 1;
}

#page-3 .section-heading .heading-icon {
  bottom: -30px;
  left: -10px;
  max-width: 80px;
}
#page-3 .section-heading .heading-border {
  top: 15px;
  max-width: 370px;
}

#page-4 .section-heading .line2 {
  padding-left: 2.25rem;
}

#page-4 .section-heading:not(.section-heading.section-heading2) .heading-icon {
  left: -15px;
  bottom: -50px;
  max-width: 60px;
}

#page-4 .section-heading.section-heading2 .heading-border {
  top: 15px;
  max-width: 370px;
}

#page-5 .text-content {
  padding-top: 3rem;
}
#page-5 .section-heading .heading-icon {
  bottom: -20px;
  max-width: 100px;
}
#page-5 .section-heading .line2 { padding-left: 4rem;}

#page-6 .text-content {
  padding-top: 5rem;
}
#page-6 .section-heading h1 {
  line-height: 0.6;
}
#page-6 .section-heading .heading-border {
  top: -20px;
  max-width: 360px;
}
#page-6 .section-heading .line2 { padding-left: 5.5rem;}
#page-6 .section-heading .heading-icon {
  max-width: 74px;
  bottom: -60px;
  left: -10px;
}
#page-6.page .section-line {
  left: 25%;
  max-width: 45%;
  bottom: 1%;
}

#page-7 .text-content {
  padding-top: 5rem;
}
#page-7 .section-heading .heading-border {
  top: -15px;
  max-width: 400px;
}
#page-7 .section-heading .line2 { padding-left: 5.5rem; }
#page-7 .section-heading .heading-icon {
  left: 0px;
  bottom: -20px;
  max-width: 70px;
}

#page-8 .section-heading h1 {
  line-height: 0.6;
}
#page-8 .section-heading .line2 {
  padding-left: 5.6rem;
}
#page-8 .section-heading .heading-border {
  top: -20px;
  max-width: 340px;
}
#page-8 .section-heading .heading-icon {
  left: 15px;
  bottom: -65px;
  max-width: 60px;
}
#page-8.page .section-line {
  bottom: 4%;
  left: 10%;
  max-width: 50%;
}

#page-9 .section-heading h1 {
  line-height: 0.7;
}
#page-9 .text-content {
  padding-top: 5rem;
}
#page-9 .section-heading .heading-border {
  top: -30px;
  max-width: 370px;
}
#page-9 .section-heading .line2 {
  padding-left: 7rem;
}
#page-9 .section-heading .heading-icon {
  left: 20px;
  max-width: 75px;
}
#page-9.page .section-line {
  left: 14%;
  bottom: 20px;
  max-width: 60%;
}

#page-10 .section-heading h1 {
  line-height: 0.7;
}
#page-10 .text-content {
  padding-top: 5rem;
}
#page-10 .section-heading .heading-border {
  top: -30px;
  max-width: 380px;
}
#page-10 .section-heading .line2 {
  padding-left: 4.5rem;
}
#page-10 .section-heading .heading-icon {
  left: 0px;
  bottom: -60px;
  max-width: 70px;
}
#page-10.page .section-line {
  left: -6%;
  max-width: 62%;
}

#page-11 .text-content {
  padding-top: 5rem;
}
#page-11 .section-heading .heading-border {
  top: 0px;
  max-width: 400px;
}
#page-11 .section-heading .line2 {
  padding-left: 5.5rem;
}
#page-11 .text {
  padding-top: 3rem;
}
#page-11 .section-heading .heading-icon {
  left: -10px;
  bottom: -40px;
  max-width: 100px;
}
#page-11.page .section-line {
  bottom: -12%;
  left: -10%;
  max-width: 58%;
}

#page-12 .text-content {
  padding-top: 8rem;
  text-align: left;
}
#page-12 .section-heading .heading-border {
  top: -20px;
  max-width: 320px;
}
#page-12 .section-heading .line2 {
  padding-left: 4.5rem;
}
#page-12 .text {
  padding-top: 5rem;
}
#page-12 .section-heading .heading-icon {
  left: 10px;
  bottom: -50px;
  max-width: 70px;
}
#page-12.page .section-line {
  bottom: 20px;
    left: -30px;
    max-width: 58%;
}
.page-client p.lead {
  font-size: 1.5rem;
  text-transform: capitalize;
  line-height: 1.15;
  letter-spacing: 0.02rem;
}
.page-client p.lead .line2 {
  padding-left: 7rem;
}
.page-client p.lead .text-big {
  font-size: 2.2rem;
}

#page-13 .text-content {
  padding-top: 5rem;
}
#page-13 .section-heading .heading-border {
  top: -15px;
  max-width: 280px;
}
#page-13 .section-heading .heading-icon {
  left: 0px;
  bottom: -40px;
  max-width: 80px;
}
#page-13.page .section-line {
  bottom: 0px;
  left: -10px;
  max-width: 70%;
}
#page-13 p {
  color: var(--brand-blue);
  font-size: 1.6rem;
}

#page-14 .text-content {
  padding-top: 5rem;
}
#page-14 .section-heading .heading-border {
  top: -20px;
  max-width: 320px;
}
#page-14 .section-heading .line2 {
  padding-left: 5.5rem;
}
#page-14 .section-heading .heading-icon {
  left: 10px;
  bottom: -20px;
  max-width: 100px;
}
#page-14.page .section-line {
  bottom: -10px;
  left: 7%;
  max-width: 50%;
}
#page-14 .text { padding-top: 1rem;}

#page-15 .text-content {
  padding-top: 5rem;
}
#page-15 .section-heading .heading-border {
  top: -10px;
  max-width: 320px;
}
#page-15 .section-heading .line2 {
  padding-left: 5rem;
}
#page-15 .section-heading .heading-icon {
  left: -10px;
  bottom: -40px;
  max-width: 100px;
}
#page-15.page .section-line {
  bottom: 3rem;
  left: 25%;
  max-width: 70%;
}

/** Form styles **/
.form-container .form-group {
  position: relative;
  margin-bottom: 20px;
}
.form-container .form-group .form-control::placeholder {
  color: var(--brand-blue);
  font-size: 16px;
}
.form-container .form-group .form-control {
  padding: 0.85rem 1rem;
  background-color: transparent;
  color: var(--brand-navy);
  border: 1px solid var(--brand-blue);
  border-radius: 8px;
  outline: none;
  box-shadow: none;
  transition: all 0.25s ease-out;
}
.form-container .form-group .form-control:focus {
  border: 1px solid var(--brand-navy);
  background-color: rgba(0,0,0, 0.05);
}


/** Conatct **/
.page-contact {
  color: var(--brand-blue);
}
.page-contact p {
  font-size: 18px;
  color: var(--brand-blue);
}
.page-contact p.lead {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--brand-blue);
}
.contact-list li {
  color: var(--brand-blue);
  font-size: 18px;
}
.contact-list li a {
  color: var(--brand-blue);
  text-decoration: none;
}

.social-list-wrapper {
  padding-top: 0rem;
  position: relative;
    z-index: 1;
}

.social-list {
  display: flex;
}
.social-list li {
  color: var(--brand-blue);
}
.social-list li:not(:last-child) {
  margin-right: 0.1rem;
} 
.social-list li img {
  width: 50px;
  transition: transform 0.25s ease-out;
}
.social-list li:hover img {
  transform: translateY(-5px) scale(1.1);
}


.theme-blue { background: var(--brand-blue); color: #fff; }
.theme-gold { background: var(--brand-gold); color: #0f2f4a; }
.theme-navy { background: var(--brand-navy); color: #fff; }

 .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  opacity: 0.85;
}

.hero-graphic {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.sub-nav {
  position: relative;
  margin-top: 1rem;
  background: rgba(255, 255, 255, 0.92);
  padding: 1rem 1.25rem;
  border-radius: 14px;
  z-index: 3;
  max-width: 900px;
  width: 90%;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 12px;
}

.gallery-card, .gallery-tile {
  background: rgba(255, 255, 255, 0.12);
  border: 1px dashed rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 18px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
}

.gallery-strip .gallery-tile {
  background: rgba(255,255,255,0.1);
}

.bubble {
  display: inline-block;
  background: rgba(255,255,255,0.25);
  color: #0f2f4a;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  margin: 0.25rem;
  font-weight: 600;
}

.stat-card, .job-card {
  background: rgba(255,255,255,0.92);
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  margin-bottom: 0.75rem;
  color: #0f2f4a;
}

.job-card .title { font-weight: 700; }
.job-card .sub { font-size: 0.95rem; margin: 0.35rem 0; }
.job-card .link { color: var(--brand-blue); font-weight: 600; }

.client-pill {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 1rem;
  text-align: center;
  font-weight: 700;
  color: #fff;
}

.btn-outline-primary {
  --bs-btn-color: var(--brand-blue);
  --bs-btn-border-color: var(--brand-blue);
  --bs-btn-hover-bg: var(--brand-blue);
  --bs-btn-hover-border-color: var(--brand-blue);
}

/* 
.marquee-container {
  --img-width: 260px;
  --img-height: 200px;
  --d: 8s;
  --n: 4;

  display: flex;
  overflow: hidden;
}

.marquee-item {
  width: var(--img-width);
  height: auto;
  flex-shrink: 0;
  overflow: hidden;
  text-align: center;

  offset: shape(
    from calc(var(--img-width)/-2) 50%,
    hline by calc(sibling-count()*max(100%/var(--n),var(--img-width) + 10px))
  );

  animation: x var(--d) linear infinite calc(-1*sibling-index()*var(--d)/sibling-count());
}
@media screen and (max-width:1024px){

  .marquee-container{
    --img-width:45vw;
    --img-height:32vw;
  }

}

@media screen and (max-width:600px){

  .marquee-container{
    --img-width:80vw;
    --img-height:55vw;
  }

}

.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.marquee-container.alt .marquee-item {
  animation-direction: reverse;
}

@keyframes x { 
  to {offset-distance: 100%}
} */


/*  */
/* .marquee-text-container{
  --item-width: 400px;
  --d: 20s;
  --n: 3;

  display:flex;
  overflow:hidden;
}

.marquee-text-item{
  width: var(--item-width);
  flex-shrink:0;
  text-align:center;

  offset: shape(
    from calc(var(--item-width)/-2) 50%,
    hline by calc(sibling-count()*max(100%/var(--n),var(--item-width) + 5px))
  );

  animation: textmove var(--d) linear infinite 
  calc(-1*sibling-index()*var(--d)/sibling-count());
}

@keyframes textmove{
  to{offset-distance:100%;}
} */
/*  */

 .marquee-wrapper{
  width:100%;
  height:600px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  overflow:hidden;
   height:100%;
}

.marquee-track{
  height:100%;
  overflow:hidden;
  position:relative;
  transform: rotateZ(-3deg);
}

.marquee-inner{
  display:flex;
  flex-direction:column;
}

.logo-box{
  width:100%;
  margin:10px 0;
  flex-shrink:0;
}

.logo-box img{
  width:100%;
  height:auto;
  display:block;
}

.scroll-up{
  animation:scrollUp 33s linear infinite;
}
#gallery9Modal .scroll-up{
  animation:scrollUp 60s linear infinite;
} 

@keyframes scrollUp{
  0%{
    transform:translateY(0);
  }
  100%{
    transform:translateY(-50%);
  }
}

.scroll-down{
  animation:scrollDown 33s linear infinite;
}
#gallery9Modal .scroll-down{
  animation:scrollDown 60s linear infinite;
} 

@keyframes scrollDown{
  0%{
    transform:translateY(-50%);
  }
  100%{
    transform:translateY(0);
  }
}

/*  */


/*  */
.marquee-text-wrapper{
  width:100%;
  overflow:hidden;
  position:relative;
}

.marquee-text-track{
  display:flex;
  width:max-content;
  user-select: none;
  gap:90px; 
  animation: marquee 15s linear infinite;
}

.marquee-text-container{
  display:flex;
  align-items:center;
  gap:90px;
}

.marquee-text-item{
  flex-shrink:0;
}

.marquee-text-item button{
  background:none;
  border:none;
  font-size:18px;
  font-weight:600;
  white-space:nowrap;
  padding:6px 14px;
}


@keyframes marquee{
  0%{
    transform:translateX(0);
  }
  100%{
    transform:translateX(-50%);
  }
}


/* Responsive Styles */

@media screen and (max-width: 1680px) {
  #main-nav .nav-link {
    font-size: 16px;
  }
  .section-heading h1 {
    font-size: 2.8rem;
  }
  .section-heading .small {
    font-size: 1.6rem;
  }
  .section-heading .heading-border {
    max-width: 200px;
    top: 5px;
  }
  .page .container {
    padding-top: 3rem;
    max-width: 1220px;
  }
  .page .section-line {
    bottom: 30px;
    left: -15px;
    max-width: 58%;
  }
  .text {
    padding-top: 2rem;
  }
  .text p { font-size: 1rem; }
  .list-unstyled.section-list li:not(:last-child) {
    margin-bottom: 0.6rem;
  }
  .list-unstyled.section-list li {
    font-size: 1.35rem;
  }
  #page-3 .section-heading .heading-icon {
    bottom: -30px;
    left: -10px;
    max-width: 60px;
  }
  #page-3 .section-heading .heading-border {
    top: 5px;
    max-width: 250px;
  }
  #page-3 .text { max-width: 90%; }
  #page-4 .section-heading:not(.section-heading.section-heading2) .heading-icon {
    left: -5px;
    bottom: -40px;
    max-width: 45px;
  }
  #page-4 .section-heading.section-heading2 .heading-border {
    top: 5px;
    max-width: 270px;
  }
  #page-4 .section-heading.section-heading2 .heading-icon {
    max-width: 60px;
  }
  #page-4 .text {
    padding-top: 1rem;
    margin-bottom: 1.8rem;
    max-width: 90%;
  }

  #page-5 .section-heading .heading-icon {
    bottom: -30px;
    max-width: 80px;
    left: -15px;
  }
  
  #page-6 .section-heading .heading-border {
    top: -20px;
    max-width: 270px;
  }
  #page-6 .section-heading .heading-icon {
    max-width: 60px;
    bottom: -65px;
    left: 0px;
  }
  #page-6 .text {
    padding-top: 3.5rem;
  }
  #page-6.page .section-line {
    left: 25%;
    max-width: 45%;
    bottom: 3%;
  }
  #page-7 .section-heading .heading-border {
    top: -15px;
    max-width: 280px;
  }
  #page-7 .section-heading .heading-icon {
    left: 5px;
    bottom: -50px;
    max-width: 65px;
  }
  #page-8 .section-heading .heading-border {
    top: -20px;
    max-width: 240px;
  }
  #page-8 .section-heading .heading-icon {
    left: 20px;
    bottom: -65px;
    max-width: 50px;
  }
  #page-9 .section-heading .heading-border {
    top: -20px;
    max-width: 290px;
  }
  #page-9 .section-heading .heading-icon {
    left: 20px;
    max-width: 60px;
    bottom: -40px;
  }
  #page-9 .text { padding-top:3rem; }
  #page-10 .section-heading .heading-border {
    top: -30px;
    max-width: 300px;
  }
  #page-10 .section-heading .heading-icon {
    left: 5px;
    bottom: -60px;
    max-width: 60px;
  }
  #page-10 .text-content {
    padding-top: 1rem;
  }
  #page-11 .section-heading .heading-border {
    top: 0px;
    max-width: 300px;
  }
  #page-11 .section-heading .heading-icon {
    left: 0px;
    bottom: -50px;
    max-width: 80px;
  }
  #page-11.page .section-line {
    bottom: -10%;
    left: -9%;
    max-width: 60%;
  }
  #page-12 .section-heading .heading-border {
    top: -20px;
    max-width: 240px;
  }
  #page-12 .section-heading .heading-icon {
    left: 10px;
    bottom: -30px;
    max-width: 60px;
  }
  .page-client p.lead {
    font-size: 1.25rem;
  }
  .page-client p.lead .text-big {
    font-size: 2rem;
  }
  #page-12 .text-content {
    padding-top: 5rem;
  }
  #page-12 .client-logos {
    max-width: 85%;
    margin: auto;
  }
  #page-12 .text {
    padding-top: 4rem;
  }
  #page-12.page .section-line {
    bottom: 10px;
    left: -30px;
    max-width: 56%;
  }
  #page-13 .section-heading .heading-border {
    max-width: 200px;
  }
  #page-13 .section-heading .heading-icon {
    max-width: 70px;
  }
  #page-14 .section-heading .heading-border {
    top: -20px;
    max-width: 250px;
  }
  #page-14 .section-heading .heading-icon {
    left: 10px;
    bottom: -20px;
    max-width: 70px;
  }
  .card-testimonial .card-body .desc {
    font-size: 1.15rem;
  }
  .card-testimonial .card-footer h5 {
    font-size: 1rem;
  }
  .card-testimonial .card-footer .subtitle {
    font-size: 0.85rem;
  }
  #page-14.page .section-line {
    bottom: 0px;
    left: 5%;
    max-width: 53%;
  }
  #page-15 .section-heading .heading-border {
    top: -10px;
    max-width: 200px;
  }
  #page-15 .section-heading .heading-icon {
    left: 0px;
    bottom: -40px;
    max-width: 75px;
  }
  .page-contact p.lead {
    font-size: 1.3rem;
  }
  
}

@media screen and (max-width: 1366px) {

  #main-nav .logo-item {
    width: 160px;
  }
  .page .media-container {
    max-width: 90%;
    margin: auto;
  }
  .list-unstyled.section-list li {
    font-size: 1.1rem;
  }
  .list-unstyled.section-list li:not(:last-child) {
    margin-bottom: 0.5rem;
  }
  .page .section-line { bottom: 10px; max-width: 58%; }
  .section-heading h1 {
    font-size: 2.5rem;
  }
  .section-heading .small {
    font-size: 1.35rem;
  }
  .section-heading .heading-border {
    max-width: 170px;
  }
  .text p {
    font-size: 0.9rem;
  }

  .theme-button-group button {
    font-size: 1.2rem;
  }

  #page-3 .section-heading .heading-icon {
    bottom: -30px;
    left: -5px;
    max-width: 55px;
  }
  #page-3 .section-heading .heading-border {
    top: 5px;
    max-width: 220px;
  }

  #page-4 .section-heading:not(.section-heading.section-heading2) .heading-icon {
    left: 5px;
    bottom: -40px;
    max-width: 40px;
  }
  #page-4 .section-heading.section-heading2 .heading-border {
    top: 5px;
    max-width: 220px;
  }
  #page-4 .section-heading.section-heading2 .heading-icon {
    max-width: 55px;
    left: -20px;
  }

  #page-5 .text-content {
    padding-top: 0rem;
  }
  #page-5 .section-heading .heading-icon {
    max-width: 75px;
  }
  #page-6 .text-content {
    padding-top: 3rem;
  }
  
  #page-6 .section-heading .heading-border {
    max-width: 250px;
  }
  #page-6 .section-heading .heading-icon {
    max-width: 60px;
  }
  
  #page-7 .section-heading .heading-border {
    max-width: 260px;
  }

  #page-8 .section-heading .heading-border {
    max-width: 230px;
  }
  #page-8 .section-heading .heading-icon {
    left: 20px;
    bottom: -55px;
    max-width: 45px;
  }
  #page-8 .text {
    padding-top: 3rem;
  }

  #page-9 .text-content {
    padding-top: 2rem;
  }
  #page-9 .section-heading .heading-border {
    max-width: 250px;
  }
  #page-9 .section-heading .heading-icon {
    max-width: 55px;
  }
  #page-9 .section-heading .line2 {
    padding-left: 6rem;
  }
  #page-9 .text {
    padding-top: 2rem;
  }
  #page-9.page .section-line {
    left: 15%;
    bottom: 20px;
    max-width: 55%;
  }

  #page-10 .section-heading .heading-border {
    top: -20px;
    max-width: 250px;
  }
  #page-10 .section-heading .heading-icon {
    left: 5px;
    max-width: 55px;
  }
  #page-10 .text {
    padding-top: 3rem;
  }
  #page-10.page .section-line {
    left: -4%;
    max-width: 64%;
    bottom: -20px;
  }

  #page-11 .section-heading .heading-border {
    max-width: 260px;
  }
  #page-11 .section-heading .heading-icon {
    max-width: 75px;
  }
  #page-11 .text {
    padding-top: 2rem;
  }
  #page-11.page .section-line {
    bottom: -10%;
    left: -2%;
    max-width: 50%;
  }
  .card-job {
    padding: 0.5rem 0.8rem;
  }
  .card-job .job-title {
    font-size: 1.15rem;
  }
  .job-position-wrapper {
    max-height: 70vh;
    overflow-y: auto;
    margin-top: 1.5rem;
  }

  #page-12 .text-content {
    padding-top: 4rem;
  }
  #page-12 .section-heading .heading-border {
    max-width: 200px;
  }
  #page-12 .section-heading .heading-icon {
    bottom: -20px;
    max-width: 50px;  
  }
  #page-12 .text {
    padding-top: 2rem;
  }
  #page-12 .client-logos {
    max-width: 75%;
    margin: auto;
  }
  .page-client p.lead {
    font-size: 1.1rem;
  }
  .page-client p.lead .text-big {
    font-size: 1.6rem;
  }
  #page-12.page .section-line {
    bottom: 10px;
    left: -10px;
    max-width: 53%;
  }

  #page-13 .text-content {
    padding-top: 2rem;
  }
  #page-13 .section-heading .heading-border {
    max-width: 180px;
  }
  #page-13 .section-heading .heading-icon {
    max-width: 60px;
    bottom: -35px;
  }
  #page-13 p {
    color: var(--brand-blue);
    font-size: 1.1rem;
  }
  #page-13.page .section-line {
    bottom: 10px;
    left: -20px;
    max-width: 70%;
  }
  #page-14 .text-content {
    padding-top: 2rem;
  }
  #page-14 .section-heading .heading-border {
    max-width: 200px;
  }
  #page-14 .section-heading .heading-icon {
    max-width: 60px;
    left:15px;
  }
  .card-testimonial .card-body .desc {
    font-size: 1rem;
  }
  .testimonial-slider {
    min-height: 220px;
  }
  .card-testimonial .card-footer h5 {
    font-size: 0.85rem;
  }
  .card-testimonial .card-footer .subtitle {
    font-size: 0.7rem;
  }
  #page-14.page .section-line {
    bottom: 10px;
  }

  #page-15 .text-content {
    padding-top: 6rem;
  }
  #page-15 .section-heading .heading-border {
    max-width: 180px;
  }
  #page-15 .section-heading .heading-icon {
    left: 0px;
    bottom: -40px;
    max-width: 70px;
  }
  .page-contact p.lead {
    font-size: 1rem;
  }
  .contact-list li{ font-size: 16px; }
  .contact-list li img {
    max-width: 40px;
  }
  #page-15.page .section-line {
    bottom: 2rem;
    left: 20%;
    max-width: 60%;
  }
  .social-list-wrapper { top: -20px; }
  .social-list li img {
    width: 40px;
  }
  .form-container .form-group { margin-bottom:10px; }
  .form-container .form-group .form-control {
    padding: 0.6rem 0.8rem;
  }
  .form-container .btn-theme.btn-theme-outline {
    padding: 0.65rem 1rem;
  }

}

@media screen and (max-width: 1199px) {

  #splash-wrapper {
    background: rgba(1, 97, 157, 1);
  }
  .splash-video video {
    object-fit: contain;
  }

  #main-nav .nav-link { font-size: 16px;}
  #main-nav .logo-item { width: 160px; }
  #main-nav .logo-item img { top: -10px; }
  #main-nav .offcanvas {
    height: 100vh;
  }

  .page .container {
    padding-top: 3rem;
  }

  .social-list-wrapper {
    top: -10px;
  }

}

@media screen and (max-width: 1024px) {
  #main-nav .logo-item {
    width: 140px;
  }
  #main-nav .nav-link {
    font-size: 15px;
    padding: 0.4rem;
  }
  .theme-button-group button {
    font-size: 1rem;
  }
}


@media screen and (max-width: 991px) {
  #main-nav {
    padding-left: 1rem;
    padding-right: 1rem;
    border: 0px;
  }
  #main-nav {
    padding-top: 0.4rem !important;
    padding-bottom: 0.4rem !important;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  #main-nav .brand-mobile {
    font-size: 1.05rem;
    padding-top: 0;
    padding-bottom: 0;
  }
  #main-nav .brand-mobile {
    width: 120px;
    position: relative;
  }
  #main-nav .brand-mobile img {
    width: auto;
    max-width: 100%;
    position: absolute;
    margin: auto;
    top: -20px;
  }
  #main-nav .navbar-toggler {
    font-size: 1rem;
    padding: 0.4rem 0.75rem;
    /* background-color: var(--bs-border-color-translucent); */
    background-color: rgb(250 241 222);
  }
  #main-nav .navbar-toggler:focus {
    box-shadow: none;
  }
  #main-nav .nav-link {
    font-size: 16px;
    padding: 0.4rem;
    font-weight: 500;
  }
  #main-nav .offcanvas {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
  }

  .theme-button-group button {
    font-size: 0.8rem;
  }
  .list-unstyled.section-list.list-zigzag li:nth-child(even) {
    margin-left: 0rem;
  }

}

@media screen and (max-width: 991px) {
  #pleaserotate-backdrop {
    /* background-color: rgba(255, 255, 255, 0.85) !important; */
    background: radial-gradient(circle, rgba(6, 13, 61, 0.77) 0%, rgba(242, 198, 36, 0.51) 0%, rgba(3, 9, 56, 0.9) 100%) !important;
    backdrop-filter: blur(10px);
    opacity: 0.99 !important;
    z-index: 10000;
  }
  #pleaserotate-container {
    text-align: center;
  }
  #pleaserotate-graphic {
    margin-left: auto !important;
    margin-right: auto;
    fill: #fff;
  }
  #pleaserotate-message {
    font-size: 1.2rem;
    color: #fff;
  }
  #pleaserotate-message small {
    font-size: 0.9rem;
    color: #e6e4db;
    margin-top: 0.7rem;
    opacity: 1;
  }
}

/* General mobile landscape orientation styles (example using max-height for robustness) */
@media only screen and (max-height: 575.98px) and (orientation: landscape) { 
  /* Your CSS for mobile landscape */


    /*  */
    .theme-button-group{
    bottom: 5vh;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }

  .theme-button-group button{
    font-size: 0.9rem;
    letter-spacing: 0.02rem;
  }
  .marquee-text-container{
  --item-width: 250px;   
  --d: 20s;
  --n: 3;

}
  
    /*  */




  #main-nav {
    padding-top: 0.2rem !important;
    padding-bottom: 0.2rem !important;
    padding-left: 0.4rem;
    padding-right: 0.4rem;
  }
  #main-nav .brand-mobile {
    font-size: 1.05rem;
    padding-top: 0;
    padding-bottom: 0;
  }
  #main-nav .brand-mobile {
    width: 80px;
    position: relative;
  }
  #main-nav .brand-mobile img {
    width: auto;
    max-width: 100%;
    position: absolute;
    margin: auto;
    top: -15px;
  }
  #main-nav .navbar-toggler {
    font-size: 0.85rem;
    padding: 0.2rem 0.4rem;
  }
  #main-nav .navbar-collapse {
    padding-top: 2rem;
  }
  /* #main-nav .offcanvas {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
  } */

  .theme-button-group button {
    font-size: 0.8rem;
  }

  p { margin-bottom: 0.5rem;}
  .section-heading { margin-bottom: 1.5rem !important;}
  .section-heading .heading-border {
    max-width: 100px;
    top: 0px;
  }
  .section-heading h1 {
    font-size: 1.5rem;
  }
  .section-heading .small {
    font-size: 1.1rem;
  }
  .section-heading .line2 { padding-left: 1.25rem;}
  .text {
    padding-top: 0.5rem;
    margin-bottom: 1rem;
  }
  .text p {
    font-size: 0.75rem;
    line-height: 1.35;
  }
  .list-unstyled.section-list li {
    font-size: 0.75rem;
  }
  .list-unstyled.section-list.list-zigzag li:nth-child(even) {
    margin-left: 1.5rem;
  }
  .list-unstyled.section-list.list-zigzag li a::after {
    height: 1px;
  }

  #page-4 .section-heading .line2 {
    padding-left: 1.25rem;
  }

  #page-4 .section-heading.section-heading2 .heading-icon {
    max-width: 36px;
    left: -5px;
    bottom: -20px;
  }
  #page-4 .section-heading.section-heading2 .heading-border {
    top: 0px;
    max-width: 130px;
  }
  #page-4 .section-heading:not(.section-heading.section-heading2) .heading-icon {
    left: 0px;
    bottom: -25px;
    max-width: 26px;
  }

  #page-5 .section-heading .heading-icon {
    max-width: 50px;
    left: -10px;
  }
  #page-5 .section-heading .line2 {
    padding-left: 2rem;
  }
  
  #page-6 .section-heading .heading-border {
    max-width: 140px;
    top: -5px;
  }
  #page-6 .section-heading .line2 {
    padding-left: 2rem;
  }
  #page-6 .section-heading .heading-icon {
    max-width: 32px;
    bottom: -30px;
    left: 5px;
  }
  #page-6 .section-heading h1 {
    line-height: 0.85;
  }
  #page-6 .text {
    padding-top: 2rem;
  }
  #page-6 .text-content {
    padding-top: 1rem;
  }

  #page-7 .section-heading .heading-border {
    max-width: 150px;
  }
  #page-7 .section-heading .heading-icon {
    left: 5px;
    bottom: -25px;
    max-width: 32px;
  }
  #page-7 .section-heading .line2 {
    padding-left: 2rem;
  }
  #page-7 .text-content {
    padding-top: 1rem;
  }

  #page-8 .section-heading .heading-border {
    top: -5px;
    max-width: 120px;
  }
  #page-8 .section-heading .heading-icon {
    left: 15px;
    bottom: -40px;
    max-width: 30px;
  }
  #page-8 .section-heading .line2 {
    padding-left: 2.5rem;
  }
  #page-8 .section-heading h1 {
    line-height: 0.85;
  }
  #page-8 .text {
    padding-top: 2rem;
  }

  #page-9 .section-heading .heading-border {
    top: -10px;
    max-width: 130px;
  }
  #page-9 .section-heading .line2 {
    padding-left: 2.5rem;
  }
  #page-9 .section-heading .heading-icon {
    max-width: 40px;
    left: 10px;
  }

  #page-10 .section-heading .heading-border {
    top: -10px;
    max-width: 140px;
  }
  #page-10 .section-heading .heading-icon {
    left: 5px;
    max-width: 40px;
    bottom: -45px;
  }
  #page-10 .section-heading .line2 {
    padding-left: 2.5rem;
  }
  #page-10 .text-content {
    padding-top: 1rem;
  }
  #page-10 .text {
    padding-top: 2.5rem;
  }

  #page-11 .section-heading .heading-border {
    max-width: 150px;
  }
  #page-11 .section-heading .heading-icon {
    max-width: 50px;
  }
  #page-11 .section-heading .line2 {
    padding-left: 2.3rem;
  }
  #page-11 .text {
    padding-top: 2rem;
  }
  #page-11 .text-content {
    padding-top: 2rem;
  }
  .card-job {
    padding: 0.3rem 0.45rem;
  }
  .card-job .job-title {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
  }
  .card-job .job-desc {
    font-size: 0.7rem;
  }
  .card-job .btn-theme-link {
    font-size: 0.75rem;
  }

  #page-12 .section-heading .heading-border {
    max-width: 140px;
  }
  #page-12 .section-heading .heading-icon {
    bottom: -15px;
    max-width: 40px;
  }
  #page-12 .section-heading .line2 {
    padding-left: 2.5rem;
  }

  .page-client p.lead .text-big {
    font-size: 1.2rem;
  }
  .page-client p.lead {
    font-size: 1.35rem;
  }
  #page-12 .text {
    padding-top: 3rem;
  }

  #page-13 .section-heading .heading-border {
    max-width: 120px;
  }
  #page-13 .section-heading .heading-icon {
    max-width: 34px;
    bottom: -20px;
  }
  #page-13 p {
    font-size: 1rem;
  }
  #page-14 .section-heading .heading-border {
    max-width: 130px;
    top: -10px;
  }
  #page-14 .section-heading .heading-icon {
    max-width: 40px;
  }
  #page-14 .section-heading .line2 {
    padding-left: 2.5rem;
  }
  #page-14 .section-heading .line2 {
    padding-left: 2.5rem;
  }
  .testimonial-slider { min-height: 170px;}
  .card-testimonial .card-body .quote {
    width: 22px;
  }
  .card-testimonial .card-body .quote.quote-l {
    top: 0;
    left: -15px;
  } 
  .card-testimonial .card-body .quote.quote-r {
    bottom: -5px;
  }
  .card-testimonial .card-body {
    padding-left: 1rem;
  }
  .card-testimonial .card-body::before {
    left: 0px;
    top: 35px;
    height: calc(100% - 35px);
  }
  .card-testimonial .card-body::after {
    right: 35px;
    bottom: 0px;
    width: calc(100% - 35px);
  }
  .card-testimonial .card-body .desc {
    font-size: 0.8rem;
    line-height: 1.25;
  }

  .card-testimonial .card-footer {
    padding-top: 0.5rem;
    padding-left: 1rem;
    padding-right: 35px;
  }
  .card-testimonial .card-footer h5 {
    font-size: 0.7rem;
  }
  .card-testimonial .card-footer .subtitle {
    font-size: 0.65rem;
  }
  .list-ratings li { width: 14px;}

  #page-15 .section-heading .heading-border {
    max-width: 110px;
  }
  #page-15 .section-heading .heading-icon {
    max-width: 40px;
    bottom: -15px;
    left: -5px;
  }
  #page-15 .section-heading .line2 {
    padding-left: 2rem;
  }

  .page-contact p.lead {
    font-size: 0.85rem;
  }
  .contact-list li {
    font-size: 0.75rem;
  }
  .contact-list li img {
    width: 22px;
  }
  .contact-list li .list-text {
    padding-top: 0 !important;
  }
  .form-container .form-group {
    margin-bottom: 5px;
  }
  .form-container .form-group .form-control {
    padding: 0.35rem 0.5rem;
    border-radius: 5px;
    font-size: 14px;
  }
  .form-container .form-group .form-control::placeholder {
    font-size: 14px;
  }
  .form-container textarea.form-control {
    height: 50px;
  }
  .form-container .btn-theme.btn-theme-outline {
    font-size: 14px;
    padding: 0.45rem 0.75rem;
  }
  .social-list-wrapper {
    top: -30px;
  }
  .social-list li img { width: 36px;}
  .social-list li:first-child {
    font-size: 14px;
  }

}
