
body {
  background: #ebeced;
}

p {
  font-size: 1rem !important;
}







/*---------------------
      Navigation
---------------------*/

.navbar-brand-2 svg {
  width: 10rem;
}

.nav-container {
  background: #000000;
  border-radius: 0.188rem;
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 2rem;
}

.nav-container h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  display: none;
}

.hamburger-menu {
  position: relative;
  width: 1.25rem;
  height: 1rem;
  align-items: center;
  display: none;
}

.hamburger-menu span {
  height: 2px;
  width: 100%;
  background: var(--white);
}

.hamburger-menu span::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--white);
}

.hamburger-menu span::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--white);
}

.nav-li {
  display: inline-block;
  padding: 0.625rem 1rem;
}

.nav-li.active {
  background: var(--white);
}

.nav-li a {
  color: var(--white);
}

.nav-li.active a {
  color: var(--blue);
}

.nav-li:hover a {
  text-decoration: underline;
}








.content {
  background: var(--white);
  margin: auto;
  padding: 2rem 5rem;
  margin-bottom: 1rem;
}

.logo-section p {
  color: #777;
  font-size: 0.875rem;
}

.logo-section h5 {
  margin-top: 1rem;
}

.background-img-sec {
  width: 100%;
  height: 250px;
  border: 1px solid #ddd;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.625rem 0;
  position: relative;
}

.transparent-img-sec {
  width: 100%;
  height: 250px;
  border: 1px solid #ddd;
  background-image: linear-gradient(to right, rgba(192, 192, 192, 0.75), rgba(192, 192, 192, 0.75)),
    linear-gradient(to right, black 50%, white 50%),
    linear-gradient(to bottom, black 50%, white 50%);
  background-blend-mode: normal, difference, normal;
  background-size: 1rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.625rem 0;
  position: relative;
}

.download-btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
}

.logo-color-container {
  margin-top: 5rem;
}

.logo-color-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1.25rem;
}

.rightbiz-original {
  width: 100%;
  height: 250px;
  border: 1px solid #ddd;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.rightbiz-white {
  width: 100%;
  height: 250px;
  background: #2464b3;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.color-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 0.625rem;
}

.color-container>div {
  width: 100%;
  height: 250px;
  padding: 0.625rem;
}

.color-container>div p {
  font-size: 13px;
}

.color-wrapper {
  margin-top: 3rem;
}

.b-c-c {
  color: var(--white);
  background: #000000;
}

.w-c-c {
  color: #000;
  border: 1px solid #ddd;
}

.o-c-c {
  background: #ff9c00;
  color: var(--white);
}

.d-c-c {
  background: #263238;
  color: var(--white);
}

.lg-c-c {
  background: #3c4147;
  color: var(--white);
}

.lgre-c-c {
  background: #15be53;
  color: var(--white);
}

.brand-info {
  margin-top: 5rem;
}

.brand-info-content {
  margin-bottom: 2rem;
}

.brand-info-content p {
  color: #777;
}

.links {
  color: #004677;
}

.links:hover {
  text-decoration: underline;
}

.branding-bottom {
  display: flex;
  align-items: center;
  grid-gap: 1rem;
  border-top: 1px solid var(--grey);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}



/* BREAKPOINTS */
@media screen and (max-width: 991px) {
  .nav-ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    width: 100%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
    overflow: hidden;
    height: 0;
    transition: height .2s;
    z-index: 1;
  }
  .nav-ul.active {
    height: 270px;
  }
  .nav-li {
    border-bottom: 1px solid var(--grey);
  }
  .nav-container h4 {
    display: block;
  }
  .hamburger-menu {
    display: flex;
    margin-left: auto;
  }
  .nav-container {
    padding: .5rem;
  }
  .nav-li {
    display: block;
  }
  .nav-li a {
    color: var(--dark);
  }
  .nav-li.active a {
    color: var(--blue);
  }
}
@media only screen and (max-width: 768px) {
  .content {
    width: 100%;
    margin: none;
  }

  .logo-color-content {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 576px) {
  .container {
    padding: 0;
  }

  .content {
    width: 100%;
    padding: 1rem;
  }

  .color-container {
    grid-template-columns: 1fr;
  }
}
/* BREAKPOINTS */