*, body, html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
::after, ::before{
    box-sizing: border-box;
}

section.section{
    padding: 40px 0;
    position: relative;
}
.body{
    background: linear-gradient(-45deg, rgba(34, 64, 154, 0.7), rgba(16, 185, 129, 0.6)) fixed, url('../assets/aerial-view-traffic.webp');
    background-repeat: no-repeat;
    background-size: cover; 
    background-position: 100% 0%; 
    background-attachment: fixed;
    min-height: 100vh;
    background-blend-mode: multiply;
}

.accordion-item {
    border: none;
    background: none;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 2px;
    background-color: #ffeeee;
}
.accordion-item {
    border: none;
    /* background: none; */
}
.accordion-header {
    background: none;
    border: none;
    border-bottom: none;
    margin-bottom: 10px;
}
.accordion-header span{
    font-size: 25px;
    font-weight: 500;
    color: #D40001;
}
.accordion-button:not(.collapsed) {
    color: #000;
}
.accordion-header .accordion-button {
    box-shadow: none;
    padding: 0;
    background-color: transparent;
}
.accordion-button:not(.collapsed) {
    background: none;
}
.accordion-button::after {
    content: '\f078';
    font-family: 'FontAwesome';
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background: none;
    background-color: #ed1c24;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.accordion-button:not(.collapsed)::after {
    content: '\f078';
    font-family: 'FontAwesome';
    background: none;
    background-color: #ed1c24;
    color: #ffff;
}
.accordion-body {
    padding: 0;
}
.accordion-body p {
    color: #000;
    font-size: 16px;
    line-height: normal;
    margin-bottom: 6px;
}
.accordion-item:first-of-type {
    border-radius: 0;
}
.accordion-content ul{
    list-style: none;
    padding-left: 0;
    position: relative;
}
.accordion-content ul li {
    list-style: none;
    padding-left: 18px;
    position: relative;
}
.accordion-content ul li::before{
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #D40001;
    top: 9px;
    left: 0;
}
.accordion-content ul li a{color: #000; font-size: 15px; text-decoration: none;}
.accordion-content p{
    font-size: 16px;
    line-height: 25px;
    color: #000;
    margin-bottom: 8px;
}
.navbar-brand img{width: 100px;}
.image__card_box img{
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.header-logo h2{
    font-size: 60px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #fff;
    font-family: "Philosopher", sans-serif;
}
.image__card_box{
    z-index: 1;
}
.image__card_box video{
    height: 300px;
    width: 100%;
    object-fit: cover;
}
.playIcon {
    position: absolute;
    width: 60px !important;
    height: 60px !important;
    z-index: 9;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.image__card_box h4{
    font-size: 18px;
    color: #000;
    margin-top: 10px;
    text-align: center;
}

@media only screen and (max-width: 767px){
    section.section{padding-top: 40px; padding-bottom: 150px;}
    .accordion-header span{font-size: 18px;}
    .image__card_box img{height: auto;}
    .header-logo h2{font-size: 30px; font-weight: 500; margin-bottom: 22px;}
    .image__card_box{margin-bottom: 1.2rem;}
}