/* .navigation {
    margin-top: 10px;
    padding-left: 0px;
}

.navigation li {
    display: inline;
    color: darkgray;
}

.navigation a {
    text-decoration: none;
    color: darkgray;
}

.navigation li:not(:last-child) a:after {
    content: ' \00A0 \00A0 > \00A0';
} */

.information {
    margin-top: 50px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.info-title {
    text-align: center;
    z-index: 1;
    color: white;
    font-size: 40px;
    background-color: #69bdc8;
    height: auto;
    padding: 5px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    /* border:1px solid red; */
    box-shadow: -7px -7px 20px 0px #fff9, -4px -4px 5px 0px #fff9, 7px 7px 20px 0px #0002, 4px 4px 5px 0px #0001, inset 0px 0px 0px 0px #fff9, inset 0px 0px 0px 0px #0001, inset 0px 0px 0px 0px #fff9, inset 0px 0px 0px 0px #0001;
}

.info-content {
    overflow: hidden;
    padding-top: 20px;
    background-color: rgba(211, 211, 211, 0.3);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-top: -15px;
    box-shadow: -7px -7px 20px 0px #fff9, -4px -4px 5px 0px #fff9, 7px 7px 20px 0px #0002, 4px 4px 5px 0px #0001, inset 0px 0px 0px 0px #fff9, inset 0px 0px 0px 0px #0001, inset 0px 0px 0px 0px #fff9, inset 0px 0px 0px 0px #0001;
}

.info-content>span {
    margin: 20px;
    font-size: 20px;
    text-align: justify;
    font-weight: 300;
    line-height: 30px;
}

.step-box {
    position: relative;
    width: auto;
    /* border: 1px solid red; */
    margin: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.step-title {
    color: white;
    margin-top: 10px;
    background-color: #69bdc8;
    border-radius: 10px;
    box-shadow: -7px -7px 20px 0px #fff9, -4px -4px 5px 0px #fff9, 7px 7px 20px 0px #0002, 4px 4px 5px 0px #0001, inset 0px 0px 0px 0px #fff9, inset 0px 0px 0px 0px #0001, inset 0px 0px 0px 0px #fff9, inset 0px 0px 0px 0px #0001;
    padding: 5px 10px;
    /* font-weight: bold; */
    font-size: 20px;
}

.step-box:not(:last-child)::after {
    position: absolute;
    bottom: -20px;
    margin-bottom: 10px;
    content: "";
    width: 100%;
    height: 2px;
    background-color: #69bdc836;
}

.step-content {
    margin-top: 10px;
    font-weight: 300;
    font-size: 20px;
    line-height: 30px;
    text-align: justify;
}

.step-pic {
    position: relative;
    width: 50%;
    border-radius: 10px;
    background-color: white;
    box-shadow: inset 2px 2px 5px #babecc, inset -5px -5px 10px #fff;
    padding: 10px;
}

.step-pic img {
    border-radius: 5px;
    position: relative;
    right: 0;
    width: 100%;
    overflow: hidden;
    transition: 0.5s;
}

.hint {
    box-shadow: none;
    z-index: 1;
    position: absolute;
    border-radius: 10px;
    background-color: transparent;
    color: transparent;
    top: 20px;
    right: 20px;
    text-align: center;
    padding: 5px;
    transition: 0.5s;
}

.step-pic:hover .hint {
    box-shadow: 7px 7px 20px 0px #0002, 4px 4px 5px 0px #0001, inset 0px 0px 0px 0px #fff9, inset 0px 0px 0px 0px #0001, inset 0px 0px 0px 0px #fff9, inset 0px 0px 0px 0px #0001;
    background-color: #69bdc8;
    color: white;
}

.step-pic:active .hint {
    box-shadow: none;
}

.step-pic:active img {
    position: relative;
    right: 103%;
    width: 203%;
    box-shadow: 7px 7px 20px 0px #0002, 4px 4px 5px 0px #0001, inset 0px 0px 0px 0px #fff9, inset 0px 0px 0px 0px #0001, inset 0px 0px 0px 0px #fff9, inset 0px 0px 0px 0px #0001;
}