body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

.banner--wrapper {
    position: absolute;
    z-index: 10;
    display: flex;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

.content--wrapper {
    position: absolute;
    z-index: 15;
    display: flex;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    justify-content: center;
}

.banner--container-left {
    flex: 0 0 40%;
    height: 100%;
    background-color: #fff;
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.content--container-middle {
    display: flex;
    /* flex: 0 0 50%; */
    width: 60vw;
    min-width: 400px;
    height: 100%;
    background-color: #fff;
    /* clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%); */
    transform: skewX(-7deg);
}

.banner--container-right {
    flex: 0 0 60%;
    height: 100%;
    background-color: #fff;
    overflow: hidden;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.logo--container {
    z-index: 20;
    width: 25vw;
    height: auto;
    padding: 10px 30px;
}

.wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: auto;
}

/*.wrapper div {
    transform: skewX(7deg);
    margin: 0 20px;
}*/

#applySkew > * {
    transform: skewX(7deg);
    margin: 10px auto;
}

#applySkew > ul {
    transform: skewX(0deg);
    margin: 10px 20px;
}
#applySkew > ul > li, #applySkew > ul > p {
    transform: skewX(7deg);
    margin: 10px 20px;
}

#noSkew > * {
    transform: initial !important;
}

.list--skew {
    transform: skewX(0deg);
}

.list--skew ul {
    transform: skewX(-7deg);
}

.list--skew ul li {
    transform: skewX(7deg);
}

.logo--img {
    width: 100%;
    height: 100%;
}

.left--img {
    width: auto;
    height: 100%;
    display: block;
}

.right--img {
    width: auto;
    height: 100%;
    display: block;
}

body {
    font-family: open sans,helvetica neue,Helvetica,Arial,lucida grande,sans-serif;
    color: #444;
    font-weight: 500;
    line-height: 1.5rem;
}

p, h1, h2, h3, h4 {
    margin-left: 20px !important;
    margin-right: 20px !important;
}

p {
    font-size: 1em;
}

h1 {
    font-size: 1.5em;
    font-weight: 800;
    color: #e2701e;
}

h2 {
    font-size: 1.4em;
    font-weight: 800;
    color: #e2701e;
}

h3 {
    font-size: 1.2em;
    font-weight: 800;
    color: #e2701e;
}

h4 {
    font-size: 1.1em;
    font-weight: 800;
    color: #e2701e;
}

.alphabetic--list {
    list-style-type: lower-alpha;
    padding: 20px;
}

.nummeric--list {
    list-style-type: upper-roman;
    padding: 20px;
}

.nostyle--list {
    list-style-type: none;
    padding: 20px;
}

.button--container {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 30px 50px 30px;
}

a {
    color: #e2701e;
    font-weight: bold;
}

.button--container a {
    text-align: center;
    margin: 5px 5px;
    display: block;
    background-color: #e2701e;
    padding: 5px 15px;

    /*border: 1px solid #010101;*/
    color: #fff;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
}

.button--container a:hover {
    background-color: #0877c4;
    color: #fff;
}


@media (max-width: 1023px) {
    .banner--container-right {
        overflow: visible;
    }

    .content--wrapper {
        width: 100%;
    }

    .content--container-middle {
        transform: initial;
    }
        
    #applySkew > * {
        transform: initial;
        margin: 10px auto;
    }

    #applySkew > ul {
        transform: initial;
        margin: 10px 20px;
    }
    #applySkew > ul > li, #applySkew > ul > p {
        transform: initial;
        margin: 10px 20px;
    }

    .list--skew {
        transform: skewX(0deg);
    }

    .list--skew ul {
        transform: initial;
    }

    .list--skew ul li {
        transform: initial;
    }
}

@media (max-width: 767px) {
    .banner--container-right {
       display: none;
    }
    .banner--container-left {
       overflow: visible;
    }
}

