:root {
  --primary-color: green; /* global scope */
  --secondary-color: rgb(255, 117, 40);
}
* {
  font-family: "Inter", sans-serif;
}
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}
.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}
.btn-secondary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
/* Navigation */
.navbar-expand-lg {
  display: flex;
}
#navbarSupportedContent {
  flex: 1;
  justify-content: right;
}
.navbar-brand {
  flex: 1;
}
.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}
.navbar-nav .active .nav-link {
  color: var(--secondary-color);
}

/* Hero */
.hero h1 {
  color: var(--primary-color);
  font-size: 3rem;
  span {
    color: var(--secondary-color);
    font-size: 1rem;
    display: block;
    margin-bottom: 1rem;
  }
}
.hero p {
  padding: 2rem 0;
}
.hero a.btn-secondary {
  border-radius: 2rem;
  padding: 0.5rem 2rem;
  font-size: 1rem;
}
/* Features */
.featured h3 {
  font-weight: 600;
  font-size: 1.5rem;
  padding: 1rem;
}
.featured .item {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  flex: 1;
  height: 100%;
}
.featured .col {
  display: flex;
}
.featured .col:nth-child(1) .item {
  background-color: #fdf8e3;
  border-radius: 2rem 0 0 0;
}
.featured .col:nth-child(2) .item {
  background-color: #f0f3fa;
  border-radius: 2rem;
}
.featured .col:nth-child(3) .item {
  background-color: #feeff0;
  border-radius: 0rem 0 2rem 0;
}

.featured h2 span,
.about h2 span,
.mission h2 span {
  display: inline-block;
  color: var(--secondary-color);
  font-size: 1rem;
  margin: 1rem 0;
  padding: 1rem 1.5rem;
  background-position: 7px 6px;
  background-repeat: no-repeat;
  border-radius: 35px 35px 35px 35px;
  box-shadow: 0px 0px 30px 0px rgba(177, 89, 105, 0.2);
}
.featured h2 b,
.about h2 b,
.mission h2 b {
  display: block;
  padding: 1.5rem 0;
  font-weight: 300;
}
.featured h2,
.about h2,
.mission h2 {
  display: block;
  text-align: center;
}
.mission p {
  font-size: 1rem;
  text-align: center;
  color: #666;
}
.icon-devops {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url("../img/icon-devops.png") no-repeat center center;
}

.about h2 {
  text-align: left;
}
.about h2 b {
  font-weight: 700;
}
.about ul,
.pagehero ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
  margin: 2rem 0 0 0;
}
.about ul li,
.pagehero ul li {
  padding: 1rem;
  background: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  margin: 1rem 0;
}
.about ul li:first-child {
  padding: 1rem;
  background: #ffffff;
  box-shadow: 0 0 1.5rem #ccc;
  border-radius: 0.5rem;
  margin: 1rem 0;
}
.about p {
  color: #666;
}

/* Page Header */
.pageHeader {
  padding: 3rem 0;
  background-color: rgba(0, 0, 0, 0.05);
}
.pageHeader h1 {
  text-align: center;
  color: var(--secondary-color);
}
.pagehero {
  padding: 3rem 0;
}
.pagehero h2 {
  color: #333;
  font-size: 2.5rem;
  font-weight: 700;
}
.pagehero h2::after {
  width: 100px;
  height: 5px;
  content: "";
  background-color: var(--secondary-color);
  display: block;
  margin: 1rem 0 2rem 0;
}
.pagehero h3 {
  color: #666;
  font-weight: 300;
}
.pagehero ul li {
  padding: 1rem;
  background: #ffffff;
  box-shadow: 0 0 1.5rem #ccc;
  border-radius: 0.5rem;
  margin: 1rem 0;
  color: #666;
}
.expertise h2 {
  padding-bottom: 2rem;
}
.expertItem {
  display: flex;
  align-items: center;
  border-radius: 1rem;
  box-shadow: 0 0 15px #ccc;
  padding: 1rem;
  margin: 2rem 0 0 0;
}
.expertItem .icon {
  padding-right: 1rem;
}
.expertItem h3 {
  font-size: 20px;
}
.expertise .item {
  padding: 1rem;
  border-radius: 0 2rem 0rem 2rem;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.09);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.expertise .item h3 {
  padding: 1rem 0;
  font-weight: 300;
}

.contactBlock {
  padding: 3rem 0;
}
.contactBlock h2 {
  color: #333;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  .navbar-collapse {
    position: fixed;
    width: 100%;
    background: white;
    top: 90px;
    left: 0px;
  }
  /* Styles */
}
