/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Poppins", Helvetica, sans-serif;
  color: #444444;
}

a {
  color: #eb1d25;
  text-decoration: none;
}

a:hover {
  color: #ac0f15;
  text-decoration: none;
}

.hide {
  display: none;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #eb1d25;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background-color: #ac0f15;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  padding: 0;
  z-index: 10;
  background: #fff;
}

#header .logo img {
  max-height: 50px;
}

#header.header-scrolled {
  background: #fff;
  box-shadow: 0px 2px 20px rgb(1 41 112 / 10%);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  padding-left: 32px;
  display: flex;
  list-style: none;
  /*align-items: center;*/
}

.navbar li {
  position: relative;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #4f5a62 !important;
  white-space: nowrap;
  transition: 0.3s;
  text-transform: uppercase;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #eb1d25 !important;
}

@media (max-width: 991px) {
  .navbar-collapse {
    margin-top: -10px;
    background: #fff;
    box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.1);
  }
}

/*@media (max-width: 539px) {
  .nav-about, .nav-contact {
    display: none;
  }
}*/

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 60vh;
  background-color: #fff;
  position: relative;
  margin-top: 70px;
  padding: 0;
}

#hero .container {
  z-index: 2;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  color: #000;
}

#hero img {
  max-height: 40vh;
}

/*@media (max-width: 992px) {
  #hero {
    height: calc(100vh - 70px);
  }
}*/

@media (max-width: 576px) {
  #hero {
    height: 70vh;
    margin-top: 0px;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 30px;
    line-height: 36px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-top {
  padding-top: 60px;
}

.section-bg {
  background-color: #f4f6f6;
}

.section-no-bg {
  background-color: #fff;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  text-transform: uppercase;
}

.section-title h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #eb1d25;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
  text-align: left;
}

@media (max-width: 576px) {
  .offerings {
    padding-bottom: 24px;  
  } 
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Products
--------------------------------------------------------------*/
hr {
  border-top: 2px solid #DDDDDD;
}

.products p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  padding: 20px 40px;
  background: #fff;
  text-align: center;
  border: 5px solid #f4f6f6;
}

.contact .info i {
  font-size: 48px;
  margin-bottom: 15px;
}

.contact .info h4 {
  padding: 0;
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

/* to make p in contact red too
.contact .info p {
  color: #eb1d25;
}*/


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
@media (max-width: 768px) {
  #footer .col-md-4, #footer .col-md-8 {
    text-align: center !important;
  }
}

/*--------------------------------------------------------------
# appView Specific Styles
--------------------------------------------------------------*/
.appView {
  /* CSS styles specific to ?appview here */
  .hide-appview {
    display: none !important;
  }

  .section-top-app {
    padding-top: 0 !important;
  }

  .purple-appview {
    background-color: #a448a2 !important;
  }

  .section-title h2::after {
    background: #a448a2 !important;
  }
}
