@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{
  --primary:#1d4ed8;
  --secondary:#0f172a;
  --light:#f8fafc;
}

body{
  font-family:'Poppins',sans-serif;
  color:#334155;
  background:var(--light);
}

a{
  text-decoration:none;
}

.section-padding{
  padding:100px 0;
}

.section-subtitle{
  color:var(--primary);
  font-weight:600;
  letter-spacing:1px;
  text-transform:uppercase;
}

.section-title{
  font-size:42px;
  font-weight:800;
  margin:15px 0 20px;
  color:var(--secondary);
}

/* HERO SLIDER */

.hero-slider .carousel-item {
  position: relative;
}

.hero-slide {
  min-height: 92vh;
}

.hero-slider .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
  width: 5%;
}

.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon {
  background-size: 70%;
}

@media (max-width: 768px) {

  .hero-slide {
    min-height: 80vh;
    text-align: center;
  }

  .hero-slide h1 {
    font-size: 2.2rem;
  }

}

.hero-section{
  min-height:100vh;
  background:
  linear-gradient(rgba(2,6,23,0.75), rgba(2,6,23,0.75)),
  url('../images/hero.jpg');

  background-size:cover;
  background-position:center;
  padding:120px 0;
}

.cta-section{
  padding:120px 0;

  background:
  linear-gradient(rgba(29,78,216,0.9), rgba(29,78,216,0.9)),
  url('../images/cta.jpg');

  background-size:cover;
  background-position:center;
}

.footer-section{
  background:#020617;
  color:#cbd5e1;
  padding:80px 0 30px;
}

.footer-title{
  color:#fff;
  font-weight:700;
  margin-bottom:20px;
}

.footer-links li{
  margin-bottom:12px;
}

.footer-links a{
  color:#cbd5e1;
}

.footer-links a:hover{
  color:#fff;
}

.card{
  transition:0.3s;
}

.card:hover{
  transform:translateY(-8px);
}

@media(max-width:991px){

  .section-title{
    font-size:34px;
  }

  .hero-section{
    text-align:center;
  }

}
