body {
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #fff;
  color: #212529;
  margin: 0;
  padding: 0;
}
hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}

/* Navbar */
.navbar {
  background-color: #fff;
}
.navbar a.nav-link {
  color: #525252 !important;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
}
.navbar a.nav-link:hover {
  color: #45ad43 !important;
}
.btn-primary{
  color: #fff;
background-color: #45ad43;
border-color: #45ad43;
}

.btn-primary:hover{
  color: #fff;
background-color: #45ad43;
border-color: #45ad43;
}


.compared>.progress+.progress {
    margin-top: 1rem;
}
.bg-color-green{
  background-color: #198754 !important;
}
.bg-color-grey{
  background-color: #6c757d !important;
}
/* Hero Section */
.section {
  position: relative;
  height: 95vh;
  width:100%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.section h1{
  font-size: 50px;
  font-weight: 600;
  text-transform: uppercase;
}
.section h2{
  font-size: 40px;
  font-weight: 600;
  text-transform: uppercase;
}
.section h3{
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
}

.card-text{font-size: 0.9rem;}
.text-section h4{
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
}
.text-section h5{
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
}
.text-section li{
  text-align: left;
}
.section p,
{
  font-size: 1.5rem
}
.section .btn {
  color: #45ad43;
  border: 1px solid #45ad43;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 0.75rem 1.5rem;
  transition: 0.2s;
}
.section .btn:hover {
  color: #fff;
  background-color: #45ad43;
}

/* Section with backgrounds */
section.bg-cover {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 6rem 1rem;
  background-size: cover;
  background-position: center;
}

section.bg-cover h2 {
  font-size: 50px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 30px;
}

section.bg-cover p {
  font-size: 23px;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
}

/* About text */
.text-section {
  background: #fff;
  color: #212529;
  text-align: center;
  padding: 5rem 1rem;
}

.text-section h2 {
  color: #45ad43;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.text-section p {

  /* max-width: 900px; */
  margin: 0 auto;
}

/* Footer */
footer {
  background: #212529;
  color: #fff;
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.9rem;
}


/* Carousel */
.carousel-item {
  height: 95vh;
  background-size: cover;
  background-position: center;
}
.carousel-caption {
  background: rgba(0,0,0,0.4);
  border-radius: 6px;
  padding: 2rem;
  top: 50%;
  transform: translateY(-50%);
  bottom: initial;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;

}
.carousel-caption p
{
  font-size: 1.3rem
}
