:root {
  --theme-primary: #0a3370; /* Your new base color */
  --theme-secondary: #fffef7;
  --text-secondary-primary: #1a1a1a;
  --text-primary: #ffffff; /* Bright white for strongest contrast */
  --text-secondary: #4d4d4d; /* Soft bluish gray */
  --text-muted: #7a7a7a; /* Muted tone for subtle text */
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: 0;
}

* {
  -webkit-tap-highlight-color: transparent; /* Removes grey/blue flash on tap */
  outline: none; /* Removes default outline on tap */
}

img,
button,
a {
  user-select: none; /* Prevents accidental text/image selection */
}

html {
  scroll-behavior: smooth;
}

body,
html {
  overflow-x: hidden;
}

p,
span,
li,
a {
  text-align: justify;
}

@media (max-width: 767px) {
  p,
  span,
  li,
  a {
    text-align: left;
  }
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

a,
button,
input,
textarea {
  background: 0 0;
  color: inherit;
  font-family: inherit;
  border: none;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

textarea {
  resize: none;
}

img,
video {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

a[href^="http://maps.google.com/maps"],a[href^="https://maps.google.com/maps"]
{
  display: none !important;
}

.gm-style-cc,
.gmnoprint a,
.gmnoprint span {
  display: none;
}

.gmnoprint div {
  background: 0 0 !important;
}

.sticky-spacer {
  display: none !important;
}

@-webkit-keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes pulse {
  0%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes pulse {
  0%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

html.fixed {
  position: fixed;
  width: 100%;
}

body {
  font-family: Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #000810;
  position: relative;
}

body.swal2-shown {
  padding: 0 !important;
}

#loader {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 1);
  z-index: 100000000;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* From Uiverse.io by abrahamcalsin */
.dot-spinner {
  --uib-size: 2.8rem;
  --uib-speed: 0.9s;
  --uib-color: #183153;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: var(--uib-size);
  width: var(--uib-size);
}

.dot-spinner__dot {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  width: 100%;
}

.dot-spinner__dot::before {
  content: "";
  height: 20%;
  width: 20%;
  border-radius: 50%;
  background-color: var(--theme-primary);
  transform: scale(0);
  opacity: 0.5;
  animation: pulse0112 calc(var(--uib-speed) * 1.111) ease-in-out infinite;
  box-shadow: 0 0 20px rgba(18, 31, 53, 0.3);
}

.dot-spinner__dot:nth-child(2) {
  transform: rotate(45deg);
}

.dot-spinner__dot:nth-child(2)::before {
  animation-delay: calc(var(--uib-speed) * -0.875);
}

.dot-spinner__dot:nth-child(3) {
  transform: rotate(90deg);
}

.dot-spinner__dot:nth-child(3)::before {
  animation-delay: calc(var(--uib-speed) * -0.75);
}

.dot-spinner__dot:nth-child(4) {
  transform: rotate(135deg);
}

.dot-spinner__dot:nth-child(4)::before {
  animation-delay: calc(var(--uib-speed) * -0.625);
}

.dot-spinner__dot:nth-child(5) {
  transform: rotate(180deg);
}

.dot-spinner__dot:nth-child(5)::before {
  animation-delay: calc(var(--uib-speed) * -0.5);
}

.dot-spinner__dot:nth-child(6) {
  transform: rotate(225deg);
}

.dot-spinner__dot:nth-child(6)::before {
  animation-delay: calc(var(--uib-speed) * -0.375);
}

.dot-spinner__dot:nth-child(7) {
  transform: rotate(270deg);
}

.dot-spinner__dot:nth-child(7)::before {
  animation-delay: calc(var(--uib-speed) * -0.25);
}

.dot-spinner__dot:nth-child(8) {
  transform: rotate(315deg);
}

.dot-spinner__dot:nth-child(8)::before {
  animation-delay: calc(var(--uib-speed) * -0.125);
}

@keyframes pulse0112 {
  0%,
  100% {
    transform: scale(0);
    opacity: 0.5;
  }

  50% {
    transform: scale(1);
    opacity: 1;
  }
}

.page {
  padding: 100px 0 40px;
  position: relative;
  overflow: hidden;
}

.page .section_header {
  position: relative;
  z-index: 3;
  margin-bottom: 0;
}

.page .media {
  position: absolute;
  width: 50%;
  -webkit-transform: rotate(153deg);
  -ms-transform: rotate(153deg);
  transform: rotate(153deg);
  bottom: -15%;
  right: 10%;
  opacity: 0.8;
  z-index: 1;
  max-width: 700px;
}

.page .media img {
  height: 100%;
}

.page .breadcrumbs {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px 84px;
}

.page .breadcrumbs_item {
  position: relative;
}

.page .breadcrumbs_item a {
  font-weight: 500;
}

.page .breadcrumbs_item a:focus,
.page .breadcrumbs_item a:hover {
  color: #ffc631;
}

.page .breadcrumbs_item:hover:before {
  width: 100%;
}

.page .breadcrumbs_item:after,
.page .breadcrumbs_item:before {
  content: "";
  position: absolute;
}

.page .breadcrumbs_item:after {
  width: 30px;
  height: 2px;
  background: #fff;
  top: 50%;
  right: -58px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.page .breadcrumbs_item:before {
  width: 0;
  height: 2px;
  background-color: #ffc631;
  bottom: -6px;
  -webkit-transition: width 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}

.page .breadcrumbs_item--current {
  font-weight: 400;
  padding: 0;
  margin: 0;
}

.page .breadcrumbs_item--current:after,
.page .breadcrumbs_item--current:before {
  display: none;
}

.container {
  max-width: 1290px;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-nopb {
  padding: 80px 0 0;
}

.section_header {
  margin-bottom: 30px;
}

.section_header .subtitle {
  text-transform: uppercase;
  padding-left: 60px;
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 21px;
  margin-bottom: 15px;
  font-family: Archivo, sans-serif;
  font-weight: 600;
}

.section_header .subtitle:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 2px;
  width: 40px;
  background: #ffc631;
}

.section_header .subtitle--extended {
  padding-left: 20px;
}

.section_header .subtitle--extended:before {
  width: 1000%;
  left: -1000%;
}

.section_header .text {
  margin: 20px 0 30px;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Archivo, sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.h1,
h1 {
  font-size: 32px;
}

.h2,
h2 {
  font-size: 30px;
  line-height: 1.1;
}

.h3,
.h4,
h3,
h4 {
  font-size: 20px;
}

.h5,
h5 {
  font-size: 16px;
}

.h6,
h6 {
  font-size: 12px;
  line-height: 1.5;
}

.btn,
.field {
  height: 54px;
}

@media (max-width: 767px) {
  .btn,
  .field {
    height: 45px;
  }
}

.field {
  background: #fff;
  border: 1px solid #ffc631;
  padding: 17px 19px;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  color: #000810;
  font-size: inherit;
  line-height: inherit;
  margin-bottom: 20px;
}

.field::-webkit-input-placeholder {
  color: #a9a9a9;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  font-size: 16px;
}

.field::-moz-placeholder {
  color: #a9a9a9;
  -moz-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  font-size: 16px;
}

.field:-ms-input-placeholder {
  color: #a9a9a9;
  -ms-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  font-size: 16px;
}

.field::-ms-input-placeholder {
  color: #a9a9a9;
  -ms-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  font-size: 16px;
}

.field::placeholder {
  color: #a9a9a9;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  font-size: 16px;
}

.field:focus::-webkit-input-placeholder {
  opacity: 0;
}

.field:focus::-moz-placeholder {
  opacity: 0;
}

.field:focus:-ms-input-placeholder {
  opacity: 0;
}

.field:focus::-ms-input-placeholder {
  opacity: 0;
}

.field:focus::placeholder {
  opacity: 0;
}

.field.error {
  border-color: red !important;
}

.btn {
  font-family: Archivo, sans-serif;
  font-weight: 700;
  padding: 0 30px;
  color: white;
  font-size: 18px;
  border-radius: 8px;
  line-height: 1;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  background: #ffc631;
  text-transform: uppercase;
  position: relative;
  bottom: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

@media (max-width: 767px) {
  .btn {
    font-size: 16px;
  }
}

.btn:not(.btn--static):focus,
.btn:not(.btn--static):hover {
  bottom: 5px;
}

.metadata {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: uppercase;
  color: #202c38;
  font-size: 14px;
}

.metadata .icon {
  font-size: 5px;
  color: #ffc631;
}

.metadata .category {
  color: var(--theme-primary);
  font-family: Archivo, sans-serif;
  font-weight: 600;
}

.metadata .author .link:hover,
.metadata .category:hover {
  color: #0a3370;
}

.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.socials_item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--theme-primary);
  color: #fff;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  line-height: 30px;
  will-change: transform;
}

.socials_item-link:focus,
.socials_item-link:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  background-color: #ffc631;
}

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"]:checked + label .icon {
  color: #0a3370;
}

input[type="checkbox"] + label {
  cursor: pointer;
}

input[type="checkbox"] + label .icon {
  color: transparent;
  width: 18px;
  height: 18px;
  border: 1px solid #c8c8c8;
  font-size: 12px;
  margin-right: 20px;
  text-align: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

#scrollTrigger {
  position: fixed;
  right: 12px;
  bottom: -100px;
  z-index: 99999;
  width: 40px;
  height: 40px;
  opacity: 0.5;
  background: #ffc631;
  border-radius: 100%;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#scrollTrigger.active {
  bottom: 12px;
}

#scrollTrigger:hover {
  opacity: 1;
}

#scrollTrigger .icon {
  display: inline-block;
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
  color: var(--theme-primary);
  font-size: 24px;
  line-height: 24px;
}

.rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  color: #ffc631;
  font-size: 18px;
}

.avatar {
  border-radius: 50%;
  width: 40px;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.avatar img {
  height: 100%;
}

.link-arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 1;
  color: var(--theme-primary);
  letter-spacing: 1px;
  font-family: Archivo, sans-serif;
  font-weight: 600;
}

.link-arrow--alt {
  color: #ffc631;
}

.link-arrow .icon {
  margin: -2px 0 0 10px;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  font-size: 16px;
}

.link-arrow:focus .icon,
.link-arrow:hover .icon {
  margin-left: 15px;
}

.brand {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.brand_logo {
  height: 60px;
}

.brand_logo_footer {
  height: 70px;
}

@media (max-width: 767px) {
  .brand_logo {
    height: 45px;
  }

  .brand_logo_footer {
    height: 45px;
  }
}

.tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
  text-transform: uppercase;
}

.tags_item {
  border: 1px solid #e9e6e6;
  padding: 10px 20px;
  will-change: transform;
}

.tags_item:focus,
.tags_item:hover {
  border-color: var(--theme-primary);
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}

.swiper-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

.swiper-controls .swiper-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--theme-primary);
  color: var(--theme-primary);
  font-size: 16px;
  border-radius: 50%;
  background-color: transparent;
  -webkit-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.swiper-controls .swiper-button:focus,
.swiper-controls .swiper-button:hover {
  background-color: var(--theme-primary);
  color: #fff;
}

.swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  height: 24px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #e9e6e6;
  display: block;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}

.swiper-pagination-bullet:after {
  content: "";
  position: absolute;
  display: block;
  width: 24px;
  height: 24px;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  border-radius: 50%;
  border: 1px solid transparent;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.swiper-pagination-bullet-active {
  background: #ffc631;
}

.swiper-pagination-bullet-active:after {
  background: #ffc631;
}

.highlight {
  color: #ffc631;
}

.primary-bg {
  background: var(--theme-primary);
  color: var(--text-primary);
}

.primary-bg .checklist_item .icon {
  color: #ffc631;
}

.video {
  position: relative;
  overflow: hidden;
}

.video_cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.video_cover img {
  height: 100%;
}

.video_btn {
  z-index: 2;
  width: 55px;
  height: 55px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  border: 2px solid var(--theme-primary);
  border-radius: 50%;
  color: var(--theme-primary);
  font-size: 24px;
}

.video_btn i {
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}

.video_btn i.icon-pause {
  opacity: 0;
}

.video_btn:focus,
.video_btn:hover {
  border-color: #ffc631;
}

.video_btn:focus i,
.video_btn:hover i {
  color: #ffc631;
}

.video_btn,
.video_cover {
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.video_btn.hidden,
.video_cover.hidden {
  opacity: 0;
  visibility: hidden;
}

.video video {
  height: 100%;
}

/* Gallery Slider Styles */
.gallery_slider {
  position: relative;
  overflow: hidden;
  /* min-height: 350px; */
  margin-top: 30px;
  padding: 30px 0 0 0;
}

.gallery_slider-slide {
  height: 400px !important;
  transition: transform 0.5s ease-in-out; /* applies to both hover in & out */
  will-change: transform; /* hint to browser for smoother GPU rendering */
}

.gallery_slider-slide:hover {
  transform: translateY(-10px);
}

.gallery_slider-slide img {
  border-radius: 10px;
}

@media (max-width: 767px) {
  .gallery_slider {
    padding: 0px;
  }

  .gallery_slider-slide {
    height: 300px !important;
  }
}

.gallery_slider .swiper-slide {
  width: 300px;
  flex-shrink: 0;
  height: 300px;
}

/* Before/After Labels for Image Comparison Slider */
.img-comparison-slider-container {
  position: relative;
}

.img-comparison-slider-container .before-label {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
}

.img-comparison-slider-container .after-label {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
}

.img-comparison-slider-container .before-label span,
.img-comparison-slider-container .after-label span {
  background: #ffc631;
  color: black;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 14px;
  display: inline-block;
}

.gallery_slider .swiper-slide .media {
  width: 100%;
  height: 100%;
  display: block;
}

.gallery_slider .swiper-slide .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Navigation Arrows */

.gallery_slider .swiper-button-next,
.gallery_slider .swiper-button-prev {
  background: rgba(255, 198, 49, 0.7);
  color: #000810;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s ease;
  position: absolute;
  z-index: 1000;
  top: 40%;
  transform: translateY(-40%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@media (max-width: 767px) {
  .gallery_slider .swiper-button-next,
  .gallery_slider .swiper-button-prev {
    top: 45%;
    transform: translateY(-45%);
  }
}

.gallery_slider .swiper-button-next {
  right: 10px;
}

.gallery_slider .swiper-button-prev {
  left: 10px;
}

.gallery_slider .swiper-button-next:hover,
.gallery_slider .swiper-button-prev:hover {
  background: rgba(255, 198, 49, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.gallery_slider .swiper-button-next::after,
.gallery_slider .swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
}

/* Pagination Dots */

.gallery_slider-pagination-container {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

@media (max-width: 767px) {
  .gallery_slider-pagination-container {
    display: none;
  }
}

.gallery_slider .swiper-pagination {
  width: 80% !important;
  height: 100%;
  gap: 20px;
}

.gallery_slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ddd;
  opacity: 1;
  transition: all 0.3s ease;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.gallery_slider .swiper-pagination-bullet-active {
  background: rgba(255, 198, 49, 1);
  transform: scale(1.1);
  border-color: rgba(255, 255, 255, 1);
}

.past_performance_list {
  display: grid;
  gap: 40px;
}

.past_performance_list-item .media {
  aspect-ratio: 625/500;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.past_performance_list-item .media img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  will-change: transform;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  -o-transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

.past_performance_list-item .media:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.past_performance_list-item .main_title {
  margin-bottom: 15px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-bottom: 15px;
  position: relative;
}

.past_performance_list-item .main_title .divider--line {
  position: absolute;
  width: 100%;
  height: 1px;
  background: #a9a9a9;
  bottom: 0;
  left: 0;
}

.past_performance_list-item .main_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.past_performance_list-item .main_info .location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.past_performance_list-item .main_info .location .icon {
  color: #ffc631;
  font-size: 24px;
}

.blog_feed {
  display: grid;
  grid-gap: 40px;
}

.blog_feed-item .media {
  aspect-ratio: 410/320;
  overflow: hidden;
}

.blog_feed-item .media img {
  height: 100%;
}

.blog_feed-item .metadata {
  margin: 10px 0 5px;
}

.blog_feed-item .main_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.blog_feed-item .main_title .icon {
  margin-top: 5px;
  color: #0a3370;
}

.blog_feed-item .main_text {
  margin: 10px 0 20px;
  padding-bottom: 15px;
  color: #162739;
  border-bottom: 1px solid #c8c8c8;
}

.gallery_item {
  height: 420px;
  max-height: 420px;
  min-height: 420px;
  flex: 0 0 auto;
  min-width: 400px;
  max-width: 400px;
  overflow: hidden;
}

.gallery_item .media {
  position: relative;
  height: 100%;
}

.gallery_item .media img {
  height: 100%;
}
/* 
.gallery_item .media .overlay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 20px;
  color: #fff;
  background: rgba(0, 31, 63, 0.5);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.gallery_item .media .overlay_header {
  margin-bottom: 0;
}

.gallery_item .media .overlay_caption {
  font-family: Archivo, sans-serif;
  font-weight: 700;
  text-align: left;
}

.gallery_item .media .overlay_label {
  text-transform: uppercase;
  color: #ffc631;
  margin-top: 20px;
  font-family: Archivo, sans-serif;
  font-weight: 600;
  font-size: 18px;
}

.gallery_item .media:hover .overlay {
  opacity: 1;
} */

.checklist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}

.checklist_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.checklist_item .icon {
  font-size: 18px;
  margin-top: -3px;
  color: #0a3370;
}

.achievements {
  max-width: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-weight: 500;
  gap: 20px;
}

.achievements_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.achievements_item .label {
  width: calc(100% - 60px);
}

.numbers_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
}

.numbers_list-item .number {
  margin-bottom: 10px;
  font-family: Archivo, sans-serif;
  font-weight: 800;
}

.numbers_list-item .label {
  font-weight: 500;
}

@media screen and (min-width: 567.98px) {
  .btn {
    width: -webkit-fit-content !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
  }

  .numbers_list {
    display: grid;
    grid-template-columns: repeat(2, auto);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    grid-gap: 30px;
  }

  /* .gallery_item .media .overlay {
    padding: 30px;
  } */

  .past_performance_list-item .main_info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
  }

  .past_performance_list-item .main_info .location {
    margin: 0;
  }
}

@media screen and (min-width: 767.98px) {
  body {
    font-size: 19px;
  }

  h1 {
    font-size: 46px;
    line-height: 1.1;
  }

  h2 {
    font-size: 40px;
    line-height: 1.3;
  }

  h3,
  h4 {
    font-size: 26px;
    line-height: 1.2;
  }

  #scrollTrigger {
    right: 20px;
  }

  #scrollTrigger.active {
    bottom: 20px;
  }

  .video_btn {
    width: 110px;
    height: 110px;
    font-size: 34px;
  }

  .page {
    padding: 100px 0 60px;
  }

  .page .media {
    bottom: -45%;
  }

  .section_header {
    margin-bottom: 40px;
  }

  .rating {
    font-size: 24px;
  }

  .avatar {
    width: 60px;
  }

  /* .gallery_item .media .overlay {
    padding: 40px;
  } */

  .blog_feed {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px 30px;
  }

  .blog_feed-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .blog_feed-item .main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }

  .blog_feed-item .main_text {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }

  .past_performance_list {
    grid-template-columns: repeat(2, 1fr);
  }

  .past_performance_list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .past_performance_list-item .main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }

  .past_performance_list-item .main_title {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }

  .past_performance_list-item .main_info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .gallery_item {
    min-width: 400px;
    max-width: 400px;
  }
}

@media screen and (min-width: 1023.98px) {
  h1 {
    font-size: 58px;
    line-height: 1;
  }

  h2 {
    font-size: 48px;
    line-height: 1.1;
  }

  h3 {
    font-size: 30px;
    line-height: 1.2;
  }

  h4 {
    line-height: 1.1;
  }

  .section {
    padding: 100px 0;
  }

  .section-nopb {
    padding: 100px 0 0;
  }

  .page {
    padding: 200px 0 80px;
  }

  .page .media {
    bottom: -80%;
    right: -18%;
    width: 100%;
  }

  .avatar {
    width: 80px;
  }

  .blog .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
  }

  .past_performance_list {
    grid-gap: 60px 40px;
  }

  .past_performance_list-item .main_info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .past_performance_list-item .main_title .text {
    display: block;
    max-width: 450px;
  }
}

@media screen and (min-width: 1279.98px) {
  .page .media {
    right: 200px;
  }

  .blog .container {
    gap: 60px;
  }

  .blog_feed-item .metadata {
    margin: 20px 0;
  }

  .blog_feed-item .main_text {
    margin: 20px 0 25px;
  }

  .achievements {
    gap: 30px;
    max-width: 320px;
  }

  .achievements_item {
    gap: 30px;
  }

  .achievements_item .label {
    width: calc(100% - 70px);
  }

  #scrollTrigger {
    right: 40px;
  }

  #scrollTrigger.active {
    bottom: 40px;
  }

  .gallery_item {
    min-width: 400px;
    max-width: 400px;
  }
}

@media screen and (min-width: 1330px) {
  .past_performance_list-item .main_title .text {
    max-width: unset;
  }

  .container {
    padding: 0;
  }
}

@media screen and (min-width: 1365.98px) {
  #scrollTrigger {
    width: 58px;
    height: 58px;
    right: 30px;
  }

  #scrollTrigger.active {
    bottom: 30px;
  }

  .gallery_item {
    min-width: 400px;
    max-width: 400px;
  }
}

.alert_popup {
  border-radius: 0;
  padding-bottom: 30px !important;
}

.alert_popup-close {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.alert_popup-title {
  font-family: Archivo, sans-serif;
  color: var(--theme-primary) !important;
  padding: 30px 30px 0;
}

.alert_popup-content .main {
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.3s ease-in-out;
  -o-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
}

.fade {
  -webkit-transition: opacity 0.3s linear;
  -o-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
  opacity: 0;
}

.tab-content {
  position: relative;
  overflow: hidden;
}

.tab-content > .tab-pane {
  position: relative;
  width: 100%;
  top: 0;
  opacity: 1;
  z-index: 1;
}

.tab-content > .tab-pane:not(.active) {
  display: block;
  height: 0;
  opacity: 0;
  z-index: -1;
}

html[dir="rtl"] .page .breadcrumbs_item:after {
  left: -58px;
  right: unset;
}

html[dir="rtl"] .page .media {
  right: unset !important;
  left: -10%;
}

html[dir="rtl"] .section_header .subtitle {
  padding-left: 0;
  padding-right: 60px;
}

html[dir="rtl"] .section_header .subtitle:before {
  left: unset;
  right: 0;
}

html[dir="rtl"] .section_header .subtitle--extended:before {
  right: unset;
  left: calc(100% - 40px);
}

html[dir="rtl"] .link-arrow .icon {
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
  margin-left: 0 !important;
  margin-right: 10px;
}

html[dir="rtl"] .link-arrow:focus .icon,
html[dir="rtl"] .link-arrow:hover .icon {
  margin-right: 15px;
}

html[dir="rtl"] input[type="checkbox"] + label .icon {
  margin-right: 0;
  margin-left: 20px;
}

html[dir="rtl"] .swiper-controls .swiper-button .icon {
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
}

html[dir="rtl"] #scrollTrigger {
  right: unset;
  left: 12px;
}

@media screen and (min-width: 1023.98px) {
  html[dir="rtl"] .page .media {
    left: -18%;
  }
}

@media screen and (min-width: 1279.98px) {
  html[dir="rtl"] .page .media {
    left: 200px;
  }

  html[dir="rtl"] #scrollTrigger {
    right: auto;
    left: 40px;
  }
}

@media screen and (min-width: 1365.98px) {
  html[dir="rtl"] #scrollTrigger {
    right: auto;
    left: 30px;
  }
}

.header {
  will-change: transform;
  position: fixed;
  width: 100%;
  z-index: 1000000;
  top: 0;
  left: 0;
  background-color: var(--theme-secondary);
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border-bottom: 1px solid transparent;
}

.header:hover {
  border-bottom: 1px solid #ffc631;
}

.header.opened {
  height: 100vh;
}

.header.opened,
.header.sticky {
  background-color: var(--theme-secondary);
}

.header--pinned {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.header--unpinned {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}

.header .container {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 15px 20px;
}

.header_trigger {
  width: 30px;
  height: 28px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  position: relative;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.header_trigger .line {
  width: 100%;
  height: 3px;
  background: #ffc631;
  -webkit-transition: width 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
  border-radius: 3px;
}

.header_trigger .line--short {
  width: 50%;
}

.header_trigger.active .line--short {
  width: 100%;
}

.header_nav {
  width: 100%;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.header_nav-list {
  max-height: calc(100vh - 100px);
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
  overflow-y: auto;
}

.header_nav-list_item {
  text-transform: uppercase;
  font-size: 14px;
  font-family: Archivo, sans-serif;
  font-weight: 600;
  color: var(--text-secondary-primary);
}

.header_nav-list_item .nav-item.current,
.header_nav-list_item .nav-link.current {
  color: #ffc631;
}

.header_nav-list_item .dropdown-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  margin: 20px 15px 0 0;
}

.header_nav-list_item .dropdown-toggle {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.header_nav-list_item .dropdown-toggle .icon {
  will-change: transform;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  font-size: 12px;
  margin-bottom: 2px;
  color: #ffc631;
}

.header_nav-list_item .dropdown-toggle:hover .icon,
.header_nav-list_item .dropdown-toggle[aria-expanded="true"] .icon {
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

@media screen and (min-width: 767.98px) {
  .header.opened {
    height: 50vh;
  }

  .header_nav-list {
    max-height: calc(50vh - 100px);
  }
}

.header_nav .nav-link:focus,
.header_nav .nav-link:hover {
  color: #ffc631;
}

@media screen and (min-width: 1023.98px) {
  .header {
    padding: 30px 0;
  }

  .header.sticky {
    padding: 20px 0;
  }

  .header .container {
    padding: 0 20px;
  }

  .header .brand_name,
  .header_trigger {
    display: none;
  }

  .header_nav {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    width: unset;
  }

  .header_nav .nav-link {
    position: relative;
  }

  .header_nav .nav-link:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #ffc631;
    bottom: -6px;
    left: 0;
    -webkit-transition: width 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out;
    transition: width 0.3s ease-in-out;
  }

  .header_nav .nav-link:focus,
  .header_nav .nav-link:hover {
    color: #ffc631;
  }

  .header_nav .nav-link.current {
    color: var(--text-secondary-primary);
  }

  .header_nav .nav-link.current:after {
    width: 100%;
  }

  .header_nav-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    height: unset;
    margin-top: 0;
    overflow-y: unset;
  }

  .header_nav-list .dropdown {
    position: relative;
  }

  .header_nav-list .dropdown:last-of-type .dropdown-menu {
    right: 0;
  }

  .header_nav-list .dropdown-menu {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    position: absolute;
    z-index: 100;
    opacity: 0;
    max-height: -webkit-fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
    text-align: left;
    visibility: hidden;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
    padding: 20px 0 0;
  }

  .header_nav-list .dropdown-menu.active {
    opacity: 1;
    visibility: visible;
  }

  .header_nav-list .dropdown-list {
    margin: 0;
    background-color: var(--theme-secondary);
    padding: 20px;
  }

  .header_nav-list .dropdown-item.current,
  .header_nav-list .dropdown-item:hover {
    color: #ffc631;
  }

  html[dir="rtl"] .header .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  html[dir="rtl"] .header_nav-list .nav-link:after {
    left: auto;
    right: 0;
  }

  html[dir="rtl"] .header_nav-list .dropdown:last-of-type .dropdown-menu {
    right: unset;
    left: 0;
  }
}

@media screen and (min-width: 1169.98px) {
  .header {
    padding-top: 60px;
  }

  .header .brand_name {
    display: block;
  }
}

@media screen and (min-width: 1330px) {
  .header .container {
    padding: 0;
  }
}

.about {
  padding-bottom: 80px;
}

.about_article .media {
  margin-bottom: 30px;
  height: 220px;
  border-radius: 12px;
}

.about_article .media img {
  height: 100%;
  border-radius: 12px;
}

.about_article-header {
  margin-bottom: 20px;
  margin-top: 30px;
}

.about_article-header:first-of-type {
  margin-top: 0;
}

.about_article .checklist {
  margin-top: 27px;
}

.about_article .checklist,
.about_article-text {
  color: #202c38;
}

/* Scope of Work Styles */
.scope-section {
  margin-bottom: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #ffc631;
}

.scope-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffc631;
  margin-bottom: 15px;
  font-family: "Archivo", sans-serif;
}

.scope-subsection {
  margin-bottom: 20px;
}

.scope-subsection:last-child {
  margin-bottom: 0;
}

.scope-subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-secondary-primary);
  margin-bottom: 10px;
  font-family: "Archivo", sans-serif;
}

.scope-list {
  list-style: none;
  padding-left: 0;
}

.scope-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.scope-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ffc631;
  font-weight: bold;
  font-size: 1.2em;
}

.scope-list li:last-child {
  margin-bottom: 0;
}

/* Data Table Styles */

.table-cont {
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.data-table thead tr {
  background-color: #f5f5f5;
}

.data-table th {
  padding: 12px;
  border: 1px solid #ddd;
  text-align: left;
  font-weight: 600;
}

.data-table td {
  padding: 12px;
  border: 1px solid #ddd;
}

.data-table tbody tr:nth-child(even) {
  background-color: #fafafa;
}

.data-table tbody tr:hover {
  background-color: #f0f0f0;
}

@media (max-width: 767px) {
  .scope-section {
    padding: 15px;
    margin-bottom: 20px;
  }

  .scope-title {
    font-size: 1.1rem;
  }

  .scope-subtitle {
    font-size: 1rem;
  }
}

.about_aside {
  margin-top: 30px;
}

.about_aside .wrapper {
  height: 100%;
  padding: 20px;
}

.about_aside .wrapper--helper {
  width: 100%;
}

.about_info {
  margin-bottom: 30px;
}

.about_info .wrapper {
  border: 1px solid #c8c8c8;
  width: 100%;
  border-radius: 12px;
}

.about_info-title {
  margin-bottom: 30px;
}

.about_info-table {
  width: 100%;
}

.about_info-table_row {
  display: table;
}

.about_info-table_row .property {
  color: #162739;
  width: max-content;
  white-space: nowrap;
}

.about_info-table_row .value {
  text-transform: uppercase;
  font-size: 18px;
  line-height: 23px;
  font-family: Archivo, sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
}

.about_info-table_row .property,
.about_info-table_row .value {
  width: 100%;
  display: block;
  text-align: left;
}

.about_info .link {
  margin-top: 10px;
  font-family: Archivo, sans-serif;
  font-weight: 600;
}

.about_contact {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}

.about_contact .contact-info,
.about_contact-title {
  margin-bottom: 30px;
}

.about_contact .socials_item-link {
  background-color: #ffc631;
  color: var(--theme-primary);
}

html[dir="rtl"] .about_info-table_row .property,
html[dir="rtl"] .about_info-table_row .value {
  text-align: right;
}

@media screen and (min-width: 567.98px) {
  .about_aside .wrapper {
    padding: 20px;
  }

  .about_info-table_row {
    padding-bottom: 5px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }

  .about_info-table_row .property,
  .about_info-table_row .value {
    width: unset;
    display: table-cell;
    text-align: unset;
  }

  .about_info-table_row .property {
    margin-top: -5px;
  }

  .about_info-table_row .value {
    text-align: right;
  }

  .about_info .link {
    margin-top: 10px;
    font-family: Archivo, sans-serif;
    font-weight: 600;
  }

  html[dir="rtl"] .about_info-table_row .value {
    text-align: left;
  }
}

@media screen and (min-width: 767.98px) {
  .about_article .media {
    height: 430px;
  }

  .about_aside {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    margin-top: 60px;
  }

  .about_aside-item {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 1023.98px) {
  .about_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 40px;
  }

  .about_aside {
    grid-template-columns: 1fr;
    width: 410px;
    margin-top: 0;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    grid-gap: 60px;
  }

  .about_article {
    width: calc(100% - 450px);
  }
}

@media screen and (min-width: 1279.98px) {
  .about_content {
    gap: 60px;
  }

  .about_article-header {
    margin-top: 40px;
  }
}

.contact-info {
  max-width: 285px;
  margin-bottom: 40px;
}

.contact-info_group {
  font-family: Archivo, sans-serif;
  margin-bottom: 30px;
}

.contact-info_group:last-of-type {
  margin-bottom: 0;
}

.contact-info_group span {
  display: block;
}

.contact-info_group .name {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 8px;
  color: #a9a9a9;
  font-weight: 500;
}

.contact-info_group .content {
  font-weight: 600;
  font-size: 18px;
  line-height: 23px;
}

.contact-info_group .content .link {
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.contact-info_group .content .link:focus,
.contact-info_group .content .link:hover {
  color: #0a3370;
}

@media screen and (min-width: 1023.98px) {
  .contact-info {
    margin-bottom: 87px;
  }

  .contact-info_group {
    margin-bottom: 40px;
  }
}

.feedback_header {
  color: #000810;
  margin-bottom: 40px;
}

.feedback_header .text {
  margin: 20px 0 30px;
  color: #202c38;
}

.feedback_slider {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.feedback_slider-slide {
  height: auto;
  border: 1px solid #c8c8c8;
  border-radius: 12px;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}

.feedback_slider-slide .main {
  color: #000810;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-style: italic;
}

.feedback_slider-slide .media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 20px;
}

.feedback_slider-slide .media .avatar {
  /* display: none; */
  border-radius: 12px;

}

.feedback_slider-slide .media_info {
  font-family: Archivo, sans-serif;
}

.feedback_slider-slide .media_info .name {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 18px;
  line-height: 23px;
  color: #000810;
}

.feedback_slider-slide .media_info .company {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: #202c38;
}

.feedback_slider-slide .media_info .company,
.feedback_slider-slide .media_info .name {
  display: block;
}

@media screen and (min-width: 567.98px) {
  .feedback_slider-slide .media {
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .contact .socials_item-link {
    width: 50px;
    height: 50px;
    font-size: 26px;
    line-height: 30px;
  }

  .feedback_slider-slide .media .avatar {
    display: block;
    border-radius: 12px;
    width: 60px !important;
  }
}

@media screen and (min-width: 767.98px) {
  .feedback_slider {
    gap: 30px;
  }

  .feedback_slider-slide {
    padding: 40px;
  }
}

@media screen and (min-width: 1023.98px) {
  .feedback .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 60px;
  }

  .feedback .container.reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .feedback_header {
    width: 490px;
  }

  .feedback_slider {
    width: calc(100% - 550px);
    gap: 50px;
    max-width: 630px;
  }

  .feedback_slider-slide {
    padding: 60px;
  }

  .feedback_slider .swiper-pagination {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-left: 11px;
  }

  .feedback_header,
  .feedback_slider {
    margin: 0;
  }

  html[dir="rtl"] .feedback_slider .swiper-pagination {
    margin-left: 0;
    margin-right: 11px;
  }
}

.footer {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: var(--theme-secondary);
  color: var(--text-secondary-primary);
  transition: all 0.2s ease-in-out;
  border-top: 1px solid transparent;
}

.footer:hover {
  border-top: 1px solid #ffc631;
}

.footer_main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}

 .custom-margin-top {
  margin-top: 0px;
}

/* For screens 1024px and below */
@media (max-width: 1024px) {
  .custom-margin-top {
    margin-top: 0px;
  }
}

.footer_main-block.gap-top {
  margin-top: 25px;
}

@media (max-width: 768px) {
  .footer_main-block.gap-top {
    margin-top: 0px;
  }
}

.footer_main-block_title {
  margin-bottom: 20px;
}

.footer_main-block_form {
  margin-top: 20px;
}

.footer_main-block_form .btn,
.footer_main-block_form .field {
  width: 100%;
}

.footer_main-block_form .field:focus {
  border-color: #ffc631;
}

.footer_main-block_form .btn .icon {
  display: none;
}

.footer_main-block_form .btn:focus,
.footer_main-block_form .btn:hover {
  background: #ffd464;
}

.footer_main-block .group-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: start;
  gap: 10px;
  font-size: 16px;
  margin-bottom: 20px !important;
}

.footer_main-block .group-wrapper .icon {
  color: #ffc631;
  font-size: 18px;
  margin-top: 5px;
}

.footer_main-block .group-wrapper .group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer_main-block .group-wrapper .group a,
.footer_main-block .group-wrapper .group span {
  display: inline-block;
}

.footer_main-block .group-wrapper .group a {
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.footer_main-block .group-wrapper .group a:focus,
.footer_main-block .group-wrapper .group a:hover {
  opacity: 0.8;
}

.footer_main-block_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}

.footer_main-block_nav .list-item .link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: Archivo, sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
  gap: 5px;
}

.footer_main-block_nav .list-item .link.current {
  color: #ffc631;
}

.footer_main-block_nav .list-item .link .icon {
  font-size: 10px;
  color: #ffc631;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.footer_main-block_nav .list-item .link:focus .icon,
.footer_main-block_nav .list-item .link:hover .icon {
  color: #0a3370;
}

.footer_secondary {
  border-top: 1px solid #a9a9a9;
  margin-top: 30px;
  padding-top: 30px;
}

.footer_secondary-copyright {
  text-align: center;
  margin: 0 0 40px;
}

.footer_secondary-copyright span {
  display: inline-block;
}

.footer_secondary .socials {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.footer_secondary .socials_item-link {
  background: #ffc631;
  color: var(--theme-primary);
}

.footer-main-group-title {
  display: flex;
  gap: 5px;
  align-items: sart;
}
.footer-main-group-title h3 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--text-secondary-primary);
  text-decoration: underline;
}

.footer-main-group-title i,
.footer-main-group-title i {
  color: #ffc631;
  font-size: 12px;
  margin-top: 3px;
}

html[dir="rtl"] .footer_main-block_nav .list-item .link .icon {
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
}

@media screen and (min-width: 567.98px) {
  .footer_main-block_subtitle {
    max-width: 450px;
  }

  .footer_main-block_form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .footer_main-block_form .field {
    margin-bottom: 0;
  }

  .footer_main-block_form .btn {
    width: auto;
  }

  .footer_main-block .group-wrapper {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  .footer_main-block .group-wrapper {
    margin-bottom: 0;
    margin-right: 30px;
  }

  .footer_main-block_nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 40px;
  }

  .footer_secondary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
  }

  .footer_secondary-copyright {
    margin: 0;
    text-align: unset;
  }

  html[dir="rtl"] .footer_main-block .group-wrapper:first-of-type {
    margin-right: 0;
    margin-left: 30px;
  }
}

@media screen and (min-width: 767.98px) {
  .footer_main {
    padding-bottom: 40px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    gap: 40px 80px;
  }

  .footer_main-block {
    width: calc(50% - 40px);
  }

  .footer_main-block:nth-of-type(3) {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .footer_main-block .group-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .footer_main-block .group-wrapper:first-of-type {
    margin-right: 0;
    margin-bottom: 0px;
  }

  .footer_main-block_nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }

  .footer_main-block_form {
    margin-top: 40px;
  }

  .footer_main-block_form .btn {
    width: 54px !important;
    padding: 0;
  }

  .footer_main-block_form .btn .text {
    display: none;
  }

  .footer_main-block_form .btn .icon {
    display: inline-block;
  }

  .footer_main-block_form .field {
    width: calc(100% - 54px);
  }

  .footer_secondary {
    margin: 0;
    padding-top: 30px;
  }

  .footer_secondary-copyright {
    max-width: 350px;
  }
}

@media screen and (min-width: 1023.98px) {
  .footer_main-block {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .footer_main-block:first-of-type {
    max-width: 280px;
  }

  .footer_main-block:nth-of-type(3) {
    -webkit-box-ordinal-group: unset;
    -ms-flex-order: unset;
    order: unset;
  }
}

@media screen and (min-width: 1199.98px) {
  .footer_main {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .footer_main-block:last-of-type {
    max-width: 330px;
  }
}
/*# sourceMappingURL=../sourcemaps/single-past-performance.css.map */

.mob-but-only {
  display: flex;
}

@media (min-width: 1023.98px) {
  .mob-but-only {
    display: none !important;
  }
}

.tab-desktop-but-only {
  display: none !important;
}

@media (min-width: 1023.98px) {
  .tab-desktop-but-only {
    display: flex !important;
  }
}

/* Beer Sliders Grid Layout */
.beer-sliders-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin: 0px 20px 40px 20px;
}

/* Desktop: 2 columns */
@media (min-width: 768px) {
  .beer-sliders-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* Large Desktop: 2 columns with more spacing */
@media (min-width: 1200px) {
  .beer-sliders-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1300px;
    margin: 40px auto;
  }
}

/* Individual beer slider styling */
.beer-sliders-grid .beer-slider {
  width: 100%;
  height: 450px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 767px) {
  .beer-sliders-grid .beer-slider {
    height: auto;
  }
}

.beer-sliders-grid .beer-slider:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.beer-sliders-grid .beer-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  object-position: center center;
}

/* Change the slider handle */
.beer-handle {
  background-color: #ffc631; /* handle background */
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.beer-range:focus ~ .beer-handle {
  background-color: #ffc631;
}

.beer-slider[data-beer-label]::after,
.beer-reveal[data-beer-label]::after {
  content: attr(data-beer-label);
  position: absolute;
  top: 1.5rem;
  line-height: 1;
  padding: 0.5rem;
  border-radius: 0.125rem;
  background: #ffc631;
  color: #000;
  font-weight: bold;
  font-size: 14px;
}

img {
  border-radius: 10px;
}

/* Page fade-in animation */
body {
  opacity: 1;
  background: white;
}

/* Prevent flash of unstyled content */
.page-content {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.7s ease-in-out;
}

.page-content.page-loaded {
  opacity: 1;
  transform: translateY(0);
}

.beer-slider-wrapper {
  position: relative;
}

.beer-activate-layer {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: transparent;
}

/* Hide activation layer on desktop */
@media (min-width: 768px) {
  .beer-activate-layer {
    display: none;
  }
}
