/*
--------------------------------------
section Title Et Content
--------------------------------------
*/
.section__title-content {
    padding : 4.7vh 0;
}

.section__title-content .section__title {
    text-align : center;
}

.section__title-content .section__title__subtitle {
    font-size      : calc(11px + (12 - 11) * ((100vw - 320px) / (1920 - 320)));
    margin-bottom  : 1em;
    letter-spacing : 0.075em;
}

.section__title + .section__content {
    margin-top : 4.7vh;
}

/*
--------------------------------------
title
--------------------------------------
*/
.c-title {
    text-align     : center;
    margin         : 0;
    padding        : 0;
    color          : var(--color-black-default);
    font-weight    : 900;
    background     : transparent;
    text-transform : uppercase;
    /*letter-spacing : -0.025em;*/
    position       : relative;
    /*flex-direction : column;*/
    /*font-size      : calc(18px + (24 - 18) * ((100vw - 320px) / (1920 - 320)));*/
    font-size      : var(--font-size-400);

    display        : flex;
    align-items    : center;
}

.c-title:before,
.c-title:after {
    content    : '';
    display    : inline-block;
    height     : 1px;
    flex       : 1 0 0;
    background : var(--color-grey-font-default);
    opacity    : .1;
}

.c-title span {
    padding : 0 0.8em;
}

/*
--------------------------------------
REASSURANCE LIST
--------------------------------------
*/
.section__reassurance-list {
    background    : var(--color-black-default);
    border-top    : 1px solid #424243;
    border-bottom : 1px solid #424243;
}

.c-reassurance-list__inner {
    display               : grid;
    grid-template-columns : repeat(auto-fit, minmax(150px, 1fr));
    grid-gap              : 15px 20px;
}

.c-reassurance-list .c-reassurance {
    text-align : center;
    padding    : 4vh 0;
}

.section__reassurance {
    flex            : 1 0 0;
    display         : flex;
    justify-content : center;
    text-align      : center;
}

@media (min-width : 1024px) {
    .c-reassurance-list .c-reassurance {
        position : relative;
    }

    .c-reassurance-list .c-reassurance + .c-reassurance:before {
        position   : absolute;
        left       : 0;
        top        : 0;
        bottom     : 0;
        content    : '';
        display    : inline-block;
        height     : 100%;
        width      : 1px;
        opacity    : 0.1;
        background : var(--color-primary);
    }

}

/*
--------------------------------------
REASSURANCE
--------------------------------------
*/
.c-reassurance {
    font-size      : calc(12px + (14 - 12) * ((100vw - 320px) / (1920 - 320)));
    letter-spacing : 0.075em;
    color          : var(--color-white-default);
    line-height    : 1.7em;
}

.c-reassurance__img {
    height : 35px;
}

.c-reassurance__title {
    font-weight    : 700;
    text-transform : uppercase;
    margin-top     : 1em;
}

/*
--------------------------------------
Tabs
--------------------------------------
*/
.section__tabs-titles {
    position        : relative;
    z-index         : 2;
    display         : flex;
    flex-wrap       : wrap;
    justify-content : center;
    border-bottom   : 1px solid #eceef4;
}

.section__tabs-titles .selected__option {
    width       : 100%;
    border      : 1px solid #f7f7f7;
    background  : white;
    padding     : 1em 1.6em;
    font-size   : 1.25rem;
    color       : var(--color-black-default);
    font-weight : 700;
}

.section__tabs-titles .available__options {
    display        : none;
    position       : absolute;
    top            : 100%;
    left           : 0;
    width          : 100%;
    flex-direction : column;
    background     : white;
}

.section__tabs-titles .available__options.--visible {
    display : flex;
}

.section__tabs-titles .available__options .section__title__part + .section__title__part {
    border-top : 1px solid #f7f7f7;
}

.section__tabs-titles .available__options .section__title {
    display     : flex;
    align-items : center;
}

.section__tabs-titles .available__options .section__title .section__title__subtitle {
    margin-right : .5em;
}

.section__tabs-titles .section__title__part {
    position    : relative;
    padding     : 0 2em;
    display     : flex;
    align-items : flex-end;
    cursor      : pointer;
    text-align  : center;
}

.s-tabs-title-content .section__content {
    position : relative;
    z-index  : 1;
}

.s-tabs-title-content .section__content__part {
    position       : absolute;
    top            : 0;
    left           : 0;
    width          : 100%;
    opacity        : 0;
    visibility     : hidden;
    pointer-events : none;
}

.s-tabs-title-content .section__content__part.--active {
    position       : relative;
    opacity        : 1;
    visibility     : visible;
    pointer-events : all;
}

@media (min-width : 768px) {
    .section__tabs-titles .selected__option {
        display : none;
    }

    .section__tabs-titles .available__options {
        display         : flex;
        justify-content : center;
        position        : initial;
        flex-direction  : row;
        background      : transparent;
    }

    .section__tabs-titles .available__options .section__title__part + .section__title__part {
        border-top : none;
    }

    .section__tabs-titles .available__options .section__title {
        display        : flex;
        flex-direction : column;
        align-items    : normal;
    }

    .section__tabs-titles .available__options .section__title .section__title__subtitle {
        margin-right : 0;
    }

    .section__tabs-titles .section__title__part:after {
        content           : "";
        height            : 3px;
        width             : 100%;
        background-color  : var(--color-primary);
        position          : absolute;
        bottom            : 1px;
        left              : 0;
        -webkit-transform : scaleX(0);
        -ms-transform     : scaleX(0);
        transform         : scaleX(0);
        transition        : transform .4s cubic-bezier(.165, .84, .44, 1);
    }

    .section__tabs-titles .section__title__part.--active:after {
        transform : scaleX(1);
    }
}
