#intro{
    margin-top: 25rem;
}

.section-type-3 .intro-div .summary{
    box-shadow: none;
    border-radius: 0;
    align-items: center;
    justify-content: center;
    padding-top: 0;
}

.section-type-3 .intro-div .summary .material-symbols-outlined {
    font-size: 10rem;
}

.image{
    background-image: url(../img/icon/sau.png);
    position: absolute;
    margin-top: 5rem;
    width: 70rem;
    height: 7rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    animation: lightning 1s infinite alternate;
}

#fees{
    position: relative;
    overflow: hidden;
    z-index: 1;

}

#fees::before{
    z-index: -1;
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    filter: grayscale(100%);
    background-image: url(../img/fees/1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /*background-color: #e5d5bc;*/
    /*opacity: 0.35;*/
    min-height: 40rem;
    justify-content: start;
    align-items: start;
}

#fees .row{
    width: 100%;
}

#fees .title-text{
    font-size: 3rem;
    line-height: 3rem;
    margin: 0;
    box-sizing: border-box;
    font-weight: 600;
    color: white;
    text-align: start;
    text-shadow: 0 0 1rem black;
    margin-left: 4rem;
}

#fees .paragraph{
    margin-left: 4rem;
}

#fees .fees-table{
    width: 100%;
}

#fees table{
    width: 90%;
    margin-left: 4rem;
    font-family: var(--heading-font);
    color: white;
    text-shadow: 0 0 1rem black;
    border-collapse: collapse;
    text-align: center;
}

#fees table td{
    margin-top: 1rem;
    margin-bottom: 1rem;
}

#fees table tr{
    width: 100%;
    border-top: 4px solid white;
    border-bottom: 4px solid white;
}

#fees .table-features{
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-left: 3rem;
}

#fees .table-features .material-symbols-outlined{
    color: #9ff1a9;
}

#fees .fees-title{
    font-size: 2.5rem;
}

#fees .price{
    color: var(--red-color);
    font-size: 5rem;
    font-weight: bold;
}

#fees .table-features .material-symbols-outlined{
    font-size: 2rem;
    vertical-align: -7px;
}

#fees .paragraph{
    margin-top: 2rem;
    margin-bottom: 4rem;
    font-family: var(--heading-font);
    color: white;
    text-shadow: 0 0 1rem black;
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 768px) {
    .image{
        height: 3rem;
        width: 20rem;
    }

    #intro{
        margin-top: 13rem;
    }

    #intro .text{
        width: 100%;
    }

    .section-type-3 .intro-div{
        flex-direction: column;
        display: flex;
        width: 100%;
    }

    .section-type-3 .intro-div .summary{
        font-size: 1.2rem;
        width: 80%;
        padding-right: 0;
        padding-left: 1.2rem;
        margin-right: 0;
        margin-left: 2rem;
        padding-top: 2.2rem;
        padding-bottom: 0.9rem;
    }

    #fees .fees-table{
        overflow-x: auto;
        max-width: 100%;
    }

    #fees table{
        margin-left: 0.2rem;
        width: 71rem;
        border-collapse: collapse;
    }

    #fees table tr{
        min-width: 100%;
    }
}