body {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  background-color: #f2f2f2;
}

/* Defaults */

.m-top {
  margin-top: 60px;
}

.fa-facebook:hover {
  color: #3b5998;
}

.fa-instagram:hover {
  color: #3f729b;
}

.btn-boleto {
  border: 2px solid #fff;
  border-radius: 0;
  padding: 20px 44px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.6px;
  background-color: transparent;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  margin-top: 20px;
}

.btn-boleto:hover {
  border: 2px solid #ed3237;
  background-color: #ed3237;
  color: #fff;
}

.btn-standard {
  border: 2px solid #ed3237;
  border-radius: 0;
  padding: 10px 24px;
  color: #ed3237;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.6px;
  background-color: transparent;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}

.btn-standard:hover {
  background-color: #ed3237;
  color: #fff;
}

/* Header */

#header {
  position: fixed;
  padding: 0px 0px 24px 0px;
  top: 0;
  right: 0;
  left: 0;
  z-index: 977;
}

#header.header-scrolled {
  transition: all 0.5s;
  background-color: #fff;
  height: 74px;
}

#header.header-scrolled .header-top {
  display: none;
}

.header-top {
  padding: 6px;
}

.header-flex {
  display: flex;
  justify-content: space-between;
}

.menu-social a {
  margin-left: 10px;
  font-size: 16px;
  color: #fff;
}

.menu-contact a {
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
  font-size: 12px;
  letter-spacing: 0.6px;
  margin-right: 20px;
  color: #fff;
}

/* Main Menu */

.my-navbar {
  margin: 0;
  border: none;
}

.bar-container {
  position: absolute;
  right: 0;
  left: 0;
  padding: 12px 30px;
  margin-right: auto;
  margin-left: auto;
  background-color: #fff;
}

.navbar-nav {
  font-size: 14px;
  letter-spacing: 0.8px;
}

.navbar-nav li a {
  color: #666;
}

.navbar-nav li a:hover {
  background-color: transparent;
  color: #ed3237;
}

/* Brand */

.navbar-brand {
  padding: 0;
}

.navbar-brand img {
  width: auto;
  height: 100%;
}

/* Animação X - Mobile */

.navbar-toggle {
  border: none;
  background: transparent !important;
}

.navbar-toggle .icon-bar {
  background-color: #666;
}

.navbar-toggle:hover {
  background: transparent !important;
}

.navbar-toggle .icon-bar {
  width: 22px;
  transition: all 0.2s;
}

.navbar-toggle .top-bar {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
}

.navbar-toggle .middle-bar {
  opacity: 0;
}

.navbar-toggle .bottom-bar {
  transform: rotate(-45deg);
  transform-origin: 10% 90%;
}

.navbar-toggle.collapsed .top-bar {
  transform: rotate(0deg);
}

.navbar-toggle.collapsed .middle-bar {
  opacity: 1;
}

.navbar-toggle.collapsed .bottom-bar {
  transform: rotate(0deg);
}

/* Sections */

section {
  position: relative;
  padding-top: 100px;
  padding-bottom: 80px;
}

.title-section {
  text-align: center;
  font-weight: 500;
  letter-spacing: 2px;
  color: #1e1e1e;
}

h1.title-section::after {
  content: '';
  width: 50px;
  height: 3px;
  display: block;
  margin: 10px auto;
  background-color: #ed3237;
}

/* Home */

.bg-home {
  background-image: url('../assets/img/home/background-home.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  height: 100vh;
}

.overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.bg-home .overlay {
  background-color: rgba(0, 0, 0, 0.30);
}

.content-home {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  text-align: center;
  -webkit-transform: translate(-50%, 50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.content-home h1 {
  color: #fff;
  font-size: 72px;
  font-weight: 700;
}

.content-home h4 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 24px;
  font-weight: 300;
}

/* About */

.img-about {
  margin: 0 auto;
  margin-top: 30px;
}

.content-about {
  text-align: justify;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.6px;
}

/* Products */

.section-product {
  background-color: #f7f7f7;
}

.content-product {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 25px;
}

.content-product h4 {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 300;
  margin-bottom: 20px;
}

.content-product p {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.6px;
  line-height: 24px;
}

.card {
  text-align: center;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 15px;
}

.card-body {
  margin-top: 20px;
  margin-bottom: 20px;
}

.card-title {
  margin-bottom: 15px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.6px;
}

.card img:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
}

/* Contact */

.section-contact {
  background-color: #f2f2f2;
}

.section-contact .title-section {
  margin-bottom: 50px;
}

.contact-form input, .contact-form textarea {
  color: #777;
  font-size: 14px;
  border: 1px solid #eee;
  border-radius: 0;
  padding-left: 20px;
  padding-right: 20px;
  height: 50px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.contact-form textarea {
  height: 150px;
  resize: none;
  padding: 20px;
}

.contact-form .btn-standard {
  margin-bottom: 15px;
}

.maps {
  margin-top: 50px;
}

/* Footer */

footer {
  background-color: #ed3237;
  padding-top: 30px;
}

.content-footer {
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
}

.content-footer h4 {
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.content-footer p {
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
  letter-spacing: 0.6px;
}

.social-footer {
  font-size: 18px;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.social-footer a i {
  padding: 6px;
  color: #fff;
  border-radius: 50%;
  height: 34px;
  width: 34px;
}

.copyright {
  text-align: center;
  border-top: 1px solid rgba(250, 250, 250, 0.2);
  margin-top: 30px;
  padding-top: 30px;
  padding-bottom: 20px;
  font-weight: 300;
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.88px;
}

/* Back To Top */

.smoothscroll-top {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  text-align: center;
  z-index: 99;
  background-color: #ed3237;
  color: #fff;
  width: 47px;
  height: 44px;
  line-height: 44px;
  right: 15px;
  bottom: -25px;
  border-radius: 0;
  transition: all .5s ease-in-out;
  transition-delay: .2s;
}

.smoothscroll-top:hover {
  background-color: #ed3237;
  color: #fff;
  transition: all .2s ease-in-out;
  transition-delay: 0;
}

.smoothscroll-top.show {
  visibility: visible;
  cursor: pointer;
  opacity: 1;
  bottom: 50px;
}

.smoothscroll-top i.fa {
  line-height: inherit;
}

/* Medias Queries */

@media (min-width: 767px) {
  .img-about-mobile {
    display: none;
  }
}

@media (max-width: 768px) {
  .bg-home {
    background-image: url('../assets/img/home/bg-home-mobile.jpg');
  }
  .content-home h1 {
    font-size: 24px;
  }
  .header-top {
    display: none;
  }
  .bar-container {
    margin: 10px;
  }
  .img-about {
    display: none;
  }
  .img-about-mobile {
    margin: 0 auto;
    margin-bottom: 20px;
  }
  #header.header-scrolled {
    background-color: transparent;
  }
}

@media (max-width: 991px) {
  .content-home h1 {
    font-size: 48px;
  }
  .content-home h4 {
    font-size: 18px;
  }
  #header {
    padding: 0px 0px 0px 0px;
  }
  .title-footer {
    margin-top: 40px;
  }
  .img-about {
    margin-bottom: 20px;
  }
}