a:hover, a:focus {
    text-decoration: none;
    outline: none;
}

#accordion:before {
    content: "";
    width: 1px;
    height: 80%;
    background: #88CEEB;
    position: absolute;
    top: 20px;
    left: 24px;
    bottom: 20px;
}

#accordion .panel {
    border: none;
    border-radius: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    margin: 0 0 12px 50px;
    position: relative;
}

#accordion .panel:before {
    content: "";
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #88CEEB 0%, #ff816a 100%);
    position: absolute;
    top: 0;
    left: -2px;
}

#accordion .panel-heading {
    padding: 0;
    background: #fff;
    position: relative;
}

#accordion .panel-heading:before {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 50px;
    background: #fff;
    border: 1px solid #88CEEB;
    position: absolute;
    top: 50%;
    left: -48px;
    transform: translateY(-50%);
}

#accordion .panel-title a {
    display: block;
    padding: 15px 55px 15px 30px;
    font-size: 20px;
    font-weight: 600;
    color: #88CEEB;
    border: none;
    margin: 0;
    position: relative;
    text-transform: uppercase;
}

#accordion .panel-title a:before,
#accordion .panel-title a.collapsed:before {
    content: "\f068";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    width: 25px;
    height: 25px;
    line-height: 25px;
    border-radius: 50%;
    font-size: 15px;
    color: #88CEEB;
    text-align: center;
    border: solid 3px #88CEEB;
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    transition: all 0.5s ease 0s;
}

#accordion .panel-title a.collapsed:before {
    content: "\f067";
}

#accordion .panel-body {
    padding: 0 30px 15px;
    border: none;
    font-size: 14px;
    color: #305275;
    line-height: 28px;
}

#accordion .panel-body {
    background: #fff;
    padding: 10px 15px;
    width: 100% !important;
}

#accordion .panel-body * {
    font-size: 18px;
    line-height: 25px;
}

.panel-body *, .contact-container * {
    color: #838694 !important;
}