.company-row {
    display: flex;
    align-items: start;
    padding: 1em 0;
    gap: 1em;
}

.company-info-item-title {
    font-size: 19px;
    font-weight: bold;
    color: #00BCCA;
    margin-bottom: 1em;
}


.location-icon, .mail-icon, .call-icon {
    height: 28px;
}

.call-icon {
    height: 22px;
}

.mail-icon {
    height: 19px;
}

.meta-wrapper{
    display: flex;
    gap: 1em;
    align-items: start;
}

.section-header-title {
    text-align: center;
    margin: 1em 0;
    font-size: 32px;
    font-weight: bold;
    color: #1F275B;
}

.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 9px 12px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    font-size: 18px;
    font-weight: bold;
    color: #1F275B;
    margin-bottom: 3px;
    border-radius: 6px;
  }
  
  .active, .accordion:hover {
    background-color: #ccc; 
  }
  
  .panel {
    padding: 1em 18px;
    display: none;
    background-color: rgb(249, 249, 249);
    overflow: hidden;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    margin-bottom: 12px;
  }


/* 
.accordion::after {
    content: " ";
    background: #DC5408;
    height: 3px;
    width: 15px;
    margin-top: 3px;
    display: block;

} */

.accordion-wrapper{
    margin: 3em 0 2em 0;
}

.board-of-director-list {
    padding: 1em;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1em;
    
}

.profile-info-wrapper {
    align-items: center;
    text-align: center;
    margin: 1em;
}

h5.profile-info-item.profile-info-item-name {
    color: #00BCCA;
    font-weight: bold;
}

img.profile-img {
    width: 100%;
}

@media screen and (max-width: 720px) {
    .company-row {
        display: block;
    }

    .section-header-title {
        font-size: 22px;
    }

    .investor-grievance-redressal .container {
        padding: 0;
    }

    .investor-grievance-redressal {
        padding: 0 1em;
    }

    .company-info-item-title {
        width: 100%;
    }

    .hero-section-title-wrapper {
        position: absolute;
        top: 60%;
        left: 0;
        right: 0;
        max-width: 100%;
    }
}

button.accordion {
    display: flex;
    justify-content: space-between;
}

.accordion-title::after {
    border-radius: 15px;
    content: "";
    display: block;
    height: 2px;
    width: 15px;
    background: #dc5409;
    display: none;
}

.leader-profile-linkedin-cta {
    position: absolute;
    right: 17%;
    bottom: 6%;
}

li.accordion-dropdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    gap: 1em;
}

li.accordion-dropdown-item::before {
    content: "";
    display: block;
    min-height: 6px;
    min-width: 6px;
    background: black;
    clip-path: circle();
    margin-right: 9px;
}

span.line {
    display: block;
    height: 1px;
    background: #7F7C7C;
    width: 100%;
    margin: 0 1em;
}

.accordion-dropdown-title {
    /* min-width: max-content; */
    transition: 0.3s;
}

ul.accordion-dropdown {
    padding: 0;
}

li.accordion-dropdown-item img {
    height: 38px;
}

.active-accordion {
    display: block;
    width: 100%!important;
    transition: 0.3s;
}

.underline {
    border-radius: 15px;
    display: block;
    height: 2px;
    width: 15px;
    background: #dc5409;
}

span.line {
    display: none;
    height: 1px;
    background: #7F7C7C;
    width: auto;
    margin: 0 1em;
}

li.accordion-dropdown-item::before {
    content: "";
    display: none;
    min-height: 6px;
    min-width: 6px;
    background: black;
    clip-path: circle();
    margin-right: 9px;
}


@media screen and (max-width: 600px) {
    li.accordion-dropdown-item img {
        height: 32px;
    }

    li.accordion-dropdown-item {
        padding: 12px 0;
    }

    span.line {
        /* display: block; */
        height: 1px;
        background: #7F7C7C;
        width: auto;
        margin: 0 1em;
    }
}

.hero-section-title-wrapper {
    position: absolute;
    top: 48%;
    left: 0;
    right: 0;
    max-width: 100%;
}