.accordion {
    padding: 100px;
}

.accordion .accordion-item {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    padding: 15px 20px;
    margin-top: 20px;
    border-radius: 10px;
}

.accordion .accordion-item button[aria-expanded=true] {
    /*   border-bottom: 1px solid #03b5d2; */
}

.accordion h2 {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    /*    padding: 1em 0; */
    color: #333333;
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
    padding: 0px;
    line-height: 25px;
    margin: 0px;
    /* font-family: 'Open Sans', sans-serif; */
    cursor: pointer;
}

.accordion h2 .accordion-title {
    padding: 1em 1.5em 1em 0;
    margin-left: 15px;
}

.accordion h2 .icon {
    display: inline-block;
    position: absolute;
    top: 2px;
    right: 0;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 22px;
}

.faq-content {
    padding: 80px 0px;
}

.accordion h2 .icon::before {
    display: block;
    position: absolute;
    content: "";
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
}

.accordion h2 .icon::after {
    display: block;
    position: absolute;
    content: "";
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
}

.accordion h2[aria-expanded=true] {
    color: #03b5d2;
}

.accordion h2[aria-expanded=true] .icon::after {
    width: 0;
}

.accordion h2[aria-expanded=true]+.accordion-content {
    opacity: 1;
    max-height: 5000px;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content p {
    font-size: 1rem;
    font-weight: 300;
    margin: 0px;
    margin-top: 10px;
    font-family: 'Open Sans', sans-serif;
}


.accordion h2#accordion-button-1 {
    font-size: 1.25rem;
    font-weight: 600;
}

span.num-span {
    color: #ff6900;
    border: 2px solid #ff6900;
    width: 35px;
    height: 35px;
    display: inline-block;
    align-items: center;
    text-align: center;
    border-radius: 60%;
    line-height: 31px;
    font-size: 15px;
}

.accordion-content {
    padding-left: 50px;
}

.accordion-content p {
    font-family: unset !important;
    color: black;
    font-size: 15px !important;
}

.accordion-item.active {
    background: rgb(255, 240, 211);
}

.accordion-item.active h2 {
    color: rgb(255, 105, 0);
}


.form-control,
.form-select {
    padding: 10px 15px;
    border-color: #d5d5d5;
    background-color: #fff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    width: 100%;
}

.form-control::placeholder {
    color: #000;
}

.form-control:focus,
.form-select:focus {
    color: #000;
    background-color: #fff;
    border-color: #d5d5d5;
    box-shadow: none;
}

.popup-modal-open {
    position: fixed;
    top: 20%;
    left: 0;
    right: 0;
    margin: auto;
    width: 30%;
    z-index: 50;
    background: #ff820a;
    padding: 45px 25px;
    display: none;
}

.popup-modal-open.active {
    display: block;
}

button.close {
    font-size: 20px;
    background: black;
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    color: white;
}

@media(max-width:575px) {
    .accordion h2 .accordion-title {
    font-size: 10px;
    padding: 1em 1.5em 1em 0;
    margin-left: 15px;
}

.accordion {
    padding: 0px;
}
}