body{
    background: #ffffff;
}
.rounded{
    border-radius: 1rem
}
.nav-pills .nav-link{
    color: #780910
}
.nav-pills .nav-link.active{
    color: white;
    background-color:#780910;
}
input[type="radio"]{
    margin-right: 5px
}
.bold{
    font-weight:bold
}


#logo-flex {
    position: relative;
    margin-top: -10px;
    left: 190px;
}

.wave {
    height: 300px;
    width: 300px;
    position: relative;
    background: #780910;
    z-index: -1;
}


.wave:before, .wave:after {
    content: "";
    display: block;
    position: absolute;
    background: rgba(193,14,26,1);
    background: -moz-linear-gradient(top, rgba(193,14,26,1) 0%, rgba(241,64,76,0.3) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(193,14,26,1)), color-stop(100%, rgba(241,64,76,0.3)));
    background: -webkit-linear-gradient(top, rgba(193,14,26,1) 0%, rgba(241,64,76,0.3) 100%);
    background: -o-linear-gradient(top, rgba(193,14,26,1) 0%, rgba(241,64,76,0.3) 100%);
    background: -ms-linear-gradient(top, rgba(193,14,26,1) 0%, rgba(241,64,76,0.3) 100%);
    background: linear-gradient(to bottom, rgba(193,14,26,1) 0%, rgba(241,64,76,0.3) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c10e1a', endColorstr='#f1404c', GradientType=0 );

    -webkit-border-radius: 50% 50%;
    -moz-border-radius: 50% 50%;
    border-radius: 50% 50%;
}

.wave:after {
    height: 300px;
    width: 300px;
    left: 30%;
    top: 20%;
    opacity: 0.8;
}

.wave:before {
    height: 360px;
    width: 360px;
    left: -5%;
    top: -70%;
}

.button-cta {
    color: #fff;
    background-color:#780910;
    border-color: #780910;
    border: 1px solid #780910;
}
.button-cta.focus,
.button-cta:focus {
    color: #fff;
    background-color: #780910;
    border-color: #780910;
}
.button-cta:hover {
    color: #fff;
    background-color: #780910;
    border-color: #780910;
}
.button-cta.active,
.button-cta:active,
.open > .dropdown-toggle.button-cta {
    color: #fff;
    background-color: #780910;
    background-image: none;
    border-color: #780910;
}
.button-cta.active.focus,
.button-cta.active:focus,
.button-cta.active:hover,
.button-cta:active.focus,
.button-cta:active:focus,
.button-cta:active:hover,
.open > .dropdown-toggle.button-cta.focus,
.open > .dropdown-toggle.button-cta:focus,
.open > .dropdown-toggle.button-cta:hover {
    color: #fff;
    background-color: #780910;
    border-color: #780910;
}
.button-cta.disabled.focus,
.button-cta.disabled:focus,
.button-cta.disabled:hover,
.button-cta[disabled].focus,
.button-cta[disabled]:focus,
.button-cta[disabled]:hover,
fieldset[disabled] .button-cta.focus,
fieldset[disabled] .button-cta:focus,
fieldset[disabled] .button-cta:hover {
    background-color: #780910;
    border-color: #780910;
}
.button-cta .badge {
    color: #780910;
    background-color: #fff;
}

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
    background-color: #780910;
    color: #fff;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.accordion:active, .accordion:hover {
    background-color: #780910;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    background-color: white;
    display: none;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.accordion:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    background-color: #ffffff;
    color: #ffffff;
    float: right;
    margin-left: 5px;
}

.accordion:active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
    background-color: #ffffff;
    color: #ffffff;
}
