.title-header {
    padding-left: 50px !important;
}

.image {
    width: 100%;
    height: 100%;

    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: 100%;*/
    /* rgb(247, 176, 130)*/
    background: linear-gradient(90deg, rgb(168, 191, 225) 50%, rgb(250, 150, 150) 50%);
}

.description {
    color: white;
    font-size: 1.2em;
    text-align: justify;
}

.description p {
    margin-right: 30px;
}

.col-1 {
    padding-right: 50px !important;
}

.col-2 {
    padding-left: 50px !important;
}

.infobox {
    background-color: white;
    border: 5px solid black;
    border-radius: 5px;
    font-size: 1.2em;

    padding: 0 20px;
    margin: 20px 0;
}

.link {
    color: rgb(209, 56, 62);
    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;
}

.bg-rect-1 {
    left: 0;
    bottom: 0;
    width: 45%;
    height: 68%;
    background-color: rgb(209, 56, 62);
}

.bg-rect-2 {
    right: 0;
    top: 0;
    width: 40%;
    height: 80%;

    background-color: rgb(247, 176, 130);
}

@media only screen and (max-width: 992px) {    
    .bg-rect {
        display: none;
    }

    .col-1, .col-2 {
        padding: 0 !important;
    }
}