/* RESET */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}



/* =========================
   SEARCH BAR
========================= */

.search-box{
  position:relative;
  display:flex;
  align-items:center;
  margin-right:20px;
}

.search-box input{
  width:260px;
  padding:12px 45px 12px 18px;
  border:none;
  outline:none;
  border-radius:40px;
  background:#fff;
  color:#222;
  font-size:15px;
  transition:.2s;
}

.search-box input:focus{
  box-shadow:0 0 0 3px rgba(255,255,255,0.25);
}

.search-box input::placeholder{
  color:#777;
}

.search-icon{
  position:absolute;
  right:15px;
  color:#666;
  font-size:22px;
}

/* MOBILE SEARCH */

.mobile-search-item{
  width:100%;
  padding:20px;
}

.mobile-search{
  width:100%;
}

.mobile-search input{
  width:100%;
}

/* RESPONSIVO */

@media(max-width: 900px){

  .search-box input{
    width:200px;
  }

}

@media(max-width: 900px){
    .search-box input{
    width:150px;
  }

}

@media(max-width: 600px){

  .search-box{
    display:none;
  }

  .mobile-search{
    display:flex;
  }

}

body{
  font-family: Arial, Helvetica, sans-serif;
  background:#f5f7fa;
  color:#222;
  line-height:1.8;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
  color:inherit;
}

/* HEADER */

.topbar{
  width:100%;
  background:#274074;
  color:#fff;
  padding:18px 0;
}

.topbar-container{
  width:90%;
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  
}

.logo{
  
  font-size:24px;
  font-weight:700;
  display:flex;
  align-items:center;
  gap:10px;

}

.logo img{
  width:130px;
  height:130px;
  object-fit:contain;
}



/* =========================
   MENU NOVO
========================= */

.topbar{
  width:100%;
  background:#274074;
  padding:14px 0;
  position:relative;
  z-index:1000;
}

.topbar-container{
  width:90%;
  max-width:1200px;
  margin:auto;

  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo img{
  width:90px;
  height:90px;
  object-fit:contain;
}

/* MENU */

.menu{
  display:flex;
  align-items:center;
}

.menu-desktop{
  display:flex;
  align-items:center;
  gap:5px;

  list-style:none;
}

.menu-desktop li{
  position:relative;
}

.menu-desktop a{
  display:flex;
  align-items:center;

  color:#fff;
  text-decoration:none;

  padding:14px 18px;

  border-radius:8px;

  font-size:15px;
  font-weight:500;

  transition:.2s;
}

.menu-desktop a:hover{
  background:rgba(255,255,255,0.1);
}

/* LOGO TEXTO */

.logo-text{
  font-size:22px;
  font-weight:700 ;
}

/* DROPDOWN */

.dropdown-menu{
  position:absolute;

  top:100%;
  left:0;

  background:#273f74ce;

  min-width:260px;

  border-radius:12px;

  box-shadow:0 10px 30px rgba(0,0,0,0.12);

  padding:10px 0;

  opacity:0;
  visibility:hidden;
  transform:translateY(10px);

  transition:.25s;

  list-style:none;
}

.dropdown:hover .dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.dropdown-menu li{
  width:100%;
}

.dropdown-menu a{
  color:#ffffff;
  width:100%;
  padding:14px 18px;
  border-radius:0;
}

.dropdown-menu a:hover{
  background:#f5f5f5;
  color:#ff8c00;
}

/* SEARCH */

.search-box{
  position:relative;
}

.search-box input{
  width:240px;

  padding:12px 42px 12px 18px;

  border:none;
  outline:none;

  border-radius:40px;

  font-size:14px;
}

.search-icon{
  position:absolute;
  right:14px;
  top:50%;
  transform:translateY(-50%);
  color:#666;
}

/* HAMBURGER */

.hamburger{
  display:none;

  background:none;
  border:none;

  color:#fff;
  cursor:pointer;
}

.hamburger span{
  font-size:38px;
}

/* MOBILE MENU */

.mobile-menu{
  position:fixed;

  top:0;
  right:-100%;

  width:300px;
  height:100vh;

  background:#fff;

  padding:25px;

  display:flex;
  flex-direction:column;

  gap:5px;

  list-style:none;

  transition:.3s;

  box-shadow:-10px 0 25px rgba(0,0,0,0.15);

  z-index:9999;
}

.mobile-menu.active{
  right:0;
}

.mobile-menu a{
  text-decoration:none;
  color:#222;

  padding:14px 10px;

  border-radius:8px;

  font-size:16px;
}

.mobile-menu a:hover{
  background:#f4f4f4;
}

.mobile-close{
  display:flex;
  justify-content:flex-end;
}

.mobile-close button{
  border:none;
  background:none;
  cursor:pointer;
}

.mobile-close span{
  font-size:34px;
}

.mobile-category-title{
  margin-top:12px;

  padding:12px 10px;

  font-weight:700;

  color:#274074;
}

/* RESPONSIVO */

@media(max-width:1100px){

  .desktop-search{
    display:none;
  }

}

@media(max-width:900px){

  .menu-desktop{
    display:none;
  }

  .hamburger{
    display:block;
  }

}

@media(max-width:600px){

  .logo img{
    width:70px;
    height:70px;
  }

  .mobile-menu{
    width:60%;
  }

}

/*
.menu{
  display:flex;
  justify-content: flex-end;
 
  
}

.menu ul{
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.menu li{
  height: 60px;
}

.aparece{
  display: none;
}

.menu a{
  height: 100%;
  padding: 0 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: #fff;
}

.menu .mobile{
  
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 280px;
  z-index: 999;
  background-color: rgba(3, 9, 31, 0.523);
  box-shadow: -10px 0 10px rgba(0,0,0,0.1);
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  /*backdrop-filter: blur(10px);*/
/*}

.menu a:hover{
  opacity:1;
}

@media(max-width: 1000px){
  .menu a{
  padding: 0 20px;
}
}

@media(max-width: 900px){
  .menu a{
  padding: 0 10px;
}
}

@media(max-width: 800px){
  .menu a{
  padding: 0 5px;
}
}

/* FOOTER */

footer{
  margin-top:60px;
  background:#274074;
  color:#fff;
  padding:40px 0;
  text-align:center;
  font-size:15px;
}

/* =========================
   HOME PAGE
========================= */

.home-page{
  padding:40px;
}

.home-container{
  max-width:1200px;
  margin:auto;
  background:#fff;
  padding:30px;
  border-radius:12px;
  box-shadow:0 4px 20px rgba(0,0,0,0.08);

  display:grid;
  grid-template-columns: 2fr 1fr;
  gap:40px;
}

.hero-image-home{
  width:100%;
  height:320px;
  border-radius:8px;
  overflow:hidden;
  margin-bottom:28px;
  background:#ddd;
}

.hero-image-home img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.main-title{
  font-size:42px;
  line-height:1.2;
  font-weight:700;
  margin-bottom:22px;
  color:#1f1f1f;
}

.description{
  color:#666;
  font-size:18px;
  margin-bottom:40px;
  line-height:1.6;
}

.author{
  display:flex;
  justify-content:space-between;
  align-items:center;
  color:#888;
  font-size:15px;
  border-top:1px solid #eee;
  padding-top:20px;
}

.sidebar-title{
  font-size:22px;
  font-weight:700;
  margin-bottom:25px;
  padding-bottom:12px;
  border-bottom:2px solid #ff0000;
}

.post-list{
  display:flex;
  flex-direction:column;
  gap:24px;
}

.post-item{
  border-bottom:1px solid #eee;
  padding-bottom:18px;
}

.post-item:last-child{
  border-bottom:none;
}

.post-title{
  font-size:17px;
  font-weight:600;
  line-height:1.5;
  margin-bottom:10px;
  transition:0.2s;
}

.post-title:hover{
  color:#ff5a1f;
}

.post-meta{
  display:flex;
  justify-content:space-between;
  color:#888;
  font-size:14px;
}

/* =========================
   ARTICLE PAGE
========================= */

.article-container{
  width:90%;
  max-width:1200px;
  margin:40px auto;

  display:grid;
  grid-template-columns: 2fr 340px;
  gap:40px;
}

.article{
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 4px 25px rgba(0,0,0,0.06);
}

.hero-image{
  width:100%;
  height:420px;
  overflow:hidden;
}

.hero-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.article-content{
  padding:45px;
}

.category{
  display:inline-block;
  background:#fff1eb;
  color:#ff5a1f;
  font-size:13px;
  font-weight:700;
  padding:8px 14px;
  border-radius:30px;
  margin-bottom:22px;
  text-transform:uppercase;
  letter-spacing:.5px;
}

h1{
  font-size:46px;
  line-height:1.2;
  margin-bottom:20px;
  color:#111827;
}

.article-meta{
  display:flex;
  gap:18px;
  color:#777;
  font-size:14px;
  margin-bottom:35px;
  padding-bottom:25px;
  border-bottom:1px solid #eee;
}

.intro{
  font-size:20px;
  color:#444;
  margin-bottom:40px;
}

h2{
  margin-top:50px;
  margin-bottom:18px;
  font-size:32px;
  line-height:1.3;
  color:#111827;
}

p{
  margin-bottom:22px;
  color:#444;
  font-size:18px;
}

ul{
  padding-left:22px;
  margin-bottom:30px;
}

li{
  margin-bottom:14px;
  color:#444;
  font-size:18px;
}

strong{
  color:#111827;
}

/* ADS */

.ad-banner{
  width:100%;
  min-height:140px;
  border:2px dashed #d6d6d6;
  background:#fafafa;
  border-radius:12px;

  display:flex;
  justify-content:center;
  align-items:center;

  color:#888;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:1px;

  margin:45px 0;
}

.ad-large{
  min-height:280px;
}

/* SIDEBAR */

.sidebar{
  display:flex;
  flex-direction:column;
  gap:30px;
}

.sidebar-card{
  background:#fff;
  padding:28px;
  border-radius:14px;
  box-shadow:0 4px 25px rgba(0,0,0,0.05);
}

.sidebar-card h3{
  margin-bottom:20px;
  font-size:22px;
  color:#111827;
}

.related-post{
  padding:16px 0;
  border-bottom:1px solid #eee;
}

.related-post:last-child{
  border-bottom:none;
  padding-bottom:0;
}

.related-post a{
  font-weight:600;
  line-height:1.5;
  transition:.2s;
}

.related-post a:hover{
  color:#ff5a1f;
}

/* CTA */

.cta-box{
  margin-top:60px;
  background:#111827;
  color:#fff;
  padding:40px;
  border-radius:14px;
}

.cta-box h3{
  font-size:32px;
  margin-bottom:16px;
}

.cta-box p{
  color:#d1d5db;
  margin-bottom:24px;
}

.cta-button{
  display:inline-block;
  background:#ff5a1f;
  color:#fff;
  padding:14px 28px;
  border-radius:8px;
  font-weight:700;
  transition:.2s;
}

.cta-button:hover{
  background:#e14d17;
}

/* RESPONSIVO */

@media(max-width: 1000px){

  .article-container,
  .home-container{
    grid-template-columns:1fr;
  }

  h1{
    font-size:36px;
  }

  .main-title{
    font-size:32px;
  }

  .article-content{
    padding:28px;
  }
  
  

}

@media(max-width: 600px){
    
    
    .some{
    display:none;
  }

  .aparece{
  display: block;
  }

  h1{
    font-size:30px;
  }

  h2{
    font-size:25px;
  }

  p, li{
    font-size:17px;
  }

  .hero-image{
    height:260px;
  }

  .home-page{
    padding:20px;
  }

}

/* =========================
   ABOUT PAGE
========================= */

.about-page{
  width:100%;
}

.about-hero{
  background:#ff5a1f;
  color:#fff;
  padding:90px 20px;
  margin-top: 120px;
}

.about-hero-content{
  width:90%;
  max-width:1000px;
  margin:auto;
  text-align:center;
}

.about-badge{
  display:inline-block;
  background:#ff5a1f;
  color:#fff;
  padding:8px 16px;
  border-radius:30px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.5px;
  margin-bottom:24px;
}

.about-hero h1{
  color:#fff;
  font-size:52px;
  line-height:1.15;
  margin-bottom:24px;
}

.about-hero p{
  color:#d1d5db;
  font-size:20px;
  max-width:760px;
  margin:auto;
}

.about-container{
  width:90%;
  max-width:1200px;
  margin:60px auto;

  display:grid;
  grid-template-columns: 2fr 340px;
  gap:40px;
}

.about-content{
  background:#fff;
  padding:50px;
  border-radius:14px;
  box-shadow:0 4px 25px rgba(0,0,0,0.05);
}

.about-content h2{
  margin-top:0;
}

.about-highlight{
  background:#fff7f3;
  border-left:5px solid #ff5a1f;
  padding:30px;
  border-radius:12px;
  margin:40px 0;
}

.about-highlight h3{
  margin-bottom:18px;
  color:#111827;
  font-size:24px;
}

.about-sidebar{
  display:flex;
  flex-direction:column;
  gap:30px;
}

/* RESPONSIVO */

@media(max-width: 1000px){

  .about-container{
    grid-template-columns:1fr;
  }

  .about-hero h1{
    font-size:40px;
  }

}

@media(max-width: 600px){

  .about-content{
    padding:28px;
  }

  .about-hero{
    padding:70px 20px;
  }

  .about-hero h1{
    font-size:32px;
  }

  .about-hero p{
    font-size:18px;
  }

}

/* =========================
   ARTICLES PAGE
========================= */

.articles-hero{
  background:#111827;
  color:#fff;
  padding:90px 20px;
}

.articles-hero-content{
  width:90%;
  max-width:1000px;
  margin:auto;
  text-align:center;
}

.articles-badge{
  display:inline-block;
  background:#ff5a1f;
  color:#fff;
  padding:8px 16px;
  border-radius:30px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.5px;
  margin-bottom:24px;
}

.articles-hero h1{
  color:#fff;
  font-size:52px;
  line-height:1.15;
  margin-bottom:24px;
}

.articles-hero p{
  color:#d1d5db;
  font-size:20px;
  max-width:760px;
  margin:auto;
}

.articles-container{
  width:90%;
  max-width:1200px;
  margin:60px auto;

  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(320px, 1fr));
  gap:32px;
}

.article-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 4px 25px rgba(0,0,0,0.06);
  transition:.25s;
}

.article-card:hover{
  transform:translateY(-6px);
}

.article-card-image{
  width:100%;
  height:220px;
  overflow:hidden;
}

.article-card-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.article-card-content{
  padding:28px;
}

.article-category{
  display:inline-block;
  background:#fff1eb;
  color:#ff5a1f;
  font-size:12px;
  font-weight:700;
  padding:7px 14px;
  border-radius:30px;
  margin-bottom:18px;
  text-transform:uppercase;
}

.article-card-content h2{
  font-size:28px;
  line-height:1.3;
  margin-bottom:16px;
  color:#111827;
}

.article-card-content p{
  color:#666;
  margin-bottom:26px;
  font-size:17px;
}

.article-card-footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
}

.article-date{
  color:#888;
  font-size:15px;
}

.article-button{
  display:inline-block;
  background:#ff5a1f;
  color:#fff;
  padding:12px 22px;
  border-radius:8px;
  font-weight:700;
  transition:.2s;
}

.article-button:hover{
  background:#e14d17;
}

@media(max-width: 700px){

  .articles-hero{
    padding:70px 20px;
  }

  .articles-hero h1{
    font-size:34px;
  }

  .articles-hero p{
    font-size:18px;
  }

  .article-card-content{
    padding:22px;
  }

  .article-card-content h2{
    font-size:24px;
  }

  .article-card-footer{
    flex-direction:column;
    align-items:flex-start;
  }

  .article-card-content p{
  display: none;
}

.article-category{
  display: none;
}

.article-date{
  display: none;
}

}/* =========================
   FAQ SECTION
========================= */

.faq-section{
  width:90%;
  max-width:1200px;
  margin:80px auto;
}

.faq-container{
  background:#fff;
  border-radius:18px;
  padding:50px;
  box-shadow:0 4px 25px rgba(0,0,0,0.06);
}

.faq-header{
  text-align:center;
  margin-bottom:50px;
}

.faq-badge{
  display:inline-block;
  background:#fff1eb;
  color:#ff5a1f;
  padding:8px 16px;
  border-radius:30px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.5px;
  margin-bottom:22px;
}

.faq-header h2{
  margin-top:0;
  font-size:42px;
  color:#111827;
  margin-bottom:18px;
}

.faq-header p{
  max-width:700px;
  margin:auto;
  color:#666;
  font-size:18px;
}

.faq-grid{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.faq-item{
  border:1px solid #ececec;
  border-radius:14px;
  overflow:hidden;
  transition:.2s;
}

.faq-item.active{
  border-color:#ff5a1f;
}

.faq-question{
  width:100%;
  background:#fff;

  border:none;
  outline:none;

  padding:24px 28px;

  display:flex;
  justify-content:space-between;
  align-items:center;

  cursor:pointer;

  font-size:18px;
  font-weight:700;
  color:#111827;

  transition:.2s;
}

.faq-question:hover{
  background:#fff7f3;
}

.faq-question span{
  font-size:28px;
  color:#ff5a1f;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .3s ease;
}

.faq-answer p{
  padding:0 28px 28px;
  margin:0;
  color:#555;
  font-size:17px;
  line-height:1.7;
}

.faq-item.active .faq-answer{
  max-height:300px;
}

/* RESPONSIVO */

@media(max-width:700px){

  .faq-container{
    padding:28px;
  }

  .faq-header h2{
    font-size:32px;
  }

  .faq-header p{
    font-size:17px;
  }

  .faq-question{
    font-size:16px;
    padding:20px;
  }

  .faq-answer p{
    padding:0 20px 20px;
    font-size:16px;
  }

}


/*Novo css*/


/* =========================
   NOVA HOME
========================= */

.home-layout{
  padding:30px 20px;
}

.home-layout .home-container{
  width:90%;
  max-width:1400px;
  margin:auto;

  display:grid;
  grid-template-columns:290px 1fr 260px;
  gap:24px;

  background:none;
  box-shadow:none;
  padding:0;
}

/* SIDEBAR */

.left-sidebar,
.right-sidebar{
  display:flex;
  flex-direction:column;
  gap:24px;
}

.sidebar-card{
  background:#fff;
  border-radius:16px;
  padding:22px;

  box-shadow:0 3px 15px rgba(0,0,0,0.06);
}

.sidebar-card h2{
  font-size:28px;
  margin-bottom:20px;
  border-bottom:2px solid #ececec;
  padding-bottom:12px;
}

/* FEATURED */

.featured-post{
  margin-bottom:24px;
}

.featured-post:last-child{
  margin-bottom:0;
}

.featured-post img{
  height:180px;
  object-fit:cover;
  border-radius:12px;
  margin-bottom:12px;
}

.featured-post h3{
  font-size:20px;
  line-height:1.4;
  margin-bottom:10px;
}

.featured-post span{
  color:#777;
  font-size:15px;
}

/* HERO */

.hero-section{
  position:relative;
  height:420px;
  overflow:hidden;
  border-radius:18px;
  margin-bottom:24px;
}

.hero-bg{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-overlay{
  position:absolute;
  inset:0;

  background:linear-gradient(
    to right,
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.2)
  );
}

.hero-text{
  position:absolute;
  top:50%;
  left:60px;

  transform:translateY(-50%);

  z-index:2;
  max-width:650px;
}

.hero-text h1{
  color:#fff;
  font-size:30px;
  line-height:1.1;
  margin-bottom:30px;
  padding-right: 100px;
}

.hero-btn{
  display:inline-block;

  background:#ff5a1f;
  color:#fff;

  padding:15px 26px;
  border-radius:10px;

  font-weight:700;

  transition:0.3s;
}

.hero-btn:hover{
  background:#e14d17;
}

/* SLIDER */

.slider-arrow{
  position:absolute;
  top:50%;

  transform:translateY(-50%);

  width:45px;
  height:45px;

  border:none;
  border-radius:50%;

  background:rgba(255,255,255,0.15);
  color:#fff;

  font-size:24px;
  cursor:pointer;

  z-index:3;

  transition:0.3s;
}

.slider-arrow:hover{
  background:rgba(255,255,255,0.3);
}

.prev{
  left:20px;
}

.next{
  right:20px;
}

.slider-dots{
  position:absolute;
  bottom:22px;
  left:50%;

  transform:translateX(-50%);

  display:flex;
  gap:10px;

  z-index:3;
}

.dot{
  width:10px;
  height:10px;

  border-radius:50%;

  background:rgba(255,255,255,0.5);
}

.dot.active{
  width:28px;
  border-radius:20px;
  background:#ff8b2b;
}

/* POPULAR */

.popular-post{
  background:#fff;
  border-radius:18px;
  overflow:hidden;

  display:grid;
  grid-template-columns:1.2fr 1fr;

  box-shadow:0 3px 15px rgba(0,0,0,0.06);
}

.popular-image img{
  height:100%;
  object-fit:cover;
}

.popular-content{
  padding:35px;
}

.popular-badge{
  color:#555;
  font-weight:700;
}

.popular-content h2{
  font-size:42px;
  line-height:1.1;
  margin:18px 0;
}

.popular-content p{
  font-size:18px;
  color:#555;
  line-height:1.7;
  margin-bottom:28px;
}

.popular-btn{
  display:inline-block;

  background:#233d72;
  color:#fff;

  padding:14px 24px;
  border-radius:10px;

  font-weight:700;
}

/* CATEGORIAS */

.categories-list{
  list-style:none;
}

.categories-list li{
  padding:12px 0;
  border-bottom:1px solid #ececec;
  font-size:18px;
}

/* RECENTES */

.recent-posts{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.recent-posts img{
  height:95px;
  object-fit:cover;
  border-radius:10px;
}

/* INFO BOX */

.info-box{
  background:#fff;
  border:3px solid #ff8b2b;
  border-radius:16px;

  padding:25px;

  text-align:center;

  box-shadow:0 3px 15px rgba(0,0,0,0.06);
  display: none;
}

.info-box h3{
  font-size:28px;
  margin-bottom:18px;
  color:#233d72;
}

.info-box p{
  color:#555;
  line-height:1.7;
  font-size:16px;
  margin-bottom:24px;
}

.info-btn{
  display:inline-block;

  background:#233d72;
  color:#fff;

  padding:14px 22px;
  border-radius:10px;

  font-weight:700;

  transition:0.3s;
}

.info-btn:hover{
  background:#1b315d;
}

/* RESPONSIVO */

@media(max-width:1200px){

  .home-layout .home-container{
    grid-template-columns:1fr;
  }

}

@media(max-width:800px){

  .hero-text{
    left:30px;
    right:30px;
    max-width:100%;
  }

  .hero-text h1{
    font-size:38px;
  }

  .popular-post{
    grid-template-columns:1fr;
  }

  .popular-content h2{
    font-size:34px;
  }
  
  .left-sidebar{
      display: none;
  }

}

@media(max-width:600px){

  .hero-section{
    height:340px;
  }

  .hero-text h1{
    font-size:30px;
  }

  .slider-arrow{
    width:38px;
    height:38px;
    font-size:20px;
  }

  .sidebar-card h2{
    font-size:24px;
  }

}




