/**
 * StyleSheet for Payfield.com
 */

:root{
    --BlackDark: #1d000b;
    --Dark: #3e061a;
    --Medium: #7a1539;
    --DarkBright:#8f0a39;
    --Bright: #cd063d;
    --TitleBright:#fff;
    --LightBright:#f41754;

    /*--BlackDark:#001b12;
    --Dark:#0a2b20;
    --Medium:#0c3225;
    --DarkBright:#038744;
    --Bright:#00b157;
    --TitleBright:#00b157;
    --LightBright:#00ee6a;*/

    --DarkPetrol:#00181a;

    --Gold: #c7be9e;
    --LightGold:#e8e3d0;
    --MediumGold:#9f9263;
    --DarkGold:#6e5d1f;
    --DeepGold:#3f3118;
    --BlackGold:#1e1c15;

}

html,
body{
    font-family:"Open Sans", sans-serif;
    font-size:10px;
    margin:0;
    padding:0;
}
a{
    text-decoration:none;
}
h1,h2,h3,p{
    margin:0;
    padding:0;
}
.__hidden{
    display:none;
}
.__inner{
    width:100%;
    position:relative;
    margin:0 auto;
    max-width:1024px;
    padding:0 16px;
    box-sizing:border-box;
}
.__distributeContent{
    display:flex;
    flex-flow:row nowrap;
    justify-content:space-between;
}
.__splitContent{
    display:flex;
    flex-flow:row nowrap;
    justify-content:stretch;
}
.__alignVerticalCenter{
    height:100%;
    align-items:center;
}
.__alignContentLeft{
    display:inline-block;
    flex-flow:row nowrap;
    justify-content:flex-start;
    align-items:center;
}
.__alignContentRight{
    display:inline-flex;
    flex-flow:row nowrap;
    justify-content:flex-end;
    align-items:center;
}
.__alignContentRight .__alignedContent{
    margin-left:12px;
}
.__has-svg{
    position:relative;
}
.__has-svg svg{
    position:absolute;
    left:50%;
    top:50%;
    height:100%;
    width:auto;
    transform:translate(-50%,-50%);
}
.__splitItem{
    width:50%;
}
nav{
    width:100%;
    height:48px;
    position:absolute;
    left:0px;
    top:24px;
    z-index:10;
}
nav .payfield{
    height:32px;
    display:flex;
    flex-flow:row nowrap;
}
nav .payfieldLion{
    display:block;
    height:32px;
    width:32px;
    margin-right:4px;
    color:var(--Bright);
}
nav .payfieldWord{
    display:block;
    height:32px;
    width:94px;
    color:#ffffff;
}
.button{
    height:42px;
    border-radius:21px;
    box-sizing:border-box;
    padding:0 20px;
    display:inline-flex;
    flex-flow:row nowrap;
    align-items:center;
    justify-content:center;
}
button{
    background-color:transparent;
}

.__ghost{
    border:1px solid currentColor;
}
.__bright{
    color:var(--Bright);
}
.__gold{
    color:var(--Gold);
}
.__darkGold{
    color:var(--DarkGold);
}
.__mediumGold{
    color:var(--MediumGold);
}

.buttonLabel{
    font-family:"Open Sans", sans-serif;
    font-weight:400;
    font-size:16px;

}
.buttonArrow{
    width:22px;
    height:16px;
    position:relative;
    margin-left:10px;
}
.buttonArrow::before{
    width:100%;
    height:2px;
    background-color:currentColor;
    content:"";
    position:absolute;
    left:0px;
    top:50%;
    transform:translate(0,-50%);
}
.buttonArrow::after{
    height:12px;
    width:12px;
    box-sizing:border-box;
    border-right:2px solid currentColor;
    border-top:2px solid currentColor;
    content:"";
    position:absolute;
    right:0px;
    top:50%;
    transform:translate(0,-50%) rotate(45deg);
}
.__growOnHover .buttonArrow{
    transition:width .2s ease-in-out;
}
.__growOnHover:hover .buttonArrow{
    width:36px;
}
.optionToggle{
    height:42px;
    width:84px;
    border-radius:21px;
    box-sizing:border-box;
    display:inline-flex;
    flex-flow:row nowrap;
    align-items:center;
    justify-content:center;
    position:relative;
}
.optionIndicator{
    position:absolute;
    width:calc(58% + 2px);
    height:42px;
    border-radius:21px;
    box-sizing:border-box;
    border:1px solid currentColor;
    background-color:var(--Medium);
    z-index:0;
    left:42%;
    margin:0 -1px;
    transition:left .2s ease-in;
}
.optionIndicator.__en{
    left:0%;
}
.optionIndicator.__nl{
    left:42%;
}
.option{
    display:inline-flex;
    flex-flow:row nowrap;
    align-items:center;
    justify-content:center;
    height:100%;
    width:42%;
    font-size:16px;
    font-family:"Open Sans", sans-serif;
    font-weight:400;
    z-index:2;
    box-sizing:border-box;
    cursor:pointer;
    padding:0;
    transition:width .2s ease-in, padding .2s ease-in;
}
.option.__selected{
    width:58%;
    color:#fff;
    cursor:default;
}
.option.__rightOption{
    padding-right:6px;
}
.option.__leftOption{
    padding-left:6px;
}
.option.__leftOption.__selected{
    padding:0;
}
.option.__rightOption.__selected{
    padding:0;
}
header{
    width:100%;
    background-color:var(--Dark);
    color:#fff;
    overflow:hidden;
    position:relative;
}
header .headerLion{
    position:absolute;
    height:66vh;
    width:66vh;
    color:var(--Medium);
    opacity:.8;
    z-index:1;
}
header .headerLion svg{
    height:100%;
    width:100%;
}
header .headerContent{
    position:relative;
    width:100%;
    z-index:2;
    padding-top:30vh;
}
header .headerContent .__inner{
    box-sizing:border-box;
    padding:0 52px 72px 52px;
}

header h1{
    font-family:"PT Serif", serif;
    font-weight:400;
    font-size:42px;
    line-height:46px;
    width:100%;
    max-width:480px;
    margin-bottom:16px;
    color:var(--TitleBright);
}
p{
    font-family:"Open Sans", sans-serif;
    font-weight:300;
    font-size:18px;
    line-height:26px;
}
header p{
    width:100%;
    max-width:600px;
}
section .__inner{
    padding:72px 52px;
}
section h2{
    font-family:"PT Serif", serif;
    font-size:36px;
    font-weight:400;
    margin-bottom:16px;
    width:100%;
    max-width:600px;
}
section p{
    width:100%;
    max-width:600px;
    margin-bottom:24px;
}
section.gold{
    background-color:var(--Gold);
}
section.gold h2{
    color:var(--BlackGold);
}
section.gold p{
    color:var(--DeepGold);
    font-weight:400;
}
section.lightGold{
    background-color:var(--LightGold);
}
section.lightGold h2{
    color:var(--BlackGold);
}
section.lightGold p{
    color:var(--DeepGold);
    font-weight:400;
}

section.lightGold{
    background-color:var(--LightGold);
}
section.lightGold h2{
    color:var(--BlackGold);
}
section.lightGold p{
    color:var(--DeepGold);
    font-weight:400;
}

section.contact{
    background-color:var(--Gold);
}
section.contact .__inner{
    padding-top:36px;
    padding-bottom:36px;
}
section.contact h2{
    color:var(--DeepGold);
}
section.contact h2 sup{
    font-size:.6em;
    opacity:.4;
}
section.contact h3{
    font-family:"Open Sans", sans-serif;
    font-weight:600;
    color:var(--MediumGold);
    text-transform:uppercase;
    margin-bottom:8px;
    letter-spacing:3px;
    font-size:12px;
}
section.contact p{
    font-weight:400;
    color:var(--DeepGold);
}
section.contact p a{
    color:var(--DeepGold);
}
section.contact .footNote{
    font-size:12px;
    font-weight:400;
    font-style:italic;
    color:var(--MediumGold);
}

section.contactForm h2{
    color:var(--MediumGold);
}
section.contactForm p{
    font-weight:400;
    color:var(--MediumGold);
}

.inputRow{
    width:100%;
    max-width:600px;
    margin-bottom:12px;
}
.inputRow.__lastRow{
    margin-bottom:24px;
}
.inputRow label,
.inputRow input,
.inputRow textarea{
    display:block;
}

.inputRow label{
    font-family:"Open Sans", sans-serif;
    font-weight:600;
    color:var(--MediumGold);
    text-transform:uppercase;
    margin-bottom:8px;
    letter-spacing:3px;
    font-size:12px;
}
.inputRow input,
.inputRow textarea{
    width:100%;
    border:1px solid var(--Gold);
    border-radius:23px;
    box-sizing:border-box;
    padding:0 23px;
}
.inputRow input:focus,
.inputRow textarea:focus{
    border:1px solid var(--DeepGold);
    outline:none;
}
.inputRow input{
    height:46px;
}
.inputRow textarea{
    height:130px;
    resize:none;
    padding:23px;
}

.error header{
    height:100vh;
    background-color:var(--Gold);
}
.error header .headerLion{
    height:110vh;
    width:110vh;
    color:var(--MediumGold);
    opacity:.2;
}
.error header .headerContent{
    height:80%;
}
.error header h1{
    font-size:72px;
    line-height:78px;
    color:#fff;
}
.error nav .__alignContentRight{
    display:none;
}
.error nav .payfieldLion{
    color:var(--DeepGold);
}
.error nav .payfieldWord{
    color:var(--LightGold);
}
.error footer{
    display:none;
}


footer{
    background-color:var(--DarkPetrol);
}
footer .__inner{
    padding:72px 52px;
}


@media only screen and (max-width: 660px) {

    nav .optionToggle,
    nav .button{
        transform:scale(.8);
        transform-origin:80% 50%;
    }
    .__alignContentRight .__alignedContent{
        margin-left:0px;
    }
    .__alignContentRight .button.__alignedContent{
        margin-right:-10px;
    }
    nav .payfield{
        transform:scale(.9);
        transform-origin:0% 50%;
    }
    header .headerContent .__inner{
        padding-left:24px;
        padding-right:24px;
    }
    section .__inner{
        padding-left:24px;
        padding-right:24px;
    }
    .__splitContent{
        display:flex;
        flex-flow:column nowrap;
        justify-content:stretch;
    }
    .__splitItem{
        width:100%;
    }
}
