/* ==========================================================
   THEME VARIABLES
   ========================================================== */

:root {
  --color-bg-dark: #272727;
  --color-text-base: #7e7e7e;
  --color-white: #ffffff;
  --color-green-accent: #cee002;
  --color-green-hover: #b7c933;
}

/* ==========================================================
   BASE / RESET
   ========================================================== */

html {
  font-size: 12px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 2.1428;
  color: var(--color-text-base);
  background: var(--color-bg-dark);
  -webkit-overflow-scrolling: touch;
}

/* ==========================================================
   TYPOGRAPHY
   ========================================================== */

h1,
.h1 {
  font-size: 3.428rem;
  line-height: 1.2;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: -0.025em;
  margin: 0.5em 0;
}

h2,
.h2 {
  font-size: 2.571rem;
  line-height: 1.166;
  font-weight: 600;
  color: var(--color-white);
  margin: 2.6rem 0;
}

h3,
.h3 {
  font-size: 2.142rem;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.05em;
  color: var(--color-white);
  margin: 2.6rem 0;
}

h4,
.h4 {
  font-size: 1.714rem;
  line-height: 1.25;
  font-weight: 600;
  color: var(--color-white);
  margin: 2.6rem 0;
}

h5,
.h5 {
  font-size: 1.571rem;
  line-height: 1.1;
  font-weight: 600;
  color: var(--color-white);
  margin: 2.6rem 0;
}

h6,
.h6 {
  font-size: 1.285rem;
  line-height: 1.3333;
  font-weight: 600;
  color: var(--color-white);
  margin: 2.6rem 0;
}


h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a,
h6 a,
.h6 a {
  color: inherit;
}

h1 a:hover,
.h1 a:hover,
h2 a:hover,
.h2 a:hover,
h3 a:hover,
.h3 a:hover,
h4 a:hover,
.h4 a:hover,
h5 a:hover,
.h5 a:hover,
h6 a:hover,
.h6 a:hover {
  text-decoration: none;
}


/* ==========================================================
   UTILITIES
   ========================================================== */

.theme-text-green,
.theme-text-green a {
  color: var(--color-green-accent) !important;
}

.theme-text-green a:hover {
  color: var(--color-green-hover) !important;
}

.greenbar {
  position: relative;
}

.greenbar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  margin-bottom: -20px;
  border-bottom: 3px solid var(--color-green-accent);
}

/* ==========================================================
   LAYOUT
   ========================================================== */

.wrapper {
  overflow-x: hidden;
}

.boxed {
  padding-left: 1.7rem;
  padding-right: 1.7rem;
}

.boxed .container,
.boxed .container-fluid {
  padding: 0;
  max-width: 100%;
}

/* ==========================================================
   SECTIONS
   ========================================================== */

.section {
  padding: 3.28rem 0;
}

.section p {
  color: var(--color-white);
  line-height: 1.8;
}

.section-title {
  padding: 0 0;
  margin-top: 0;
  margin-bottom: 5rem;
}

.section-subtitle {
  display: inline-block;
  font-size: 1.142rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-green-accent);
  margin-bottom: 1rem;
}

.section-about {
  padding-top: 2rem;
}

/* ==========================================================
   SERVICE CARDS
   ========================================================== */

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card__image {
  width: 100%;
  height: auto;
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem 1.5rem;
}

.service-card__title {
  color: var(--color-white);
  line-height: 1.05;
  margin-bottom: 0.5rem;
}

.service-card__text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ==========================================================
   EXPERIENCE
   ========================================================== */

.experience-box {
  position: relative;
  white-space: nowrap;
  margin: 3rem 0;
}

.experience-border {
  display: inline-block;
  vertical-align: middle;
  width: 12.15rem;
  height: 12.15rem;
  border: 0.357rem solid var(--color-green-accent);
}

.experience-content {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  left: -10rem;
  margin-right: 10rem;
}

.experience-number {
  display: inline-block;
  vertical-align: middle;
  font-size: 7.142rem;
  font-weight: 600;
  color: var(--color-white);
}

.experience-info {
  display: inline-block;
  vertical-align: middle;
  margin: -1rem 3rem 0 3rem;
  font-size: 1.57rem;
  line-height: 1.181;
  color: var(--color-white);
  white-space: wrap;
}

/* ==========================================================
   JUMBOTRON / SLIDER
   ========================================================== */

.jumbotron {
  position: relative;
  padding: 0;
  background-color: var(--color-bg-dark);
  color: var(--color-white);
}

.rev_slider_wrapper .tp-revslider-mainul>li {
  position: relative;
}

.rev_slider_wrapper .tp-revslider-mainul>li::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  /* adjust color + opacity */
  z-index: 1;
}

.slider-title {
  text-shadow:
    0 4px 12px rgba(0, 0, 0, 0.65),
    0 1px 2px rgba(0, 0, 0, 0.9);
}

.rev_slider_wrapper .tp-caption {
  position: relative;
  z-index: 2;
}

.rev_slider .link-arrow {
  color: var(--color-white);
}

.rev_slider .link-arrow:hover {
  color: var(--color-green-accent);
}

/* ==========================================================
   FOOTER
   ========================================================== */

.footer {
  color: var(--color-text-base);
  padding: 1rem 0 0;
  line-height: 1.71;
}

.footerText {
  font-size: 0.9em;
  line-height: 1.5;
  padding: 1rem 0;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  padding-bottom: 8px;
  line-height: 1.1;
}

.footer ul li a {
  color: var(--color-text-base);
  text-decoration: none;
}

.footer ul .active a,
.footer ul li a:hover {
  color: var(--color-green-hover);
  text-decoration: none;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (min-width: 768px) {
  html {
    font-size: 13px;
  }

  .boxed .indented {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .boxed {
    padding: 3rem;
  }
}

@media (min-width: 992px) {
  html {
    font-size: 14px;
  }

  .boxed {
    padding: 4.2857rem;
  }

  .section-about {
    padding-top: 0
  }
}

@media (min-width: 1200px) {
  .experience-box {
    margin: 2.2rem 0;
  }
}