body, html {
  height: 100%;
  margin: 0;
  font: 400 15px/1.8 "Lato", sans-serif;
  color: #777;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}
.logo {
  padding: 2em;
  margin-left: 10px;
}

.about {
  color: #777;
  background-color:white;
  text-align:center;
  padding:50px 80px;
  text-align: center;
}


/* ------------------------ NAVIGATION MENU (Hamburger) ------------------- */
.menu-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  width: 50px;
  height: 50px;
  text-align: center;
  color: #fff;
  background: rgba(52, 58, 64, 0.5);
  line-height: 50px;
  z-index: 999;
}
.menu-toggle:focus, .menu-toggle:hover {
  color: #fff;
}
.menu-toggle:hover {
  background: #5b7366;
}

#sidebar-wrapper {
  position: fixed;
  z-index: 2;
  right: 0;
  width: 250px;
  height: 100%;
  transition: all 0.4s ease 0s;
  transform: translateX(250px);
  background: #5b7366;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.8;
}

.sidebar-nav {
  position: absolute;
  top: 0;
  width: 250px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-nav li.sidebar-nav-item a {
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 15px;
}

.sidebar-nav li a:hover {
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

.sidebar-nav li a:active,
.sidebar-nav li a:focus {
  text-decoration: none;
}

.sidebar-nav > .sidebar-brand {
  font-size: 1.2rem;
  background: rgba(52, 58, 64, 0.1);
  height: 80px;
  line-height: 50px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}

.sidebar-nav > .sidebar-brand a {
  color: #fff;
  text-decoration: none;
}

.sidebar-nav > .sidebar-brand a:hover {
  color: #fff;
  background: none;
}

#sidebar-wrapper.active {
  right: 250px;
  width: 250px;
  transition: all 0.4s ease 0s;
}

.btn-xl {
  padding: 1.25rem 2.5rem;
}

/* ------------------------ SCROLL TO TOP MENU ------------------- */
.scroll-to-top {
  position: fixed;
  right: 15px;
  bottom: 15px;
  display: none;
  width: 50px;
  height: 50px;
  text-align: center;
  color: #fff;
  background: rgba(52, 58, 64, 0.5);
  line-height: 50px;
}
.scroll-to-top:focus, .scroll-to-top:hover {
  color: #fff;
}
.scroll-to-top:hover {
  background: #5b7366;
}
.scroll-to-top i {
  font-weight: 800;
}

/* ------------------------ BODY DECORATION ------------------- */
.bg-body-tertiary {
  --bs-bg-opacity: 0;
  background-color: rgba(var(--bs-tertiary-bg-rgb),var(--bs-bg-opacity))!important;
}

.bgimg-1, .bgimg-2, .bgimg-3, .bgimg-4, .bgimg-ps, .bgimg-ch, .bgimg-cs, .bgimg-dev {
  position: relative;
  opacity: 0.65;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

}
/* Home */
.bgimg-1 {
  background-image: url("/assets/img/img_parallax.jpg");
  min-height: 100%;
}
/* About */
.bgimg-2 {
  background-image: url("/assets/img/img_parallax2.jpg");
  min-height: 250px;
  background-color:transparent;
  font-size:25px;
  color: #f7f7f7;
}
/* Contact Us */
.bgimg-cs {
  background-image: url("/assets/img/contact_us.png");
  min-height: 35%;  
}
.bgimg-3 {
  background-image: url("/assets/img/img_parallax3.jpg");
  min-height: 400px;
}
/* Footer Developer */
.bgimg-dev {
  background-image: url("/assets/img/img_parallax4.png");
  min-height: 100%;
}
/* ------------------------ BLOG ------------------- */

/* Problem Solving */
.bgimg-ps {
  background-image: url("/blog/img/problem_solving.jpg");
  min-height: 100%;
}
/* Cloud Hosting Solutions */
.bgimg-ch {
  background-image: url("/blog/img/cloud_hosting_solutions.jpg");
  min-height: 100%;
}


.caption {
  position: absolute;
  left: 5px;
  top: 47%;
  width: 100%;
  text-align: center;
  color: #000;
  opacity: 0.8;
}
.caption span.border {
  background-color: #022713;
  color: #fff;
  padding: 15px;
  font-size: 15px;
  letter-spacing: 8px;
}
.home.caption span.border {
  background-color: #022713;
  color: #fff;
  padding: 5px;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 15px;
  letter-spacing: 8px;
}
.service.caption span.border {
  position: relative;
  background-color: #022713;
  color: #fff;
  top: -20px;
  padding: 15px;
  font-size: 15px;
  letter-spacing: 8px;
}
.strategy.caption span.border {
  background-color: #022713;
  color: #fff;
  padding: 5px;
  font-size: 15px;
  letter-spacing: 8px;
}
.contacts.caption span.border {
  position: relative;
  background-color: #022713;
  color: #fff;
  top: -20px;
  padding: 15px;
  font-size: 15px;
  letter-spacing: 8px;
}


h3 {
  letter-spacing: 5px;
  text-transform: uppercase;
  font: 20px "Lato", sans-serif;
  color: #111;
}

/* Turn off parallax scrolling for tablets and phones */
@media only screen and (max-device-width: 1024px) {
  .bgimg-1, .bgimg-2, .bgimg-3, .bgimg-ps {
    background-attachment: scroll;
  }
}

.service-icon {
  background-color: #fff;
  color: #5b7366;
  height: 7rem;
  width: 7rem;
  display: block;
  line-height: 7.5rem;
  font-size: 2.25rem;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.1);
}

.content-section.text-center {
  padding: 2rem;
  color: white;
  background: #5b7366;
}
/* ------------------------ CONTACT US ------------------- */
.contact-form {
  background-color: #fff;
  color: #46b58f;
  padding: 2em;
}
.contact-form .col-md-3 {
  border-radius: 25px;
  color: #fff;
  background-color: #46b58f;
  
}
.contact-form .col-md-3 a {
  color: #fff;
}

.contact-form a.btn-primary {
  margin-top: 2em;
  background-color: #46b58f;
  border: #5b7366;
}
.contact-form a:hover.btn-primary  {
  background-color: #5b7366;
  border: #46b58f;
}

/* ------------------------ FOOTER ------------------- */
footer.footer {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #5b7366;
  
}
footer.footer .text-muted {
  background-color: #5b7366;
  --bs-text-opacity: 1;
  color: #fff!important;
}
footer.footer .footer-img {
  padding: 2em;
}


