input,select
{
    height: 2.4rem;
}

.download-button
{
    background-color: gold;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.35);
    transform-origin: center;
    transition: all 0.25s;
}

.download-button:hover 
{
    color:#462aeb; 
    text-decoration:none; 
    cursor:pointer;  
    box-shadow: 0px 10px 20px 2px rgba(0, 0, 0, 0.25);
    transform: scale(1.2);
}

.download-doc-div
{
    display: flex;
    justify-content: end;
    align-items: end;
}

/* ========================================================================= */

ol.gradient-list > li::before, ol.gradient-list > li 
{
    box-shadow: 0.25rem 0.25rem 0.6rem rgba(0, 0, 0, 0.05), 0 0.5rem 1.125rem rgba(75, 0, 0, 0.05);
}

ol.gradient-list 
{
    counter-reset: gradient-counter;
    list-style: none;
    margin: 1.75rem 0;
    padding-left: 1rem;
}

ol.gradient-list > li 
{
    background: white;
    border-radius: 0 0.5rem 0.5rem 0.5rem;
    counter-increment: gradient-counter;
    margin-top: 1rem;
    min-height: 3rem;
    padding: 1rem 1rem 1rem 3rem;
    position: relative;
}

ol.gradient-list > li::before, ol.gradient-list > li::after 
{
    background: linear-gradient(135deg, #83e4e2 0%, #a2ed56 100%);
    border-radius: 1rem 1rem 0 1rem;
    content: "";
    height: 3rem;
    left: -1rem;
    overflow: hidden;
    position: absolute;
    top: -1rem;
    width: 3rem;
}

ol.gradient-list > li::before 
{
    align-items: flex-end;
    content: counter(gradient-counter);
    color: #1d1f20;
    display: flex;
    font: 900 1.5em/1 "Montserrat";
    justify-content: flex-end;
    padding: 0.125em 0.25em;
    z-index: 1;
}

ol.gradient-list > li:nth-child(10n+1):before 
{
    background: linear-gradient(135deg, rgba(162, 237, 86, 0.2) 0%, rgba(253, 220, 50, 0.2) 100%);
}

ol.gradient-list > li:nth-child(10n+2):before 
{
    background: linear-gradient(135deg, rgba(162, 237, 86, 0.4) 0%, rgba(253, 220, 50, 0.4) 100%);
}

ol.gradient-list > li:nth-child(10n+3):before 
{
    background: linear-gradient(135deg, rgba(162, 237, 86, 0.6) 0%, rgba(253, 220, 50, 0.6) 100%);
}

ol.gradient-list > li:nth-child(10n+4):before 
{
    background: linear-gradient(135deg, rgba(162, 237, 86, 0.8) 0%, rgba(253, 220, 50, 0.8) 100%);
}

ol.gradient-list > li:nth-child(10n+5):before 
{
    background: linear-gradient(135deg, #a2ed56 0%, #fddc32 100%);
}

ol.gradient-list > li:nth-child(10n+6):before 
{
    background: linear-gradient(135deg, rgba(162, 237, 86, 0.8) 0%, rgba(253, 220, 50, 0.8) 100%);
}

ol.gradient-list > li:nth-child(10n+7):before 
{
    background: linear-gradient(135deg, rgba(162, 237, 86, 0.6) 0%, rgba(253, 220, 50, 0.6) 100%);
}

ol.gradient-list > li:nth-child(10n+8):before 
{
    background: linear-gradient(135deg, rgba(162, 237, 86, 0.4) 0%, rgba(253, 220, 50, 0.4) 100%);
}

ol.gradient-list > li:nth-child(10n+9):before 
{
    background: linear-gradient(135deg, rgba(162, 237, 86, 0.2) 0%, rgba(253, 220, 50, 0.2) 100%);
}

ol.gradient-list > li:nth-child(10n+10):before 
{
    background: linear-gradient(135deg, rgba(162, 237, 86, 0) 0%, rgba(253, 220, 50, 0) 100%);
}

ol.gradient-list > li + li 
{
    margin-top: 2rem;
}

ol.gradient-list
{
    margin-left: 3rem;
    margin-right: 3rem;
}

/* ========================================================================= */

.accordion 
{
    width: 100%;
    max-width: 75rem;
    margin: 0 auto;
    padding: 2rem;
}

.accordion-item 
{
    position: relative;
}

.accordion-item.active .heading 
{
    color: #528072;
}

.accordion-item.active .icon 
{
    background-color: #fff
}

.accordion-item.active .icon:before 
{
    background: #528072;
}

.accordion-item.active .icon:after 
{
    width: 0;
}

.accordion-item .heading 
{
    display: block;
    text-transform: uppercase;
    text-decoration: none;
    color: #528072;
    font-weight: 700;
    font-size: 1rem;
    position: relative;
    padding: 1.5rem 1.5rem 1.5rem 4rem;
    transition: 0.3s ease-in-out;
}

@media (min-width: 40rem) 
{
    .accordion-item .heading 
    {
        font-size: 1.2rem;
    }
}
.accordion-item .heading:hover 
{
    color: #92c0b2;
}

.accordion-item .heading:hover .icon:before, .accordion-item .heading:hover .icon:after 
{
    background: #92c0b2;
}

.accordion-item .icon 
{
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 3rem;
    height: 3rem;
    border: 2px solid #528072;
    border-radius: 3px;
    transform: translateY(-50%);
}

.accordion-item .icon:before, .accordion-item .icon:after 
{
    content: "";
    width: 1.25rem;
    height: 0.25rem;
    background: #528072;
    position: absolute;
    border-radius: 3px;
    left: 50%;
    top: 50%;
    transition: 0.3s ease-in-out;
    transform: translate(-50%, -50%);
}

.accordion-item .icon:after 
{
    transform: translate(-50%, -50%) rotate(90deg);
    background: #528072;
    z-index: -1;
}

.accordion-item .content 
{
    display: none;
}

.accordion-item .content p 
{
    margin-top: 0;
    font-size: large;
    margin-left: 4rem;
}

.modal-fullscreen-custom {
    max-width: 100%;
    width: 100%;
    height: 100%;
    margin: 0;
}

.modal-fullscreen-custom .modal-content {
    height: 100vh;
    border-radius: 0;
}

.modal-fullscreen-custom .modal-body {
    overflow-y: auto;
}


a.activeMenuItem{
  background-color: #242849 !important;
  color: rgb(249, 249, 249) !important;
  border-radius: 10px;
}

.activeMenuItem {
    color: #fff !important;
    font-weight: 600;
}

@media (min-width: 40rem) 
{
    .accordion-item .content 
    {
        line-height: 1.75;
    }
}