/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
  font-family: "Open Sans", sans-serif;
  color: #444;
}

a {
  color: #0d6efd;
  text-decoration: none;
}

a:hover {
  color: #0a58ca;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  background: #ffffff;
  padding: 0;
  box-shadow: 0px 2px 15px rgba(0,0,0,0.1);
}

.logo a {
  font-size: 28px;
  font-weight: bold;
  color: #0d6efd;
}

/*--------------------------------------------------------------
# Navbar
--------------------------------------------------------------*/

.navbar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.navbar li {
  position: relative;
}

.navbar a {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  font-weight: 600;
}

.navbar .dropdown ul {
  position: absolute;
  left: 0;
  top: 100%;
  display: none;
  background: #fff;
  padding: 10px;
  min-width: 220px;
  box-shadow: 0px 0px 20px rgba(0,0,0,0.1);
}

.navbar .dropdown:hover ul {
  display: block;
}

.navbar .dropdown ul li {
  width: 100%;
}

.navbar .dropdown ul a {
  padding: 8px 15px;
  font-weight: normal;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.carousel-item img {
  height: 90vh;
  object-fit: cover;
}

.carousel-container {
  position: absolute;
  bottom: 20%;
  left: 10%;
  color: #fff;
}

.carousel-content h2 {
  font-size: 48px;
  font-weight: 700;
}

.btn-get-started {
  background: #0d6efd;
  color: #fff;
  padding: 10px 25px;
  border-radius: 4px;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding: 5px 0;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.icon-box {
  text-align: center;
  padding: 20px;
  border-radius: 6px;
  background: #f9f9f9;
}

.icon-box i {
  font-size: 36px;
  color: #0d6efd;
}

/*--------------------------------------------------------------
# Blog / News
--------------------------------------------------------------*/

.card {
  border: none;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.05);
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact p {
  font-size: 16px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  background: #222;
  color: #fff;
  padding: 20px 0;
}

#footer p {
  margin: 0;
}