/* div {
    border: 1px solid red;
} */

h2 {
    font-size: x-large;
    color: black;
}

img {
    width: 100%;
    height: inherit;
    display: block;
}

.image-holder-patent-div {
    display: flex;
    justify-content: center;
}

.image-holder-child-div {
    display: flex;
    justify-content: center;
    width: 60%;
    margin: 1em;
    height: 35em;
    position: relative;
    /* Add this */
}

.text-overlay {
    width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fadc0e;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    box-shadow: 0px 0px 0px 16px rgb(248 3 3 / 50%);
    padding: 10px 20px;
    text-transform: uppercase;
    -webkit-text-stroke: 0.5px yellow;
    text-shadow: 4px 4px 0 #ae5a5a;
}

#item-list {
    margin: 1rem;
    border: 1px solid #050505;
    box-shadow: 8px 10px 5px 0px rgb(38 45 55 / 50%);
}

#item-list ul {
    margin: 1rem;
}

.heading {
    color: black;
    margin-left: 1em;
}

.personality-text-holder {
    margin: 1em;
}

.conculsion-text-holder {
    margin-top: 2em;
    margin: 1em;
}

hr {
    margin: 1.5em auto;
    position: relative;
    height: 9px;
    width: 9px;
    border: transparent;
    overflow: visible;
    background-image: url('data:image/svg+xml;utf8,<svg width="9" height="9" viewBox="0 0 9 9" xmlns="http://www.w3.org/2000/svg"><rect x="0.75" y="0.5" width="8" height="8" rx="4" fill="%231CB0A8" /></svg>');

    &:before {
        position: absolute;
        height: 9px;
        width: 10px;
        content: '';
        background-image: url('data:image/svg+xml;utf8,<svg width="10" height="9" viewBox="0 0 10 9" xmlns="http://www.w3.org/2000/svg"><path d="M3.91043 1.29752C4.30449 0.688518 5.19551 0.688519 5.58957 1.29752L9.25143 6.95675C9.68196 7.62211 9.20436 8.5 8.41186 8.5H1.08814C0.29564 8.5 -0.181954 7.62211 0.248574 6.95675L3.91043 1.29752Z" fill="%23FCB643" /></svg>');
        left: -18px;
    }

    &:after {
        position: absolute;
        height: 9px;
        width: 9px;
        content: '';
        background-image: url('data:image/svg+xml;utf8,<svg width="9" height="9" viewBox="0 0 9 9" xmlns="http://www.w3.org/2000/svg"><rect x="0.75" y="0.5" width="8" height="8" rx="1" fill="%23EF4056" /></svg>');
        right: -18px;
    }
}

.blockquote {
    padding: 60px 80px 40px;
    position: relative;

    p {
        font-family: "Utopia-italic";
        font-size: 20px;
        text-align: center;
    }
}

.blockquote::before {
    position: absolute;
    font-family: 'Georgia', serif;
    top: 0;
    content: "\201C";
    font-size: 200px;
    color: rgba(0, 0, 0, 0.1);
}

.blockquote::after {
    content: "";
    top: 20px;
    left: 50%;
    margin-left: -100px;
    position: absolute;
    border-bottom: 3px solid #bf0024;
    height: 3px;
    width: 200px;
}


.li-class {
    font-size: large;
    color: black;
    flex: 1;
    line-height: 1.2;
    text-decoration: none;
    background-image: linear-gradient(to right, yellow 0, #2084d745 100%);
    background-position: 0 1.2em;
    background-size: 0 100%;
    background-repeat: no-repeat;
    transition: background-size 0.5s;
}

.li-class:hover {
    background-size: 100% 3px;
    background-position: -0.1em 100%;
    transition: background-size 0.5s;
}

.li-class-name {
    font-family: 'Arial', sans-serif;
    font-size: inherit;
    font-style: italic;
    color: #6d2d2d;
    margin-left: 2em;
}

.link-hold {
    font-size: large;
    margin: 1rem 1rem;
}

.link-hold a {
    background-image: linear-gradient(to right,
            #54b3d6,
            #54b3d6 50%,
            #c90d0d 50%);
    background-size: 200% 100%;
    background-position: -100%;
    display: inline-block;
    padding: 5px 0;
    position: relative;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease-in-out;
}

.link-hold a:before {
    content: '';
    background: #54b3d6;
    display: block;
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    transition: all 0.3s ease-in-out;
}

.link-hold a:hover {
    background-position: 0;
}

.link-hold a:hover::before {
    width: 100%;
}

.button-page-ident {
    background: #FF4742;
    border: 1px solid #FF4742;
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.1) 1px 2px 4px;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-family: nunito, roboto, proxima-nova, "proxima nova", sans-serif;
    font-size: 16px;
    font-weight: 800;
    line-height: 16px;
    min-height: 40px;
    outline: 0;
    padding: 12px 14px;
    text-align: center;
    text-rendering: geometricprecision;
    text-transform: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: middle;

}

.button-page-ident:hover,
.button-page-ident:active {
    background-color: initial;
    background-position: 0 0;
    color: #FF4742;
}

.button-page-ident:active {
    opacity: .5;
}

#pagination {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

#page-numbers {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

#page-numbers li {
    margin: 0 10px;
    cursor: pointer;
}

#page-numbers li.active {
    font-weight: bold;
    color: #337ab7;
}

.sidekick-holder {
    margin-top: 1rem;
    margin-left: 3rem;
    margin-bottom: 1rem;
}

.sidekick blockquote.quote:before,
.sidekick blockquote.quote:after {
    font-family: FontAwesome;
    position: absolute;
    color: #039be5;
    font-size: 34px;
}

.sidekick blockquote.EN:before {
    content: "\f10d";
    top: -12px;
    margin-right: -20px;
    right: 100%;
}

.sidekick blockquote.EN:after {
    content: "\f10e";
    margin-left: -20px;
    left: 100%;
    top: auto;
    bottom: -20px;
}

.sidekick {
    position: relative;
    padding-left: 1em;
    border-left: 0.2em solid #039be5;
    font-family: 'Roboto', serif;
    font-size: 1.5rem;
    line-height: 1.5em;
    font-weight: 100;
}

.sidekick:before,
.sidekick:after {
    font-family: Calibri;
    color: #039be5;
    font-size: 34px;
}

.sidekick:before {
    content: '\201e'
}

.sidekick:after {
    content: '\201c';
}

.sidekick cite {
    font-size: 50%;
    text-align: center;
    top: 50%
}

.sidekick cite:before {
    content: ' \2015 '
}


.alphabet {
    display: flex;
    flex-direction: column;
    margin: 1rem;

    a {
        text-decoration: none;
        margin-bottom: 0.25rem;
    }

    .alpha {
        margin-bottom: 1rem;
        font-size: 1.5rem;
        margin-left: 0.5rem;
        color: #465928;
    }
}

.alphabet-column-holder {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.master-alphabet-column-holder {
    display: flex;
    flex-direction: row;
    width: 60%;
}

.other-quotes-column-holder {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.other-quotes-column {
    display: flex;
    flex-direction: column;
    margin: 1rem;

    a {
        text-decoration: none;
        margin-bottom: 0.25rem;
    }
}

.btn {
    margin: 1rem;
    display: flex;
    justify-content: flex-start;
}

#show-more-btn {
    height: fit-content;
    background-color: #120e0c;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 10px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

#show-more-btn:hover {
    background-color: #3e8e41;
}


.container {
    display: flex;
    flex-direction: row;
}

.part1 {
    width: 80%;
}

.part2 {
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.part2-box {
    width: 90%;
    margin: 1rem;
    display: flex;
    flex-direction: column;

    h2 {
        margin-bottom: 1rem;
    }
}


@media (max-width: 1025px) {
    .image-holder-child-div {
        width: 90%;
    }
}

@media (max-width: 769px) {
    .image-holder-child-div {
        height: 30em;
    }

    .text-overlay {
        font-size: 1.5rem;
        box-shadow: 0px 0px 0px 12px rgb(248 3 3 / 50%);
    }

    .heading {
        margin-left: 0;
    }

    .container {
        flex-direction: column;
    }

    .part2,
    .part1{
        width: 100%;
    }

    .part2-box-holder{
        width: 100%;
    }
}

@media (max-width: 640px) {
    .quotes-area {
        flex-direction: column;
    }

    .left,
    .right {
        width: 100%;
    }

    .image-holder-child-div {
        height: 15em;
    }

    .personality-text-holder {
        margin: 0;
        margin-top: 1em;
    }

    .conculsion-text-holder {
        margin: 0em;
    }

    .link-hold {
        font-size: medium;
        margin: 0;
    }

    .other-quotes-column-holder,
    .master-alphabet-column-holder {
        width: 100%;
    }
}

@media (max-width: 426px) {
    .button-page-ident {
        padding: 7px 5px;
        font-size: x-small;
    }

    .sidekick-holder {
        margin-left: 1rem;
    }

    .sidekick {
        border-left: 0.3em solid #689985;
        font-size: 1.2rem;
    }

    #item-list {
        margin: 0;
    }

    .image-holder-child-div {
        height: 12em;
    }

    .intro-to-quote {
        text-align: center;
    }

    .intro-to-quote h1 {
        font-size: x-large;
        display: inline-block;
        width: 100%;
        border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
        padding: 1em;
        line-height: 1.5em;
        background: hsla(67, 95%, 95%, 1);
        border: solid 5px hsla(0, 95%, 35%, 1);
    }

    .blockquote {
        padding: 70px 25px 40px;
    }

    .link-hold {
        font-size: small;
        margin: 0;
    }
}