@import url("https://fonts.googleapis.com/css?family=Roboto");

:root {
  --primary-color: #007fc3;
  --secondary-color: #b2d8ed;
  --gray-color: #abb2bc;
  --dark-gray-color: #8f98a5;
  --yellow-warning-color: rgb(254, 201, 46);
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.4;
}
a {
  text-decoration: none;
  color: #fff;
}

p {
  margin: 0.75rem 0;
}

/* Utility Classes */
.container {
  max-width: 1800px;
  margin: auto;
  padding: 0 1rem;
  overflow: hidden;
}

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

.text-primary {
  color: var(--primary-color);
}

.text-gray {
  color: var(--gray-color);
}

.text-dark-gray {
  color: var(--dark-gray-color);
}

.text-secondary {
  color: var(--secondary-color);
}

.bg-light {
  background: #f4f4f4;
  color: #333;
}

.bg-dark {
  background: #333;
  color: #fff;
}

.bg-primary {
  background: var(--primary-color);
  color: #000;
}

.bg-secondary {
  background: var(--secondary-color);
  color: #000;
}

.l-heading {
  font-size: 3rem;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.m-heading {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.lead {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.py-1 {
  padding: 1.5rem 0;
}
.py-2 {
  padding: 2rem 0;
}
.py-3 {
  padding: 3rem 0;
}

.p-1 {
  padding: 1.5rem;
}
.p-2 {
  padding: 2rem;
}
.p-3 {
  padding: 3rem;
}

.btn {
  display: inline-block;
  color: #fff;
  background: var(--primary-color);
  padding: 0.5rem 2rem;
  border: none;
  border-radius: 5px;
}

svg {
  display: block;
}

/* Hamburger Menu Slide Menu */
.side-nav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background: #111;
  opacity: 0.9;
  overflow-x: hidden;
  padding-top: 60px;
  transition: 0.5s;
}

.hamburger-menu {
  display: none;
}

.side-nav ul {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  list-style: none;
}

.side-nav li {
  padding: 10px 30px 10px 30px;
  text-decoration: none;
  font-size: 1.4rem;

  transition: 0.3s;
}

.side-nav li a {
  color: #ccc;
}

.side-nav li a:hover {
  color: #fff;
}

.side-nav .btn-close-side-nav {
  position: absolute;
  top: 0;
  left: 22px;
  font-size: 2.25rem;
  margin-right: 50px;
}
/* Navbar */

#navbar {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  background: #333;
  color: #fff;
  z-index: 1;
  padding: 1rem;
}

#navbar .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

#navbar h1 img {
  margin-right: 5px;
  border-radius: 5px;
  vertical-align: middle;
}

#navbar ul {
  display: flex;
  align-items: center;
  list-style: none;
}

#navbar ul li a {
  color: #fff;
  padding: 0.75rem;
  margin: 0 0.25rem;
}

#navbar ul li a:hover {
  background: var(--primary-color);
  border-radius: 5px;
}

/* Showcase */
#showcase {
  padding: 1.5rem 3rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

#showcase .container {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

#showcase .showcase-content {
  flex: 1;
  margin-right: 30px;
}

#showcase .showcase-image {
  flex: 1;
}

#showcase .showcase-image img {
  width: 100%;
}

/* Features */
#features .items {
  display: flex;
  flex-wrap: wrap;
  padding: 1rem;
}

#features .items .item {
  flex-basis: 50%;
  text-align: center;
  padding: 1rem;
}

#features .items .item {
  display: flex;
  text-align: left;
}

#features .items .item .icon {
  display: none;
}

#features .items .item a {
  color: blue;
}

#features .items .item-icon {
  font-size: 3rem;
  margin-right: 40px;
}

#features .items .item-icon .fa-exclamation-triangle {
  color: var(--yellow-warning-color);
}

#features .items .item ul {
  text-align: left;
}

#features .items .item ul li {
  list-style-position: inside;
}

/* Reviews */

#reviews .items {
  display: flex;
  margin-top: 40px;
}

#reviews .items .item {
  margin: 0 1.5rem;
  flex-basis: 30%;
}

.item .review-body {
  text-align: justify;
}

/* Featured */

#featured-in .items {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}

#featured-in .items .item {
  margin: 1.5rem;
}

#featured-in .items .item .l-height a img {
  height: 120px;
}

#featured-in .items .item .m-height a img {
  height: 60px;
}

#featured-in .items .item .s-height a img {
  height: 40px;
}

/* Footer */
#main-footer .disclaimer {
  font-size: 0.75rem;
}

#main-footer .social-links i {
  padding: 0.5rem;
}

 {
  list-style: none;
}

 {
  padding: 0.5rem;
}

#main-footer .legal-disclaimer-links ul {
  list-style: none;
}

#main-footer .legal-disclaimer-links ul li {
  margin: 1.25rem 0rem;
}

#main-footer .legal-disclaimer-links ul li a {
  color: #fff;
  padding: 0.5rem;
}

#main-footer .legal-disclaimer-links ul li a:hover {
  background: var(--primary-color);
  border-radius: 5px;
}

/* Blog Posts */

#blog-posts .items {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

#blog-posts .items .item {
  margin: 1.5rem;
  flex-basis: 25%;
  background: #fff;
}

#blog-posts .items .item .item-content {
  text-align: center;
}

#blog-posts .items .item .item-image {
  height: 300px;
}

#blog-posts .items .item a:hover {
  background: var(--secondary-color);
  color: var(--dark-gray-color);
}

/* Blog Post - Individual Post */

#blog-post .container {
  display: flex;
  flex-direction: column;
  align-items: start;
  max-width: 1100px;
}

#blog-post .header {
  margin-top: 40px;
  display: flex;
}

#blog-post .header-image {
  margin-right: 20px;
  width: 300px;
}

#blog-post .header-image img {
  align-self: center;
  width: 100%;
}

#blog-post .header-content {
  align-self: center;
}

#blog-post .content {
  margin-top: 40px;
  text-align: left;
}

#blog-post .content p {
  /* line-height: 1.4rem; */
}

#blog-post .content a {
  color: var(--primary-color);
}

/* LEGAL DISCLAIMERS */

#legal-disclaimer .container {
  display: flex;
  flex-direction: column;
  align-items: start;
  max-width: 900px;
}

#legal-disclaimer .container h3 {
  align-self: center;
}

#legal-disclaimer li {
  list-style-position: inside;
}

#legal-disclaimer a {
  color: blue;
}
