* {
  box-sizing: border-box;
  padding: 0px;
  margin: 0px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

a {
  text-decoration: none;
}

.hero-section {
  display: flex;
  min-height: 300px;
  justify-content: center;
}

.body {
  background-color: #f3fafa;
}

.content {
  display: flex;
  width: 90%;
  max-width: 1200px;
  flex-direction: column;
  justify-content: center;
}

.navbar {
  position: absolute;
  top: 0px;
  display: flex;
  width: 100%;
  height: 50px;
  justify-content: center;
  background-color: #fff;
  box-shadow: 4px 0px 20px 0 rgba(109, 126, 129, 0.15);
}

.hero-headline {
  font-family: Righteous, sans-serif;
  color: #001a41;
  font-size: 68px;
  line-height: 72px;
  text-align: center;
}

.templates-section {
  display: flex;
  min-height: 599px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.templates-row {
  position: relative;
  display: flex;
  width: 100%;
 /* height: 350px;*/
  padding: 15px;
  align-items: center;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 2px 100px 0 rgba(109, 126, 129, 0.15);
  font-family: Roboto, sans-serif;
}

.templates-wrapper {
  display: flex;
  margin-bottom: 80px;
  flex-direction: column;
}

.templates-title {
  font-family: Roboto, sans-serif;
  color: #001a41;
  font-size: 32px;
  font-weight: 500;
}

.templates-item {
  position: relative;
  height: 95%;
  min-width: 180px;
  border-radius: 10px;
  background-color: #d9d9d9;
  background-image: url('../images/Screenshot_1.5.png');
  background-position: 50% 50%;
  background-size: cover;
  box-shadow: 0 2px 50px 0 rgba(44, 45, 50, 0.2);
  color: #d9d9d9;
}

.templates-item-overlay {
  position: absolute;
  left: 0%;
  top: 0%;
  right: auto;
  bottom: auto;
  z-index: 4;
  display: flex;
  width: 100%;
  height: 100%;
  padding-bottom: 40px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  border-radius: 10px;
  background-color: rgba(225, 255, 255, 0.5);
  background-image: linear-gradient(133deg, transparent, rgba(200, 255, 255, 0.8));
  opacity: 0;
}

.templates-item:hover .templates-item-overlay {
  opacity: 1;
}

/* Botões */
.btn-primary,
.btn-light,
.btn-dark,
.btn-icon {
  display: flex;
  height: 30px;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}

.btn-primary,
.btn-light,
.btn-dark {
  margin: 0px 1rem;
  padding: .15rem .75rem;
  background-color: #0050C9;
  color: #fff;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, .15);
}

.btn-light {
  background-color: #fff;
  color: #001a41;
}

.btn-dark {
  background-color: #001a41;
}

.btn-primary:hover {
  background-color: #2F82FF;
}

.btn-dark:hover {
  background-color: #023d97;
}

.btn-icon {
  width: 30px;
  margin-right: .25rem;
  background-color: #fff;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, .10);
}

.btn-icon:hover,
.btn-light:hover {
  background-color: #F3FAFA;
}

.btn-icon img {
  width: 15px;
  height: 15px;
}

/*
.btn-primary {
  width: auto;
  height: 35px;
  padding-top: 7px;
  padding-bottom: 7px;
  border-radius: 5px;
  background-color: #0050c9;
  font-size: 16px;
}
*/
.templates-btn-prev {
  position: absolute;
  left: -20px;
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
}

.templates-btn-next {
  position: absolute;
  right: -20px;
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
}

.templates-icon {
  width: 20px;
  height: 20px;
}

.nav-content {
  display: flex;
  width: 90%;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo {
  max-height: 40px;
}

@media screen and (max-width: 991px) {
  .hero-headline {
    font-size: 58px;
    line-height: 62px;
  }

  .templates-title {
    font-size: 28px;
  }
}

@media screen and (max-width: 767px) {
  .hero-headline {
    font-size: 42px;
    line-height: 50px;
  }

  .templates-title {
    font-size: 26px;
  }
}

@media screen and (max-width: 479px) {
  .templates-btn-prev {
    left: -15px;
  }

  .templates-btn-next {
    right: -15px;
  }
}