.title-header {
    padding-left: 50px !important;
}

.image {
    width: 100%;
    height: 100%;
    border-color: rgba(0, 0, 0, 0);
    border-style: solid;
    border-width: 5px 20px 5px 20px;

    position: relative;
}

.image img {
    border: 5px solid white;
}

.panel-holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.panel-holder-vert {
    flex-direction: column;
}

.main {
    margin-bottom: 0 !important;
    padding: 20px 5% 20px 5%;
    /*height: 70%;*/
    /*background-color: rgb(168, 191, 225);*/
    background: linear-gradient(90deg, rgb(247, 176, 130) 50%, rgb(168, 191, 225) 50%);
}

.smaller-text {
    font-size: 0.8em !important;
}

.circled {
    position: absolute;
    top: 20%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 200px;
    height: 70px;
    background-color: rgb(168, 191, 225); /* 98 126 163 */
    border: 8px solid white;
    font-size: 1.5em;
    color: white;
    padding: 20px;
    margin: 20px;
    text-align: center;
}

.circled * {
    width: 100%;
}

.circled-col-2 { background-color: rgb(209, 56, 62); }
.circled-col-3 { background-color: rgb(247, 176, 130); }
.circled-col-4 { background-color: rgb(250, 149, 150); }

.warning {
    background-color:rgb(209, 56, 62);
    padding: 20px 200px;
    color: white;
    font-size: 1.4em;
}

.warning p {
    margin: 0;
}

.link {
    color: white;
    font-weight: bold;
}

.link:hover {
    text-decoration: underline;
}

.overlay-bg {
    position: relative;
    z-index: 5;
}

.overlay-fg {
    position: relative;
    z-index: 10;
}

.bg-rect {
    position: absolute;
    z-index: 4;
    background-color: rgb(250, 149, 150);
    height: 20%;
    width: 50%;
    bottom: 0;
    left: 0;
}

@media only screen and (max-width: 992px) {    
    .warning {
        padding: 20px 20px;
    }
}