/**
 * 
 * General
 * 
 */
:root {
  --primary-color: #112D1D;
  --secondary-color: #FED700;
  --black-color: #121212;
  --white-color: #ffffff;
  --light-gray-color: #f8f9fa;
  --gray-color: #6c757d;
}
html, body {
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
  font-family: "Ubuntu", sans-serif;
}
.content {
  flex: 1 0 auto;
}
.footer {
  flex-shrink: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
}
p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.625rem;
}
img {
  max-width: 100%;
}
::selection {
  background-color: #a3cbb3;
  color: var(--white-color, #ffffff);
}
.btn {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5rem;
  width: fit-content;
  padding: 0.5rem 0.875rem;
  border-radius: 0;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.btn-back {
  padding: 0;
  display: flex;
  align-items: center;
}
.btn-back:hover,
.btn-back:focus,
.btn-back:active {
  text-decoration: underline;
  text-underline-offset: 0.125rem;
}
.btn-back svg {
  width: auto;
  height: 1.5rem;
  stroke-width: 1.5;
  margin-right: 0.5rem;
}
.btn-lg {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.5rem;
  padding: 0.75rem 1.75rem;
}
.btn-icon {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.btn-icon svg {
  width: auto;
  height: 1.125rem;
  stroke-width: 1.5;
}
.btn-transparent {
  background-color: transparent;
  color: var(--black-color, #121212);
  border-color: transparent;
}
.btn-transparent:hover,
.btn-transparent:focus,
.btn-transparent:active {
  background-color: transparent !important;
  color: var(--black-color, #121212) !important;
  border-color: transparent !important;
}
.btn-white {
  background-color: var(--white-color, #ffffff);
  color: var(--black-color, #121212);
  border-color: var(--white-color, #ffffff);
}
.btn-white:hover,
.btn-white:focus,
.btn-white:active {
  background-color: #e7e7e7 !important;
  border-color: #e7e7e7 !important;
  color: var(--black-color, #121212) !important;
}
.btn-primary {
  background-color: var(--primary-color, #112D1D);
  color: var(--white-color, #ffffff);
  border-color: var(--primary-color, #112D1D);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: #1f4530 !important;
  border-color: #1f4530 !important;
  color: var(--white-color, #ffffff) !important;
}
.btn-primary-outline {
  background-color: transparent;
  color: var(--primary-color, #112D1D);
  border-color: var(--primary-color, #112D1D);
}
.btn-primary-outline:hover {
  background-color: var(--primary-color, #112D1D) !important;
  color: var(--white-color, #ffffff) !important;
  border-color: var(--primary-color, #112D1D) !important;
}
.btn-secondary {
  background-color: var(--secondary-color, #FED700);
  color: var(--black-color, #121212);
  border-color: var(--secondary-color, #FED700);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
  background-color: #f2c200 !important;
  border-color: #f2c200 !important;
  color: var(--black-color, #121212) !important;
}
.btn-blur {
  border-color: transparent;
  background: rgba(255, 255, 255, 0.3);
  color: var(--white-color, #ffffff);
  backdrop-filter: blur(6px);
}
.btn-blur:hover,
.btn-blur:focus,
.btn-blur:active {
  background: rgba(255, 255, 255, 0.5) !important;
  color: var(--white-color, #ffffff) !important;
}
.form-control {
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #ced4da;
  color: var(--black-color, #121212);
}
.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color, #112D1D);
}
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 3rem;
  height: 3rem;
  background: var(--primary-color, #112D1D);
  color: var(--white-color, #ffffff);
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
#back-to-top:hover,
#back-to-top:focus,
#back-to-top:active {
  background: #1f4530;
}
.invalid-feedback {
  margin-top: 0.5rem;
}
.form-control.is-invalid:focus, .was-validated .form-control:invalid:focus {
  box-shadow: none;
}
.oc-flash-message h1,
.oc-flash-message h2,
.oc-flash-message h3,
.oc-flash-message h4,
.oc-flash-message h5,
.oc-flash-message h6 {
  font-family: "Ubuntu", sans-serif;
}
.oc-progress-bar {
  background: var(--secondary-color, #FED700);
}
.anchor-link {
  color: var(--black-color, #121212);
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.anchor-link:hover,
.anchor-link:focus,
.anchor-link:active {
  color: #6c757d;
  text-decoration: underline;
}



/**
 * Navigation
 */
.header {
  background-color: var(--primary-color, #112D1D);
  background-image: linear-gradient(15deg, rgba(17, 45, 29, 1) 0%, rgb(31, 69, 47) 120%);
  color: var(--white--color, #ffffff);
}
.header .navbar {
  padding: 0.75rem 0;
}
.header .navbar-brand {
  padding: 0;
}
.header .navbar-brand img {
  max-width: 214px;
}
.header .navbar-nav .nav-link {
  color: var(--white-color, #ffffff);
  font-size: 1rem;
  font-weight: 300;
}
.header .navbar-nav .nav-link:hover,
.header .navbar-nav .nav-link:focus,
.header .navbar-nav .nav-link:active {
  color: #e6e8ea;
}
.header .navbar-nav .btn {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  width: fit-content;
}
.header .navbar-nav .btn svg {
  width: auto;
  height: 1.25rem;
}
.header-top>.container {
  padding: 0.75rem calc(var(--bs-gutter-x)* .5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header-top .header-top-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header-top .header-top-left a {
  color: var(--white-color, #ffffff);
  display: flex;
  align-items: center;
}
.header-top .header-top-left a:hover,
.header-top .header-top-left a:focus,
.header-top .header-top-left a:active {
  color: #e6e8ea;
}
.header-top .header-top-left svg {
  width: auto;
  height: 1rem;
  fill: var(--white-color, #ffffff);
}
.header-top .header-top-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header-top .header-top-right ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}
.header-top .header-top-right ul li a {
  color: var(--white-color, #ffffff);
  font-size: 0.875rem;
  font-weight: 300;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.header-top .header-top-right ul li a:hover,
.header-top .header-top-right ul li a:focus,
.header-top .header-top-right ul li a:active {
  color: #e6e8ea;
}
.header-top .header-top-right ul li svg {
  width: auto;
  height: 1rem;
}
.header .navbar-toggler {
  border: none;
  border-radius: 0;
  height: 48px;
}
.header .navbar-toggler:focus {
  box-shadow: none;
}
.header .navbar-collapse>.container {
  display: flex;
  flex-basis: auto;
  flex-grow: 1;
  align-items: center;
}
.header-absolute {
  position: absolute;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  background-image: none;
  /* color: var(--black-color, #121212); */
}
.header-absolute::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(18, 18, 18, 0) 0%, rgba(18, 18, 18, 0.8) 120%);
}
.header-absolute .header-top,
.header-absolute .navbar {
  position: relative;
  z-index: 2;
}
/* .header-absolute .nav-item .nav-link {
  color: var(--black-color, #121212);
}
.header-absolute .header-top .header-top-right ul li a {
  color: var(--black-color, #121212);
}
.header-absolute .header-top .header-top-left svg {
  fill: var(--black-color, #121212);
} */
.header .navbar-expand-lg .navbar-nav {
  gap: 1rem;
}



/**
 * Breadcrumb
 */
.breadcrumb {
  padding: 6rem 0;
  margin-bottom: 0;
}
.breadcrumb span {
  text-transform: uppercase;
  font-size: 0.9375rem;
  font-weight: 300;
  display: block;
  margin-bottom: 1rem;
  letter-spacing: 0.1rem;
  color: var(--gray-color, #6c757d);
}
.breadcrumb .breadcrumb-title {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 3rem;
  margin-bottom: 0;
}



/**
 * Section
 */
.section-subtitle {
  text-transform: uppercase;
  font-size: 0.9375rem;
  font-weight: 300;
  display: block;
  margin-bottom: 0.75rem;
  letter-spacing: 0.1rem;
  color: var(--gray-color, #6c757d);
}
.section-title,
.section-title h1,
.section-title h2,
.section-title h3,
.section-title h4,
.section-title h5,
.section-title h6 {
  font-size: 2.25rem;
  line-height: 3rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.section-title-2 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.section-padding {
  padding: 4rem 0;
}
.section-padding-bottom {
  padding-bottom: 4rem;
}
.section-padding-top {
  padding-top: 4rem;
}




/**
 * Hero
 */
.hero {
  position: relative;
  background-image: url(../images/hero-bg.jpeg);
  background-size: cover;
  background-position: center;
  color: var(--white-color, #ffffff);
  height: 44rem;
  display: flex;
  align-items: flex-end;
  padding: 6rem 0;
  animation-name: zoomBackground;
  animation-duration: 8s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes zoomBackground {
  from {
    background-size: 100%;
  }
  to {
    background-size: 110%; /* Adjust the value as needed for desired zoom level */
  }
}

.hero .hero-content {
  position: relative;
  z-index: 99;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(18, 18, 18, 0.1) 0%, rgba(18, 18, 18, 0.8) 100%);
}
.hero .hero-title h1 {
  color: var(--white-color, #ffffff);
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.hero .hero-subtitle p {
  color: var(--white-color, #ffffff);
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.75rem;
  margin-bottom: 1.25rem;
  max-width: 85%;
}
.hero .btn-transparent {
  color: var(--white-color, #ffffff);
}
.hero .btn-transparent:hover,
.hero .btn-transparent:focus,
.hero .btn-transparent:active {
  color: #e6e8ea !important;
  text-decoration: underline;
}



/**
 * Why us
 */
.why-us .why-us-images {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 1.5rem;
  overflow: hidden;
  height: 38rem;
}
.why-us .why-us-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-us .why-us-images .why-us-image {
  width: 55%;
  height: 85%;
}
.why-us .why-us-images .why-us-image:nth-child(2) {
  width: 45%;
  height: 100%;
}
.why-us .why-us-images .why-us-image:nth-child(2) picture:first-child img {
  height: 70%;
}
.why-us .why-us-images .why-us-image:nth-child(2) picture:last-child img {
  height: 30%;
  object-fit: contain;
  padding-top: 1rem;
}
.why-us .why-us-content {
  max-width: 80%;
  margin-left: auto;
  padding-top: 4rem;
}
.why-us .why-us-content .why-us-text {
  margin-bottom: 1.5rem;
}



/**
 * Services
 */
.services-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-image: linear-gradient(15deg, rgba(17, 45, 29, 1) 0%, rgb(31, 69, 47) 100%);
  color: var(--white-color, #ffffff);
}
.services-section::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 4rem;
  left: -10rem;
  right: 0;
  bottom: 0;
  background: url(../images/logo-symbol.png) no-repeat;
  background-size: 30%;
  background-position: left top;
  opacity: 0.04;
}
.services-section .services-section-content {
  position: relative;
  z-index: 99;
}
.services-section .contact-info {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}
.services-section .contact-info li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white-color, #ffffff);
  text-decoration: none;
  font-weight: 300;
}
.services-section .contact-info li a:hover,
.services-section .contact-info li a:focus,
.services-section .contact-info li a:active {
  color: #e6e8ea;
}
.services-section .contact-info li svg {
  width: auto;
  height: 1.25rem;
}
.services-section .splide {
  /* position: absolute;
  z-index: 99;
  padding-left: 6rem;
  margin-right: -8rem; */
  position: relative;
  z-index: 99;
}
.services-section .splide .splide__track {
  clip-path: inset(-100vw -100vw -100vw 0);
  overflow: visible;
}
.service-card {
  position: relative;
  overflow: hidden;
}
.service-card .service-card-image {
  position: relative;
  overflow: hidden;
  height: 29rem;
  width: 100%;
}
.service-card .service-card-image::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0) 0%, rgba(18, 18, 18, 1) 100%);
}
.service-card .service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.service-card .service-card-content {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  padding: 2rem;
}
.service-card .service-card-content .service-card-title {
  color: var(--white-color, #ffffff);
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.service-card .service-card-content .service-card-text {
  color: var(--white-color, #ffffff);
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1.5rem;
  margin-bottom: 0;
}
.service-card:hover .service-card-image img,
.service-card:focus .service-card-image img
.service-card:active .service-card-image img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
}




/**
 * Image Text Section
 */
.img-txt-section .img-txt-section-content a {
  color: var(--black-color, #121212);
  text-decoration: none;
}
.img-txt-section .img-txt-section-content a:hover,
.img-txt-section .img-txt-section-content a:focus,
.img-txt-section .img-txt-section-content a:active {
  text-decoration: underline;
}
.img-txt-section .img-txt-section-content .btn {
  color: var(--white-color, #ffffff);
}
.img-txt-section .img-txt-section-content .btn:hover,
.img-txt-section .img-txt-section-content .btn:focus,
.img-txt-section .img-txt-section-content .btn:active {
  text-decoration: none;
}
.img-txt-section .img-txt-section-content {
  width: 80%;
  padding: 2rem 0;
}
.img-txt-section .img-txt-section-content p {
  text-align: justify;
}
.img-txt-section .img-txt-section-text {
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.img-txt-section .img-txt-section-image {
  position: relative;
  overflow: hidden;
  height: 32rem;
}
.img-txt-section .img-txt-section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-txt-section .img-txt-section-row:nth-child(even) {
  flex-direction: row-reverse;
}



/**
 * Projects slider
 */
.projects-slider {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background: #F0F6EB;
  color: var(--black-color, #121212);
}
.projects-slider::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 2rem;
  right: -10rem;
  left: 0;
  bottom: 0;
  background: url(../images/logo-symbol-white.png) no-repeat;
  background-size: 40%;
  background-position: right top;
  opacity: 0.5;
}
.projects-slider .projects-slider-content {
  position: relative;
  z-index: 99;
}
.projects-slider .projects-slider-content .projects-slider-subtitle {
  margin-bottom: 0;
}
.project-card {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.project-card .project-card-image {
  position: relative;
  overflow: hidden;
  height: 24rem;
  width: 100%;
}
.project-card .project-card-image::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0) 0%, rgba(18, 18, 18, 1) 100%);
}
.project-card .project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.project-card .project-card-content {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  padding: 2rem;
}
.project-card .project-card-content .project-card-title {
  color: var(--white--color, #ffffff);
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.project-card .project-card-content .project-card-text {
  color: var(--white--color, #ffffff);
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1.5rem;
  margin-bottom: 0;
}
.project-card:hover .project-card-image img,
.project-card:focus .project-card-image img
.project-card:active .project-card-image img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
}



/**
 * Partner CTA
 */
.partner-cta {
  padding: 4rem 0;
  background-image: linear-gradient(15deg, rgba(17, 45, 29, 0.8) 0%, rgba(17, 45, 29, 0.8) 100%), url(https://s3-alpha-sig.figma.com/img/207d/086a/305c69c35186fb8ec477bd7f13d27a7d?Expires=1711324800&Key-Pair-Id=APKAQ4GOSFWCVNEHN3O4&Signature=N3YfO9C3CaW1bW4Xap0dYisvij47rBrEvkBvSC4iXmm06Gqp6qJxN2ja2dgAPqXjvx55oYy0231O~kHAviuDgMOALPFVBOr5ObKT~HKt03OcqcdgSbgrafmlLNcsBfO2opXmsOgFZj4lNw3CNc3VwGrEsx4zD~VD-Wz6pnDDdXHX5LQO3qOqD6Cu2ejTYlxDL1Z2khQ4V-MrUYwGiiEGpEebn67fKmTzESyrA48vvFQfE~jlVsFFRU12YDnPrrCyasQuTUQdzlP~cqU0D4GdM5R4N88~5nyDuwFYFLz1XMWamOExGmXnisB97J~FFL7qpHN24CHzqiC49v7fcYxu6g__);
  background-size: cover;
  background-position: center;
  color: var(--white-color, #ffffff);
}
.partner-cta .partner-cta-title h4 {
  font-size: 2.25rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.partner-cta .partner-cta-text {
  max-width: 70%;
  margin-bottom: 1.5rem;
}
.partner-cta .partner-cta-image {
  position: relative;
  overflow: hidden;
  width: 20rem;
}
.partner-cta .partner-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}



/**
 * Contact
 */
.contact-person {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 0;
}
.contact-person .contact-person-image {
  width: 10rem;
  height: 10rem;
  overflow: hidden;
}
.contact-person .contact-person-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.contact-person .contact-person-name {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
}
.contact-person .contact-person-role {
  font-size: 0.875rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}
.contact-person .contact-person-phone,
.contact-person .contact-person-email {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--black-color, #121212);
  text-decoration: none;
  font-weight: 300;
}
.contact-person svg,
.contact-person svg {
  width: auto;
  height: 1.25rem;
}
.contact-person .contact-person-address {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.contact-section .contact-section-content .contact-section-content-text {
  margin-bottom: 1.5rem;
  max-width: 100%;
}



/**
 * Instagram Feed
 */
.ig-feed {
  overflow: hidden;
}
.ig-feed .ig-feed-images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16%, 1fr));
  grid-auto-rows: 1fr;
  overflow: hidden;
  width: 100%;
}
.ig-feed .ig-feed-images::before {
  content: '';
  width: 0;
  padding-bottom: 100%;
  grid-row: 1 / 1;
  grid-column: 1 / 1;
}
.ig-feed .ig-feed-images > *:first-child {
  grid-row: 1 / 1;
  grid-column: 1 / 1;
}
.ig-feed .ig-feed-images a:hover .ig-feed-image::before {
  opacity: 1;
}
.ig-feed .ig-feed-images .ig-feed-image {
  height: 100%;
  position: relative;
  overflow: hidden;
}
.ig-feed .ig-feed-images .ig-feed-image::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  background-color: rgba(18, 18, 18, 0.5);
  background-image: url(../images/instagram.svg);
  background-size: 10%;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.05s ease-in-out;
  -webkit-transition: all 0.05s ease-in-out;
}
.ig-feed .ig-feed-images .ig-feed-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}




/**
 * Footer
 */
.footer .footer-content {
  padding: 2rem 0;
}
.footer .footer-copyright {
  padding: 1rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.footer .footer-logo {
  display: flex;
  align-items: center;
  justify-content: center; 
  margin-bottom: 1.5rem;
}
.footer .footer-logo img {
  max-width: 248px;
}
.footer .footer-copyright p {
  margin-bottom: 0;
  color: var(--gray-color, #6c757d);
  font-size: 0.875rem;
  font-weight: 400;
}
.footer .footer-copyright a {
  color: var(--gray-color, #6c757d);
  /* text-decoration: none; */
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.footer .footer-copyright a:hover,
.footer .footer-copyright a:focus,
.footer .footer-copyright a:active {
  color: var(--black-color, #121212);
}
.footer .footer-copyright ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer .footer-copyright ul li {
  margin-right: 0.5rem;
}
.footer .footer-copyright ul li:last-child {
  margin-right: 0;
}
.footer .footer-copyright ul li::after {
  content: "|";
  margin-left: 0.5rem;
  color: #eee;
}
.footer .footer-copyright ul li:last-child::after {
  content: "";
}
.footer .footer-copyright ul li a {
  color: var(--gray-color, #6c757d);
  font-size: 0.875rem;
  text-decoration: underline !important; 
  transition: all 0.2s ease-in-out;
}
.footer .footer-copyright ul li a:hover,
.footer .footer-copyright ul li a:focus,
.footer .footer-copyright ul li a:active {
  color: var(--black-color, #121212);
}
.footer .footer-item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}
.footer .footer-item ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.footer .footer-item ul li a {
  color: var(--black-color, #121212);
  font-family: "Playfair Display", serif;
  font-size: 1.125rem;
}
.footer .footer-socials {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .footer-socials ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 1rem;
}
.footer .footer-socials ul li a {
  color: var(--black-color, #121212);
  font-size: 1.25rem;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.footer .footer-socials ul li svg {
  width: auto;
  height: 1.25rem;
}



/**
 * CTA Banner
 */
.cta-banner {
  background: linear-gradient(15deg, rgba(17, 45, 29, 1) 0%, rgb(31, 69, 47) 120%);
  color: var(--white--color, #ffffff);
  padding: 6rem 0;
}
.cta-banner a {
  color: var(--white--color, #ffffff);
  text-decoration: none;
  font-weight: 300;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.cta-banner .cta-banner-content a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cta-banner .cta-banner-button {
  font-size: 1.25rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4rem;
  min-width: 4rem;
  border-radius: 0;
  overflow: hidden;
  background: var(--white-color, #ffffff);
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.cta-banner .cta-banner-button svg {
  width: auto;
  height: 1.75rem;
  stroke-width: 1.5;
  stroke: var(--primary-color, #112D1D);
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.cta-banner .cta-banner-button:hover svg {
  transform: translateX(0.25rem);
  stroke: var(--primary-color, #112D1D);
}
.cta-banner .cta-banner-content .cta-banner-title {
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 3rem;
  margin-bottom: 0;
  max-width: 60%;
}
.cta-banner .cta-banner-content .cta-banner-subtitle {
  text-transform: uppercase;
  font-weight: 300;
  display: block;
  margin-bottom: 1rem;
  letter-spacing: 0.1rem;
}



/**
 * 
 * Services page
 * 
 */
.services .service-card {
  margin-bottom: 1.5rem;
}



/**
 * 
 * Service page
 * 
 */
.service-header {
  position: relative;
  padding: 6rem 0;
  height: 40rem;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  color: var(--white-color, #ffffff);
}
.service-header::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(18, 18, 18, 0.2) 30%, rgba(18, 18, 18, 1) 100%);
}
.service-header .service-header-content {
  position: relative;
  z-index: 99;
}
.service-header .service-header-content .btn-back {
  color: var(--light-gray-color, #f8f9fa);
}
.service-header .service-header-content .service-header-title {
  font-size: 4rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.service-header .service-header-content .service-header-description {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 2rem;
  margin-bottom: 1.5rem;
  max-width: 70%;
}
.service-gallery {
  padding: 1rem 0 4rem;
  position: relative;
  overflow-x: hidden;
}
.service-gallery .splide {
  /* position: absolute;
  z-index: 99;
  padding-left: 6rem;
  margin-right: -8rem; */
  padding-top: 2rem;
  position: relative;
}
.service-gallery .splide .splide__track {
  clip-path: inset(-100vw -100vw -100vw 0);
  overflow: visible;
}
.service-gallery .splide .service-gallery-item {
  position: relative;
  overflow: hidden;
  height: 26rem;
}
.service-gallery .splide .service-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.service-gallery .splide__arrows.splide__arrows--ltr {
  position: absolute;
  right: 3rem;
  top: -3.75rem;
}
.service-gallery .splide__arrow--next {
  right: -3rem;
}
.service-gallery .splide__arrow--prev {
  left: -2rem;
}
.service-gallery .splide__arrow {
  background: #e7e7e7 !important;
  border: none;
  border-radius: 0;
  height: 2.25rem;
  width: 2.25rem;
  transition: all 0.2s ease-in-out;
}
.service-gallery .splide__arrow:hover,
.service-gallery .splide__arrow:focus,
.service-gallery .splide__arrow:active {
  background: #dfdfdf !important;
  border: none;
}
.service-gallery .splide__arrow svg {
  stroke: rgba(0, 0, 0, 0.6);
  width: auto;
  height: 1.25rem;
}


/**
 * 
 * Thank you page
 * 
 */
.thank-you {
  padding: 6rem 0 6rem;
}
.thank-you svg {
  max-width: 12rem;
  height: auto;
  margin-bottom: 3rem;
}
.thank-you .thank-you-title {
  text-align: center;
}
.thank-you .thank-you-title h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 4rem;
  color: var(--black);
  margin-bottom: 1rem;
}
.thank-you .thank-you-title p {
  font-size: 1rem;
  line-height: 1.75rem;
  margin: 0 auto;
}


/**
 * 
 * About page
 * 
 */
.about-us-header {
  padding: 6rem 0 0;
}
.about-us-header .about-us-header-content span {
  text-transform: uppercase;
  font-size: 0.9375rem;
  font-weight: 300;
  display: block;
  margin-bottom: 1rem;
  letter-spacing: 0.1rem;
  color: var(--gray-color, #6c757d);
}
.about-us-header .about-us-header-content h1 {
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 0;
}
.about-us-header .about-us-header-content p {
  margin-bottom: 0;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.75rem;
}
.about-us-header picture {
  width: 100%;
  height: 38rem;
  display: block;
}
.about-us-header picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-us-our-story {
  padding: 6rem 0 4rem;
}
.features {
  padding: 0 0 4rem;
}
.features ol {
  counter-reset: features;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6rem;
  margin: 0;
  padding: 0;
}
.features .features-item {
  position: relative;
  flex: 1 1 25%;
}
.features .features-item::before {
  line-height: 5rem;
  font-size: 4rem;
  font-weight: 700;
  color: #6c757d;
  font-family: 'Playfair Display', serif;
  content: counter(features, decimal-leading-zero);
  counter-increment: features;
  display: block;
  margin-bottom: 1.5rem;
}
.features .features-item .features-title {
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.features .features-item .features-text {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75rem;
  margin-bottom: 0;
}



/**
 * 
 * Gallery page
 * 
 */
.gallery .gallery-item {
  position: relative;
  overflow: hidden;
  height: 18rem;
}
.gallery .gallery-item a {
  height: 100%;
  width: 100%;
  display: block;
}
.gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}



/**
 * 
 * Error 404
 * 
 */
.error-404 {
  padding: 6rem 0;
}
.error-404 .error-404-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.error-404 .error-404-content h1 {
  font-size: 6rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.error-404 .error-404-content h2 {
  font-size: 2.25rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.error-404 .error-404-content p {
  max-width: 400px;
  text-align: center;
  margin-bottom: 2rem;
}


/**
 * 
 * Catalog page
 * 
 */
.catalog-categories {
  padding: 1rem 0 4rem;
  margin-top: -1rem;
  overflow: hidden;
}
.catalog-categories a {
  color: var(--white--color, #ffffff);
}
.catalog-category {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
  height: 22rem;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.catalog-category .catalog-category-content {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: end;
}
.catalog-category .btn {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #ced4da;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  width: 100%;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  text-align: start;
  line-height: 1rem;
}
.catalog-category .btn svg {
  width: auto;
  height: 1.375rem;
  stroke-width: 1.5;
}
.catalog-category:hover .btn,
.catalog-category:focus .btn,
.catalog-category:active .btn {
  color: var(--white-color, #ffffff) !important;
}
.catalog-category .catalog-category-image {
  position: relative;
  width: 100%;
  height: 100%;
}
.catalog-category .catalog-category-image::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, #09160f, transparent);
}
.catalog-category .catalog-category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.catalog-category .catalog-category-content .catalog-category-title {
  color: var(--white-color, #ffffff);
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.875rem;
  margin-bottom: 0;
  padding: 1.5rem;
}
.catalog-category:hover,
.catalog-category:focus,
.catalog-category:active {
  transform: translateY(-0.5rem);
  -webkit-transform: translateY(-0.5rem);
}
.products {
  padding: 0 0 4rem;
}
.products a {
  color: var(--black-color, #121212);
  text-decoration: none;
}
.product-card {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: #f6f6f6;
  border: 2px solid #f6f6f6;
  border-bottom: 2px solid #e7e7e7;
  padding: 1.5rem;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.product-card .product-card-image {
  position: relative;
  overflow: hidden;
  height: 14rem;
  width: 100%;
  margin-bottom: 1.5rem;
}
.product-card .product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.product-card .product-card-title {
  font-size: 1.375rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.product-card .product-card-description {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.375rem;
  margin-bottom: 1rem;
}
.product-card .product-card-price {
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--black-color, #121212);
}
.product-card .product-card-price.price-discount {
  text-decoration: line-through;
  color: #6c757d;
  font-size: 1rem;
  font-weight: 300;
}
.product-card .product-card-price.price-on-request {
  font-size: 1rem;
  font-weight: 400;
  color: #d12a27;
  margin-bottom: 0.565rem;
}
.product-card:hover,
.product-card:focus,
.product-card:active {
  background: var(--white-color, #ffffff);
  border: 2px solid #e7e7e7;
}
.product-card:hover .product-card-image img,
.product-card:focus .product-card-image img,
.product-card:active .product-card-image img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
}
.catalog-categories .splide .splide__track {
  clip-path: inset(-100vw -100vw -100vw 0);
  overflow: visible;
}
.about-brand {
  background: #f6f6f6;
}
.about-brand .about-brand-content,
.about-brand .about-brand-content p {
  font-weight: 300;
}
.about-brand .about-brand-content p strong {
  font-weight: 500;
}
.about-brand .about-brand-content p:last-child {
  margin-bottom: 0;
}
.about-brand .about-brand-content a {
  color: #e8c500;
}
.about-brand .about-brand-content a:hover,
.about-brand .about-brand-content a:focus,
.about-brand .about-brand-content a:active {
  color: #d8b800;
}



/**
 * 
 * Product page
 * 
 */
.product-header {
  padding: 4rem 0 6rem;
  background: #f6f6f6;
}
.product-header .product-header-content-brand {
  margin-bottom: 0.5rem;
}
.product-header .product-header-content-brand img {
  max-width: 148px;
}
.product-header .product-header-content-title {
  font-size: 2.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.product-header .product-header-content-meta {
  margin-bottom: 2rem;
}
.product-header .product-header-content-meta a {
  color: var(--black-color, #121212);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-size: 0.9375rem;
  font-weight: 300;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.product-header .product-header-content-meta a:hover,
.product-header .product-header-content-meta a:focus,
.product-header .product-header-content-meta a:active {
  color: var(--primary-color, #112D1D);
  text-decoration: underline;
}
.product-header .product-header-content-desc {
  margin-bottom: 1.5rem;
}
.product-header .product-header-image-wrapper {
  position: relative;
  overflow: hidden;
  width: 90%;
}
.product-header .product-header-image {
  width: 100%;
  height: 30rem;
}
.product-header .product-header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.similar-products {
  padding: 4rem 0 2rem;
}
.similar-products a {
  color: var(--black-color, #121212);
  text-decoration: none;
}
.product-header-content-price {
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.product-header-content-price.price-discount {
  text-decoration: line-through;
  color: #6c757d;
  font-size: 1.25rem;
  font-weight: 300;
}
.product-header-content-price.price-on-request {
  font-size: 1.25rem;
  font-weight: 400;
  color: #d12a27;
}
.product-description {
  padding: 4rem 0 0;
  font-weight: 300;
}
.product-description strong {
  font-weight: 500;
}
.product-description .product-description-content {
  width: 80%;
  margin-left: auto;
}
.product-description span {
  text-transform: uppercase;
  font-size: 0.9375rem;
  font-weight: 300;
  display: block;
  margin-bottom: 0.75rem;
  letter-spacing: 0.1rem;
  color: var(--gray-color, #6c757d);
}
/* .product-description h2 {
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 3rem;
  margin-bottom: 1.5rem;
} */
.product-description ul {
  list-style: none;
  padding-left: 1.375rem;
}
.product-description ul li {
  position: relative;
  padding-left: 0.75rem;
  margin-bottom: 0.25rem;
}
.product-description ul li:before {
  content: "";
  display: block;
  position: absolute;
  width: 1.25rem;
  height: 1px;
  top: 0.7em;
  right: 100%;
  background-color: var(--black-color, #121212);
}
.splide__arrow {
  background: transparent !important;
}
.splide__arrow:focus {
  outline: none !important;
}
#product-slider {
  margin-bottom: 0.5rem;
}
#product-slider .splide__arrow {
  width: 3rem;
}
.splide__arrow svg {
  fill: none !important;
  stroke-width: 1.5 !important;
}
#product-slider .splide__arrow svg {
  stroke: var(--white--color, #ffffff);
  width: 3rem;
  height: auto;
}
#product-slider .splide__arrow.splide__arrow--prev {
  left: 0.5rem;
}
#product-slider .splide__arrow.splide__arrow--next {
  right: 0.5rem;
}
#product-thumbnails-slider .splide__arrow {
  width: 2rem;
}
#product-thumbnails-slider .splide__arrow svg {
  stroke: var(--white--color, #ffffff);
  width: 2rem;
  height: auto;
}
#product-thumbnails-slider .splide__arrow.splide__arrow--prev {
  left: 0;
}
#product-thumbnails-slider .splide__arrow.splide__arrow--next {
  right: 0;
}
#product-thumbnails-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
#product-thumbnails-slider .splide__track--nav>.splide__list>.splide__slide.is-active {
  border: 2px solid var(--black-color, #121212);
}