@charset "UTF-8";
:root {
  --max-width: 1200px;
  --top-height: 80vh;

  /* THEME COLORS */
  --accent-color-1: #45a399;
  --accent-color-2: #2b606a;

  /* BACKGROUND */
  --background: white;
  --background-alt: black;
  --item-background: white;

  /* HEADER */
  --header-background: #000000a6;
  --header-text: aliceblue;
  --header-text-hover: white;

  /* BUTTON COLORS */
  --button-color: #45a399;
  --button-text: white;
  --button-hover-color: #2b606a;
  --button-hover-text: white;

  /* FONTS */
  --font-default: "Lato", Arial, Helvetica, sans-serif;
  --font-heading: "Lato", Impact, Arial, Helvetica, sans-serif;

  /* TEXT COLOR */
  --text-default: #333;
  --text-default-dark: whitesmoke;

  /* SEARCH BOX */
  --searchbox-background: white;
  --searchbox-border: 1px solid lightgray;
  --searchbox-text: black;

  /* FOOTER */
  --footer-background: white;
  --footer-text: black;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-default);
  width: 100%;

  /* CUSTOMIZE */
  background: url("../images/top-bg.jpg") no-repeat top center fixed;
  color: var(--text-default);
  background-size: cover;
  font-size: 14pt;
  line-height: 1.75;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: bold;
}

a,
.button {
  cursor: pointer;
  text-decoration: none;
}

/* Quick classes */

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none;
}

/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
  width: 100%;
  box-sizing: border-box;
}
.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box;
}
.u-pull-right {
  float: right;
}
.u-pull-left {
  float: left;
}

/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #e1e1e1;
}

hr.spacer {
  border: none;
  margin: 25px;
}

/* HEADER */

header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 9999;
  background: var(--header-background);
}

header .navbar {
  padding: 15px 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.navbar-site-title {
  display: none;
}

.navbar-logo {
  flex: 1;
}

.navbar-logo img {
  width: auto;
  max-height: 50px;
}

#togglemenu {
  display: none;
}

.menu-toggle {
  display: block;
  height: 26px;
  width: 32px;
  top: 17px;
  left: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle .line {
  display: block;
  height: 4px;
  width: 100%;
  border-radius: 10px;
  background: var(--header-text);
}

.menu-toggle .line1 {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}

.menu-toggle .line2 {
  transition: transform 0.2s ease-in-out;
}

.menu-toggle .line3 {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}

#togglemenu:checked ~ .menu-toggle .line {
  border-radius: 10px;
  background: var(--header-text);
}

#togglemenu:checked ~ .menu-toggle .line1 {
  transform: rotate(45deg);
}

#togglemenu:checked ~ .menu-toggle .line2 {
  transform: scaleY(0);
}

#togglemenu:checked ~ .menu-toggle .line3 {
  transform: rotate(-45deg);
}

.navbar-menu {
  justify-items: flex-end;
  z-index: 9999;
}

.navbar-menu {
  position: fixed;
  width: 100%;
  background: var(--header-background);
  padding: 0 10px;
  text-align: center;
  top: 80px;
  max-height: 0px;
  overflow: hidden;
  transition: all 0.5s;
  right: 0;
}

.navbar-menu .menu {
  display: block;
  list-style: none;
  padding: 0;
}

.navbar-menu .menu .menu-item {
  display: block;
  width: 100%;
  padding: 10px 0;
}

#togglemenu:checked ~ .navbar-menu {
  max-height: 1000px;
}

.navbar-menu .menu .menu-item,
.navbar-menu .menu .menu-item a {
  display: block;
  width: 100%;
  color: var(--header-text);
  font-family: var(--font-heading);
}

.navbar-menu .menu .menu-item a.btn {
  max-width: 300px;
  margin: auto;
}

.navbar-menu .menu .menu-item a:hover {
  color: var(--header-text-hover);
}

/* DEFAULTS */

#content {
  margin: auto;
  width: 100%;
}

section {
  padding: 60px 30px;
  background: var(--background);
}

section.alt {
  background: var(--background-alt);
  color: var(--text-default-dark);
}

section.alt .section-heading {
  color: var(--text-default-dark);
}

.container {
  width: 100%;
  margin: auto;
  max-width: var(--max-width);
}

.section-heading {
  font-size: 30pt;
  margin: 0 0 20px;
  text-transform: uppercase;
  color: var(--accent-color-2);
}

.grid,
.list {
  display: grid;
  gap: 15px;
}

.flex {
  display: flex;
  gap: 15px;
}

.btn {
  border: none;
  width: auto;
  display: inline-block;
  padding: 8px 20px;
  background: var(--button-color);
  border: none;
  font-family: var(--font-heading);
  color: var(--button-text);
  border-radius: 5px;
  transition: all 0.2s;
}

.btn:hover {
  background: var(--button-hover-color);
  color: var(--button-hover-text);
}

/* CTA BUTTONS */

header .cta {
  padding: 10px 20px;
}

section .cta {
  padding: 10px 40px;
  font-size: 20pt;
}

/* TOP */

section#top {
  background: none;
  min-height: var(--top-height);
  display: flex;
  color: var(--text-default-dark);
  font-size: 16pt;
}

section#top .container {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
  text-align: center;
}

.top-heading {
  color: #cef9ff;
  line-height: 1.25;
  font-size: 30pt;
  text-transform: none;
  margin: 0;
}

section#top .btn {
  margin-top: 30px;
}

.big-btn {
  font-size: 22pt;
  padding: 15px 50px;
  min-width: 300px;
}

/* ABOUT  */

.about-grid {
  gap: 80px;
  justify-items: center;
  align-items: center;
}

.about-grid .section-img {
  display: none;
}

/* SERVICES */

section#services {
  background: #f0f4fa;
}

.services-grid {
  gap: 80px;
  margin: 50px auto;
}

.services-heading {
  color: var(--accent-color-2);
  font-size: 20pt;
  margin: 0 0 10px;
}
.services-text {
  margin: 0;
}

.services-grid .grid-item {
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: flex-start;
}

/* INDUSTRIES  */

.industries-grid {
  gap: 80px;
  margin: 50px auto;
}

.industry-heading {
  color: var(--text-default);
  font-size: 20pt;
  margin: 0 auto;
}
.industry-text {
  margin: 0;
}

.industry-img {
  width: 280px;
}

.industries-grid .grid-item {
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: center;
}

/* HIGHLIGHTS  */

section#highlights {
  background: url(../images/highlights-bg.jpg) no-repeat center fixed;
  background-size: cover;
}

.highlights-grid {
  gap: 80px;
  align-items: center;
}

.highlights-grid .section-img {
  display: none;
}

.highlight-box {
  grid-template-columns: 100px 1fr;
  row-gap: 10px;
  column-gap: 20px;
  margin: 50px 0;
}

.highlight-img {
  max-height: 80px;
  grid-row: 1/3;
  justify-self: center;
  align-self: flex-start;
}

.highlight-heading {
  font-size: 20pt;
  margin: 0;
}

.highlight-box .highlight-text {
  grid-column: 2/3;
  margin: 0;
}

/* WHY  */

section#why {
  background: url(../images/why-bg.jpg) no-repeat top center scroll;
  background-size: cover;
}

.why-grid {
  display: flex;
  flex-direction: row;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 50px auto;
}

.why-grid .grid-item {
  padding: 40px 35px;
  text-align: center;
  justify-items: center;
  gap: 20px;
  background: #334a4e4f;
}

.why-grid .why-img {
  width: 200px;
}

.why-grid .why-text {
  margin: 0;
}

.why-grid .why-heading {
  font-size: 20pt;
  margin: 0;
}

/* CONTACT */

section#contact {
  background: url(../images/contact-bg.jpg) no-repeat bottom center scroll;
  background-size: cover;
}

section#contact .highlight {
  font-size: 24pt;
}

section#contact .big-btn {
  background: black;
  margin: 30px auto;
}

section#contact .big-btn:hover {
  background: var(--accent-color-1);
}

/* FOOTER */

footer {
  padding: 20px 30px 20px;
  font-size: 10pt;

  /* CUSTOMIZE */
  background: var(--footer-background);
  color: var(--footer-text);
}

footer > .container {
  display: flex;
  flex-direction: column;
  justify-items: center;
  gap: 15px;
}

.footer-menu {
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 30px;
}

footer a,
footer a:hover {
  /* CUSTOMIZE */
  color: var(--footer-text);
}

/* Mobile first queries */

/* Larger than mobile */
@media (min-width: 400px) {
}

/* Larger than phablet */
@media (min-width: 550px) {
}

/* Larger than tablet */
@media (min-width: 750px) {
  header .navbar {
    padding: 15px 20px;
  }

  .section-heading {
    font-size: 34pt;
  }

  .top-heading {
    font-size: 36pt;
  }

  section {
    padding: 100px 20px;
  }

  .why-grid .grid-item {
    width: 45%;
  }

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

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

/* Larger than desktop */
@media (min-width: 1000px) {
  .why-grid .grid-item {
    width: 31%;
  }

  .highlights-grid {
    grid-template-columns: 1fr 40%;
  }

  .about-grid {
    grid-template-columns: 40% 1fr;
  }

  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
  }

  .highlights-grid .section-img,
  .about-grid .section-img {
    display: block;
  }
}

/* Larger than Desktop HD */
@media (min-width: 1200px) {
}
