@import url("https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@300;400;600&display=swap");
@font-face {
    font-family: "selects";
    src: url("fonts/selects.eot?neqyaq");
    src: url("fonts/selects.eot?neqyaq#iefix") format("embedded-opentype"),
        url("fonts/selects.ttf?neqyaq") format("truetype"),
        url("fonts/selects.woff?neqyaq") format("woff"),
        url("fonts/selects.svg?neqyaq#selects") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

[class^="i-"],
[class*=" i-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: "selects" !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.i-radio:before {
    content: "\e902";
}
.i-radio-off:before {
    content: "\e900";
}
.i-radio-on:before {
    content: "\e901";
}

body {
    font-family: "Source Code Pro", monospace;
    font-weight: 400;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Source Code Pro", monospace;
    font-weight: 600;
}
.light {
    font-weight: 300;
}
.marginfixednav {
    margin-top: 102px;
}
.parcel {
    margin-bottom: 30vh;
    margin-top: 10vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.radiogroup .container-fluid{
    transition: all .35s ease;
    border: 2px solid #EEE;
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #FFF;
    cursor: pointer;
}
.radiogroup .container-fluid.checked{
    border:2px solid #666;
}
.radiogroup .container-fluid:hover{
    box-shadow: 0 0 10px 5px #CCC;
}
.radiogroup .container-fluid .row input[type=radio]{
    display: none;
}
.radiogroup .container-fluid .row > div{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.radiogroup .container-fluid h4{
    margin: 0;
}
.radiogroup .container-fluid i{
    font-size: 2rem;
}

body > main{
    transition: all 2s ease;
    opacity: 0;
}
body > main.started{
    opacity: 1;
}

body > footer{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}
body > footer h5{
    font-size: 1.8rem;
}

#background-parallax{
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    perspective: 100vh;
    position: fixed;
    overflow: hidden;
    z-index: -1;
}
#background-parallax .bg-light{
    transition: all 2s ease;
    position: absolute;
    height: 60vh;
    width: 100%;
    left: 100%;
    top: 20vh;
}
#background-parallax.started .bg-light{
    left: -30%;
}
#background-parallax .pattern > div{
    transition: all 2s ease;
    position: absolute;
    width: 90%;
    left: -100%;
    top: 25vh;
    opacity: 0;
}
@media(min-width: 768px){
    #background-parallax .pattern > div{
        width: 45%;
        left: -50%;
    }
}
#background-parallax.started .pattern > div{
    left: 0;
    opacity: 0.1;
}
@media(min-width: 768px){
    #background-parallax.started .pattern > div{
        left: 5%;
        opacity: 0.2;
    }
}
#background-parallax.started .pattern > div img{
    display: block;
    width: 100%;
}
#background-parallax .elem1 > div{
    opacity: 0;
    transition: all 1.5s ease;
    position: absolute;
    transform-style: preserve-3d;
}
@media(min-width: 768px){
    #background-parallax .elem1 > div{
        width: 40%;
        left: 5%;
        top: 15vh;
    }
}
@media(min-width: 1200px){
    #background-parallax .elem1 > div{
        width: 25%;
        left: 10%;
    }
}
#background-parallax .elem1 > div > div{
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    backface-visibility: hidden;
}
#background-parallax .elem1 > div > div img{
    display: block;
    width: 100%;
}
#background-parallax .elem1 > div .elem1-back{
    transform: rotateY(180deg);
}
#background-parallax.started .elem1 > div{
    opacity: 1;
    transform: rotateY(-180deg);
}

#background-parallax .elem2 > div{
    opacity: 0;
    transition: all 1.5s ease;
    position: absolute;
    transform-style: preserve-3d;
}
@media(min-width: 768px){
    #background-parallax .elem2 > div{
        width: 18%;
        left: 28%;
        top: 43vh;
    }
}
@media(min-width: 1200px){
    #background-parallax .elem2 > div{
        width: 12%;
        left: 25%;
        top: 50vh;
    }
}
#background-parallax .elem2 > div > div{
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    backface-visibility: hidden;
}
#background-parallax .elem2 > div > div img{
    display: block;
    width: 100%;
}
#background-parallax .elem2 > div .elem1-back{
    transform: rotateY(180deg);
}
#background-parallax.started .elem2 > div{
    opacity: 1;
    transform: rotateY(180deg);
}