  :root {
  --primary-color: #6a1b9a;
  --primary-dark: #4a0c6b;
  --secondary-color: #ff6d00;
  --light-bg: #f8f9fa;
  --dark-text: #2d3748;
  --light-text: #718096;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #6a1b9a 0%, #9c64bf 100%);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--light-bg);
  font-family: 'Poppins', sans-serif;
  color: var(--dark-text);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

p {
  margin-top: 0;
  margin-bottom: 0;
}

.artigo-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.artigo-py-5 {
  padding-top: 1.5rem;
  padding-bottom: 3rem;
}

.artigo-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.artigo-col-lg-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
  padding: 0 15px;
}

.artigo-col-lg-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding: 0 15px;
}

.artigo-col-md-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
}

.artigo-col-12 {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 15px;
}

.artigo-text-center {
  text-align: center;
}

.artigo-mb-3 {
  margin-bottom: 1rem;
}

.artigo-mb-4 {
  margin-bottom: 1.5rem;
}

.artigo-mb-2 {
  margin-bottom: 0.5rem;
}

.artigo-mt-auto {
  margin-top: auto;
}

.artigo-small {
  font-size: 0.875rem;
}

.artigo-text-muted {
  color: #6c757d !important;
}

.artigo-position-relative {
  position: relative;
}

.artigo-d-block {
  display: block;
}

.artigo-w-100 {
  width: 100%;
}

/* Header e Carrossel - ADICIONANDO TRANSIÇÕES */
.artigo-hero-section {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  margin-bottom: 3rem;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Para tablets e celulares */
@media (max-width: 768px) {
  .artigo-sidebar-section{
    margin-top: 50px;
  }
}

/* Para tablets e celulares */
@media (max-width: 1024px) {
  .artigo-sidebar-section{
    margin-top: 50px;
  }
}

.artigo-carousel {
  position: relative;
}

.artigo-carousel-inner {
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.artigo-carousel-item {
  position: relative;
  display: none;
  transition: opacity 0.8s ease-in-out;
  opacity: 0;
}

.artigo-carousel-item.active {
  display: block;
  opacity: 1;
}

.artigo-carousel-item-next.artigo-carousel-item-left,
.artigo-carousel-item-prev.artigo-carousel-item-right {
  opacity: 1;
}

.artigo-carousel-item-next,
.artigo-carousel-item-prev,
.artigo-carousel-item.active {
  transform: translateX(0);
}

.artigo-carousel-item-next,
.active.artigo-carousel-item-right {
  transform: translateX(100%);
}

.artigo-carousel-item-prev,
.active.artigo-carousel-item-left {
  transform: translateX(-100%);
}

.artigo-carousel-inner img {
  height: 500px;
  object-fit: cover;
  filter: brightness(0.8);
  width: 100%;
  transition: transform 0.8s ease-in-out;
}

.artigo-carousel-caption {
  position: absolute;
  bottom: 30%;
  text-align: left;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  backdrop-filter: blur(5px);
  max-width: 600px;
  margin-left: 5%;
  color: white;
  transition: all 0.8s ease-in-out;
  transform: translateY(20px);
  opacity: 0;
}

.artigo-carousel-item.active .artigo-carousel-caption {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.5s;
}

.artigo-carousel-caption h5 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  transition: transform 0.8s ease, opacity 0.8s ease;
  transform: translateY(20px);
  opacity: 0;
}

.artigo-carousel-item.active .artigo-carousel-caption h5 {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.7s;
}

.artigo-carousel-caption p {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--white);
  transition: transform 0.8s ease, opacity 0.8s ease;
  transform: translateY(20px);
  opacity: 0;
    line-height: 1.6;
}

.artigo-carousel-item.active .artigo-carousel-caption p {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.9s;
}

/* Ajustando os controles do carrossel */
.artigo-carousel-control-prev,
.artigo-carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5%;
  color: #fff;
  text-align: center;
  opacity: 0.7;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1;
  transition: opacity 0.3s;
}

.artigo-carousel-control-prev:hover,
.artigo-carousel-control-next:hover {
  opacity: 1;
}

.artigo-carousel-control-prev {
  left: 0;
}

.artigo-carousel-control-next {
  right: 0;
}

.artigo-carousel-control-prev-icon,
.artigo-carousel-control-next-icon {
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
  transition: transform 0.3s ease;
}

.artigo-carousel-control-prev:hover .artigo-carousel-control-prev-icon,
.artigo-carousel-control-next:hover .artigo-carousel-control-next-icon {
  transform: scale(1.2);
}

.artigo-carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.artigo-carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.artigo-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Cards de Artigos */
.artigo-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  border: none;
  border-radius: 5px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.artigo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(106, 27, 154, 0.2);
}

.artigo-article-image {
  height: 220px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.5s ease;
}

.artigo-card:hover .artigo-article-image {
  transform: scale(1.05);
}

.artigo-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.artigo-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.artigo-card-text {
  font-size: 0.95rem;
  color: var(--light-text);
  margin-bottom: 1.5rem;
  flex: 1;
   line-height: 1.6;
}

.artigo-article-meta {
  font-size: 0.85rem;
  color: var(--light-text);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.artigo-article-meta i {
  margin-right: 8px;
  color: var(--primary-color);
}

.artigo-ler-mais-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  color: var(--white);
  background: var(--gradient);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  width: fit-content;
  border: none;
  box-shadow: 0 4px 15px rgba(106, 27, 154, 0.3);
  cursor: pointer;
}

.artigo-ler-mais-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(106, 27, 154, 0.4);
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.artigo-ler-mais-btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.artigo-ler-mais-btn:hover i {
  transform: translateX(3px);
}

/* Sidebar */
.artigo-sidebar-section {
  background: var(--white);
  border-radius: 5px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.05);
    line-height: 1.6;
}

.artigo-sidebar-section h5 {
  border-bottom: 2px solid rgba(106, 27, 154, 0.1);
  padding-bottom: 0.75rem;
  margin-bottom: 1.25rem;
  color: var(--primary-dark);
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  line-height: 1.6;
}

.artigo-sidebar-section h5 i {
  margin-right: 10px;
  color: var(--primary-color);
}

.artigo-sidebar-link {
  display: flex;
  align-items: center;
  color: var(--dark-text);
  margin-bottom: 0.75rem;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  border-bottom: 1px dashed rgba(0,0,0,0.05);
  line-height: 1.6;
}

.artigo-sidebar-link i {
  margin-right: 10px;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.artigo-sidebar-link:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.artigo-sidebar-link:hover i {
  transform: translateX(3px);
  color: var(--secondary-color);
}

/* Busca */
.artigo-search-container {
  position: relative;
  margin-bottom: 2.5rem;
}

#artigo-inputBusca {
  width: 100%;
  max-width: 500px;
  padding: 12px 25px 12px 50px;
  border: 2px solid rgba(106, 27, 154, 0.2);
  border-radius: 5px;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
  background: var(--white);
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

#artigo-inputBusca:focus {
  border-color: var(--primary-color);
  box-shadow: 0 5px 20px rgba(106, 27, 154, 0.1);
}

.artigo-search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  font-size: 1.1rem;
}

/* Paginação */
.artigo-pagination {
  justify-content: center;
  margin-top: 3rem;
  display: flex;
  gap: 8px;
  user-select: none;
}

.artigo-page-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  background: var(--white);
  color: var(--primary-color);
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  min-width: 40px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.artigo-page-btn:hover:not(.disabled):not(.active) {
  background: var(--gradient);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(106, 27, 154, 0.3);
}

.artigo-page-btn.active {
  background: var(--gradient);
  color: var(--white);
  cursor: default;
  box-shadow: 0 5px 15px rgba(106, 27, 154, 0.3);
}

.artigo-page-btn.disabled {
  cursor: not-allowed;
  opacity: 0.5;
  pointer-events: none;
}

/* Seção de título */
.artigo-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.artigo-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-dark);
  position: relative;
  padding-bottom: 10px;
}

.artigo-section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 4px;
  background: var(--gradient);
  border-radius: 2px;
}

/* Formulário */
.artigo-form-control {
    padding: 0.8rem;
    border: 1px solid #6a1b9a26;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    background: rgba(255, 255, 255, 0.1);
    color: #000000;
    line-height: 1.5;
    transition: all 0.3s ease;
    width: 305px;
}

.artigo-form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(106, 27, 154, 0.1);
  outline: none;
}

.artigo-input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
  gap: 12px;
  flex-direction: column;
}

.artigo-input-group > .artigo-form-control {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
}

.artigo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  line-height: 1.5;
  color: var(--white);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  width: 100%;
  margin-top: 8px;
}

.artigo-btn:hover {
  color: var(--white);
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(106, 27, 154, 0.3);
}

.artigo-btn-primary {
  color: #fff;
  background-color: #6a1b9a;
  border-color: #6a1b9a;
}

.artigo-btn-primary:hover {
  color: #fff;
  background-color: #5a167d;
  border-color: #511571;
}

/* Newsletter melhorada */
.artigo-newsletter-container {
    background: linear-gradient(135deg, var(--white) 0%, var(--white) 100%);
    border-radius: 5px;
    padding: 2rem;
    color: #000000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.artigo-newsletter-container::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  opacity: 0.5;
}

.artigo-newsletter-content {
  position: relative;
  z-index: 1;
}

.artigo-newsletter-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
  text-align: center;
}

.artigo-newsletter-title {
    font-size: 1.2rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    line-height: 1.4;
}

.artigo-newsletter-description {
    color: #546379;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 13px;
}

.artigo-newsletter-form {
  margin-top: 1.5rem;
}

.artigo-form-group {
  margin-bottom: 1rem;
  position: relative;
}

.artigo-form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.8rem;
  color: #000000;
  opacity: 0.9;
}

.artigo-newsletter-btn {
  background: #6a1b9a;
  border: 2px solid #6a1b9a;
  color: var(--white);
  font-weight: 600;
  padding: 0.875rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-top: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.artigo-newsletter-btn:hover:not(:disabled) {
  background: #691b9af1;
  border-color: #6a1b9a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(140, 0, 255, 0.3);
  color: var(--white);
}

.artigo-newsletter-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.artigo-newsletter-privacy {
  font-size: 0.75rem;
  opacity: 0.7;
  text-align: center;
  margin-top: 1rem;
  line-height: 1.4;
}

/* Mensagens de alerta */
.artigo-alert {
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: all 0.4s ease-in-out;
  transform: translateY(-10px);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
}

.artigo-alert.show {
  transform: translateY(0);
  opacity: 1;
  max-height: 200px;
}

.artigo-alert.auto-hide {
  animation: artigo-slideOut 0.4s ease-in-out 5s forwards;
}

@keyframes artigo-slideOut {
  0% {
    transform: translateY(0);
    opacity: 1;
    max-height: 200px;
  }
  100% {
    transform: translateY(-20px);
    opacity: 0;
    max-height: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.artigo-alert-success {
  color: #0f5132;
  background-color: #d1e7dd;
  border-color: #badbcc;
}

.artigo-alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.artigo-alert-info {
  color: #055160;
  background-color: #cff4fc;
  border-color: #b6effb;
}

.artigo-alert ul {
  margin-bottom: 0;
  padding-left: 1rem;
}

.artigo-is-invalid {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.1) !important;
}

.artigo-invalid-feedback {
  display: block;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #ff6b6b;
  font-weight: 500;
  animation: artigo-slideDown 0.3s ease;
}

@keyframes artigo-slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Informações de geolocalização */
.artigo-geo-info {
  font-size: 0.7rem;
  opacity: 0.6;
  text-align: center;
  margin-top: 0.5rem;
  font-style: italic;
}

/* Loading animation */
.artigo-btn-loading {
  position: relative;
  color: transparent !important;
}

.artigo-btn-loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  border-top-color: transparent;
  animation: artigo-spin 0.8s ease infinite;
}

@keyframes artigo-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Success checkmark */
.artigo-success-checkmark {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.artigo-success-checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: artigo-stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes artigo-stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

/* Responsividade */
@media (max-width: 1200px) {
  .artigo-container {
    max-width: 1140px;
  }
}

@media (max-width: 992px) {
  .artigo-container {
    max-width: 960px;
  }
  
  .artigo-col-lg-8, .artigo-col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .artigo-carousel-inner img {
    height: 400px;
  }
  
  .artigo-carousel-caption {
    bottom: 20%;
  }
  
  .artigo-carousel-caption h5 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .artigo-container {
    max-width: 720px;
  }
  
  .artigo-col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .artigo-carousel-inner img {
    height: 300px;
  }
  
  .artigo-carousel-caption {
    bottom: 10%;
    padding: 1rem;
    margin-left: 0;
    max-width: 100%;
  }
  
  .artigo-carousel-caption h5 {
    font-size: 1.5rem;
  }
  
  .artigo-carousel-caption p {
    font-size: 1rem;
  }
  
  .artigo-section-title {
    font-size: 1.5rem;
  }
  
  .artigo-carousel-control-prev,
  .artigo-carousel-control-next {
    width: 10%;
  }
  
  .artigo-newsletter-container {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .artigo-container {
    max-width: 540px;
  }
  
  .artigo-carousel-inner img {
    height: 250px;
  }
  
  .artigo-card {
    margin-bottom: 1.5rem;
  }
  
  .artigo-pagination {
    flex-wrap: wrap;
  }
  
  .artigo-carousel-caption h5 {
    font-size: 1.2rem;
  }
  
  .artigo-carousel-caption p {
    font-size: 0.9rem;
  }
  
  .artigo-newsletter-title {
    font-size: 1.2rem;
  }
}

/* Efeitos especiais */
.artigo-hover-shine {
  position: relative;
  overflow: hidden;
}

.artigo-hover-shine:after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
}

.artigo-hover-shine:hover:after {
  left: 100%;
}

/* Badge */
.artigo-badge-popular {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--secondary-color);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 1;
  box-shadow: 0 3px 10px rgba(255, 109, 0, 0.3);
}

.far, .fas {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fas {
  font-weight: 900;
}

.fa-calendar-alt:before {
  content: "\f073";
}

.fa-arrow-right:before {
  content: "\f061";
}

.fa-clock:before {
  content: "\f017";
}

.fa-chevron-right:before {
  content: "\f054";
}

.fa-fire:before {
  content: "\f06d";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-paper-plane:before {
  content: "\f1d8";
}

.fa-search:before {
  content: "\f002";
}

.fa-book-open:before {
  content: "\f518";
}

.fa-chart-line:before {
  content: "\f201";
}

.fa-chess:before {
  content: "\f439";
}

.fa-star:before {
  content: "\f005";
}

.fa-chevron-left:before {
  content: "\f053";
}

.fa-map-marker-alt:before {
  content: "\f3c5";
}

.fa-check:before {
  content: "\f00c";
}