figure {
    overflow: visible;
}

.preamble {
    padding: 80px 0;
    margin-bottom: 0;
}

.preamble p {
    line-height: 2;
    letter-spacing: 2px;
}

.f-symbol {
    display: inline-block;
    max-width: 10px;
}

.d-none {
    display: none;
}

.modals__light-box {
    position: fixed;
    z-index: 1030;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    user-select: none;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.modals__light-box.active {
    user-select: auto;
    visibility: visible;
    opacity: 1;
}

.modals__light-box .modals__under-layout {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.modals__light-box .modals__content {
    width: 1160px;
    max-width: calc(100% - 40px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 90px;
    background-color: #162b5a;
    border: 2px solid #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.modals__light-box .modals__close {
    position: absolute;
    top: 10px;
    right: 20px;
    width: 60px;
    height: 60px;
    display: block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modals__light-box .modals__close:hover {
    opacity: 0.75;
}

.modals__light-box .modals__close::after,
.modals__light-box .modals__close::before {
    content: "";
    width: 60px;
    height: 2px;
    background-color: #fff;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
}

.modals__light-box .modals__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.modals__light-box .modals__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.modals__light-box .modals__avatar {
    width: 310px;
}

.modals__light-box .modals__avatar .modals__caption {
    font-size: 15px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    line-height: 1.8;
    margin-top: 25px;
    letter-spacing: 2px;
}

.modals__light-box .modals__detail {
    padding-left: 75px;
    width: calc(100% - 310px);
}

.modals__light-box .modals__title {
    font-size: 21px;
    font-weight: 700;
    color: #ffff81;
    padding-bottom: 40px;
    border-bottom: 2px solid #fff;
    letter-spacing: 2px;
}

.modals__light-box .modals__title br {
    display: none;
}

.modals__light-box .modals__text {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    line-height: 2.7;
    margin-top: 40px;
    letter-spacing: 2px;
}

@media only screen and (max-width: 768px) {
    .modals__light-box .modals__content {
        width: 100%;
        display: block;
        padding: 40px 20px;
        border: 2px solid #fff;
    }

    .modals__light-box .modals__close {
        right: 10px;
        width: 30px;
        height: 30px;
    }

    .modals__light-box .modals__close::after,
    .modals__light-box .modals__close::before {
        width: 30px;
        top: 50%;
        left: 50%;
    }

    .modals__light-box .modals__avatar {
        width: 100%;
        display: flex;
        align-items: center;
    }

    .modals__light-box .modals__avatar img {
        width: 160px;
    }

    .modals__light-box .modals__avatar .modals__caption {
        text-align: left;
        margin-top: 0;
        margin-left: 20px;
    }

    .modals__light-box .modals__detail {
        padding-left: 0px;
        margin-top: 20px;
        width: 100%;
    }

    .modals__light-box .modals__title {
        font-size: 18px;
        padding-bottom: 20px;
    }

    .modals__light-box .modals__text {
        font-size: 14px;
        line-height: 2;
        margin-top: 20px;
    }
}

.lists {
    width: 100%;
    position: relative;
}

.lists .lists__container {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

.lists .lists__under-layout {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: red;
    z-index: -1;
    display: none;
}

.lists .lists__item {
    width: 100%;
    max-width: calc((100% / 3) - 65px);
    margin-top: 101px;
}

.lists .lists__item:nth-of-type(3n+2) {
    margin-right: 97px;
    margin-left: 97px;
}

.lists .lists__img {
    width: 100%;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.lists .lists__img:hover {
    opacity: 0.75;
}

.lists .lists__img img {
    border-radius: 50%;
}

.lists .lists__img .lists__more {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 45px;
    height: 45px;
    display: block;
    border-radius: 50%;
    background-color: #2896b9;
    transform: translate(-1%, -50%);
}

.lists .lists__img .lists__more::after,
.lists .lists__img .lists__more::before {
    content: "";
    width: 18px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
}

.lists .lists__img .lists__more::before {
    transform: translate(-50%, -50%);
}

.lists .lists__img .lists__more::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.lists .lists__title {
    color: #162b5a;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    margin-top: 35px;
    letter-spacing: 1.5px;
    padding: 0 0px;
    border-left: 2px solid #162b5a;
    border-right: 2px solid #162b5a;
}

@media only screen and (max-width: 1024px) {
    .lists .lists__container {
        max-width: 100%;
        padding: 0 20px;
    }
}

@media only screen and (max-width: 768px) {
    .lists .lists__item {
        width: 100%;
        max-width: calc(50% - 15px);
        margin-top: 101px;
    }

    .lists .lists__item:nth-of-type(3n+2) {
        margin-left: 0;
        margin-right: 0;
    }

    .lists .lists__item:nth-of-type(2n) {
        margin-left: auto;
        margin-right: 0;
    }

    .lists .lists__img .lists__more {
        width: 35px;
        height: 35px;
        right: 50%;
        transform: translate(50%, 50%);
    }
}

.years-area .years__container {
    width: 100%;
}

.c-other {
    margin-top: 160px;
}