* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
}

h1 {
    font-weight: 700;
}

h2 {
    font-size: 1.75rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
}

.navbar .navbar-brand img {
    max-width: 120px;
}

.banner {
    background-color: #f56101;
    color: #fff;
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
    padding: 200px 0;
    text-shadow: 0px 0px 2px rgb(0, 0, 0), 0px 0px 4px rgba(0, 0, 0, 0.3), 0px 0px 7px rgba(0, 0, 0, 0.3);
}

.down-store-icons img {
    max-width: 120px;
}

.app-inclusion-wrapper ul li {
    position: relative;
    padding: 10px 0;
    list-style-type: none;
    font-size: 16px;
}
.app-inclusion-wrapper ul li:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15px;
    border-left: 1px dashed #333;
}
.app-inclusion-wrapper ul li:after {
    content: "";
  position: absolute;
  top: 50%;
  left: -20px;
  width: 10px;
  height: 10px;
  border: 2px solid #f56101;
  border-radius: 50%;
  background-color: #fff;
  transform: translateY(-50%);
}

.voting-app-features-wrapper img {
    max-width: 120px;
}
.voting-app-features-wrapper h3 {
    font-size: 18px;
    margin-top: 15px;
}

.admin-dashboard-features-wrapper img {
    max-width: 120px;
    max-height: 100px;
    width: auto;
    height: auto;
}
.admin-dashboard-features-wrapper h3 {
    font-size: 18px;
}

footer {
    background-color: #f56101;
    color: #fff;
}

@media (max-width: 991px)
{
    .banner {
        position: relative;
    }
    .banner:before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: rgba(245, 97, 1, 0.3);
    }
    .banner .container {
        position: relative;
    }
}
@media (max-width: 575px)
{
    .banner {
        padding: 100px 0;
    }
}
nav.navbar.navbar-expand-lg.navbar-light.bg-light {
    position: fixed;
    width: 100%;
    z-index: 99;
}