/* ---------- Section divider hero (cover) ---------- */
.sgfp-hero {
    position: relative;
    padding: 0;
    background-color: var(--blue);
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: stretch;
}

.sgfp-hero__inner {
    display: flex;
    width: 100%;
    align-items: stretch;
}

.sgfp-hero__bar {
    flex: 0 0 200px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    border-radius: 0 0 220px 0;
}

.sgfp-hero__mediaInner{
    padding: 30px 0 0 30px;
    position: relative;
    &:before{
        height: 270px;
        width: 100%;
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        border: 1px solid #fff;
        border-bottom: 0px;
        border-right: 0;
        border-radius: 125px 0 0 0;
    }
    .figT {
        z-index: 2;
        right: 20px;
        bottom: 20px;
        padding: 8px 15px;
        color: var(--black);
        border-radius: 25px;
        position: absolute;
        background-color: var(--white);
    }
    figure{
        height: 700px;
        border-radius: 100px 0 0 0px;
        overflow: hidden;
        border: 5px solid #fff;
        border-right: none;
        border-bottom: none;
        position: relative;
        z-index: 1;
        img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
        }
    }
}

.sgfp-hero__title {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: #fff;
    font-family: 'Helvetica Neue';
    font-weight: 700;
    font-size: 40px;
    line-height: 1.15;
    letter-spacing: .5px;
    text-align: left;
    padding: 60px 0;
}

.sgfp-hero__media {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: auto;
    padding-top: 80px;
}

.linkList{
    ul{
        li{
            overflow: hidden;
            border-radius: 30px;
            position: relative;
            box-shadow: 0 0 10px #00000030;

            &:not(:last-child){
                margin-bottom: 20px;
            }

            &:after{
                top: 50%;
                right: 30px;
                width: 30px;
                height: 12px;
                content: '';
                transition: 0.3s;
                position: absolute;
                background-size: contain;   
                background-repeat: no-repeat;
                filter: brightness(1) invert(1);
                transform: translateY(-50%) rotate(-90deg);
                background-image: url(../images/accArrow.png);
            }

            a{
                z-index: 2;
                display: block;
                font-size: 24px;
                color: #000000;
                position: relative;
                border-radius: 20px;
                padding: 15px 70px 15px 50px;
                font-family: 'Helvetica Neue';
                font-weight: bold !important;
            }

            &:before{
                top: 0;
                left: 0;
                bottom: 0;
                width: 25px;
                content: '';
                transition: 0.3s;
                position: absolute;
                background-color: var(--blue);
            }

            &:hover{
                &:after{
                    filter: brightness(1) invert(0);
                }
                &:before{
                    width: 100%;
                }
                a{
                    color: #ffffff;
                }
            }
        }
    }
}


@media (max-width: 1200px) {
    .linkList {
        ul {
            li {
                a {
                    font-size: 20px;
                }
            }
        }
    }
    .sgfp-hero__inner{
        display: block;
        figure{
            height: 450px;
        }
    }
    .sgfp-hero__bar {
        flex: auto;
        width: 100%;
        display: block;
        padding: 0 50px;
    }
    .sgfp-hero__title {
        writing-mode: unset;
        transform: rotate(0deg);
        padding-bottom: 0px;
    }
    .sgfp-hero__media {
        flex: 1;
        background-size: cover;
        background-position: center;
        min-height: auto;
        padding-top: 30px;
        padding: 0 50px;
        padding-top: 30px;
        padding-right: 0px;
    }
}
@media (max-width: 768px) {
    .sgfp-hero__inner {
        figure {
            height: 300px;
        }
    }
    .sgfp-hero__title{
        font-size: 30px;
    }
    .sgfp-hero__bar, .sgfp-hero__media{
        padding: 0 20px;
    }
    .sgfp-hero__media{
        padding-right: 0px;
        padding-top: 20px;
    }
    .sgfp-hero__mediaInner {
        figure{
            border-radius: 60px 0 0 0px;
        }
        &:before {
            height: 190px;
            border-radius: 80px 0 0 0;
            figure {
                border-radius: 70px 0 0 0px;
            }
        }
    }
}