html {
    box-sizing: border-box;
    font-size: 22px;
}
*, *::before, *::after {
    box-sizing: inherit;
}

body {
    font-family: 'Bulo', sans-serif;
    margin: 0;
    background-color: #ffffff;

}
#texture {
    display: none;
}

header {
    width: 100%;
    display: flex;
    position: relative;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    margin-bottom: 6rem;
    padding-top: 250px;
}
nav {
    background-color: #556690;
    width: 100%;
    height: 250px;
    top:0;
}

.darkblue {
    background-color: #283D5E;
    flex-basis: 70%;
    height: 500px;
    justify-self: flex-end;
}
.darkblue h1{
    padding:80px 80px 1rem 80px;
    color:#ffffff;
}
.darkblue p {
    color: #ffffff;
    padding: 0 80px;
}
.red {
    background-color: #DC5C3E;
    flex-basis: 30%;
    height: 500px;
}

.content {
    z-index: 10;
    font-size: 22px;
    line-height: 1.5em;
    margin: 0 auto;
    position: relative;
    padding: 100px;
}
.content::after {
    content: '';
    display: block;
    position:absolute;
    width: 100%;
    height: 100%;
    top:0;
    left: 0;
    z-index: -2;
}
.content > * {
    width: 930px;
    margin: 0 auto;

}

.focusContainer {
    overflow: hidden;
    position: relative;
    
}   


.focusPointContainer {
    width: 100%;
    height: 100%;
    position:absolute;
}

.focusPoint {
    border-radius: 50px;
    position: absolute;
    width: 1000px;
    height: 1000px;
    border-radius: 500px;
    margin-left: -500px;
    margin-top:-500px;
    /* transform: translate(-500px, -500px); */
    transition: width 0.5s ease-in-out, height 0.5s ease-in-out, margin 0.5s ease-in-out;
}
nav.focusContainer {
    position: fixed;
    z-index: 100;
}

.blue-focus .focusPoint {
    background-color:#1751DD;
    mix-blend-mode: color;

}
.content > .focusPointContainer,
.outerContainer > .focusPointContainer{
    z-index: -1;
}
.outerContainer > .focusPointContainer .focusPoint{
    background-image: url(_img/TRE_Textur_black_20x20_0-5.png);
    opacity: 0.3; 
    background-size: 20px;
    background-attachment: fixed;
}
.focusPoint.not-moving {
    
}
.focusPoint.small, .outerContainer > .focusPointContainer .focusPoint.small {
    width: 100px;
    height: 100px;
    margin-left: -50px;
    margin-top:-50px;
    background-size: 0.5%;
    /* transform: translate(-50px, -50px); */

}
header .focusPoint {
}


h1 {
    font-size: 55px;
    font-weight: 100;
}
h2 {
    font-size: 46px;
    line-height: 1.1em;
}
h2 .serif-title {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: 200;
    display: block;
}
.content > h2 {
    margin-bottom: 2rem;
}
.content .focusPoint {
    /* background-color:#ffffff; */
}
.lead {
    width: 930px;
    margin:0 auto;
    font-size: 28px;
    font-style: italic;
    line-height: 1.2em;
    font-weight: 400;
    color:#1751DD;
    padding: 100px 0;
}
button {
    display: block;
    margin:0 auto 4rem 80px;
    border: 2px solid #1751DD;
    padding:0.5rem 1rem;
    color: #1751DD;
    font-size: 16px;
    line-height:30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Bulo', sans-serif;
    font-weight: 600;
    background-color: #ffffff;
}
.accordion {
}
.accordion-row {
    display: flex;
    z-index: 1;
}
.accordion-row:not(:first-of-type) {
    border-top: 2px solid lightgrey;
}
.accordion-row h3 {
    flex-basis: 40%;
    font-size: 22px;
}
.accordion-row p {
    flex-basis: 60%;
    font-size: 20px;
    line-height: 1.4em;
}