@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700");

body {
    background-color: white;
    font-family: 'Montserrat', sans-serif;
}

header {
    position: absolute;
    height: 100%;
    min-height: 400px;
    width: 100%;
    animation: fade-in 1s;
    -webkit-animation: fade-in 1s;
    -ms-animation: fade-in 1s;
    -moz-animation: fade-in 1s;
    -o-animation: fade-in 1s;
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .85em;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-left: 38px;
    margin-top: 13px;
    color: #161616;
    transition: opacity 1s;
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -ms-transition: opacity 1s;
    -o-transition: opacity 1s;
}

.choose {
    width: calc(100% - 75px);
    height: calc(100% - 75px);
    position: absolute;
    background-color: rgba(0,0,0,.05);
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.choose > div {
    width: 50%;
    height: 100%;
    position: absolute;
    cursor: pointer;
    transition: width 1s;
    -webkit-transition: width 1s;
    -moz-transition: width 1s;
    -ms-transition: width 1s;
    -o-transition: width 1s;
}
.choose > div:last-of-type {
    background-color: #0c4b43;
    background-image: url(../../images/nerves-green-zebra.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto 150%;
    right: 0;
    transition: background-size 1s,width 1s;
    -webkit-transition: background-size 1s,width 1s;
    -moz-transition: background-size 1s,width 1s;
    -ms-transition: background-size 1s,width 1s;
    -o-transition: background-size 1s,width 1s;
}

.choose > div:last-of-type:hover {
    background-size: auto 170%;
}

.choose h2 {
    position: absolute;
    color: transparent;
    width: 90%;
    max-width: 250px;
    height: 275px;
    margin: auto;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100%;
    transition: transform 1s,opacity 1s;
    -webkit-transition: -webkit-transform 1s,opacity 1s;
    -moz-transition: -moz-transform 1s,opacity 1s;
    -ms-transition: -ms-transform 1s,opacity 1s;
    -o-transition: -o-transform 1s,opacity 1s;
}

.choose-white h2 {
    background-image: url(../../images/logo-white-zebra.png);
}

.choose-green h2 {
    background-image: url(../../images/logo-green-zebra.png);
    height: 260px;
}

.choose > div div {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
    transition: opacity 1s;
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -ms-transition: opacity 1s;
    -o-transition: opacity 1s;
}

.choose > div div h3 {
    color: #161616;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.7em;
    letter-spacing: -.05em;
    width: 90%;
    max-width: 500px;
    margin: auto;
    line-height: 1.1em;
    margin-bottom: 15px;
    display: none;
    opacity: 0;
    transition: opacity 1s;
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -ms-transition: opacity 1s;
    -o-transition: opacity 1s;
}

.choose > div:hover h2 {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.choose > .choose-green div h3 {
    color: white;
}

.cta {
    font-family: 'Montserrat', sans-serif;
    font-size: .95em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #161616;
    background-image: url(../../images/arrow-right.png);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 7px;
    padding-right: 25px;
    transition: padding-right .3s;
    -webkit-transition: padding-right .3s;
    -moz-transition: padding-right .3s;
    -ms-transition: padding-right .3s;
    -o-transition: padding-right .3s;
}
.cta:hover {
    text-decoration: none;
    color: #161616;
    padding-right: 30px;
}

.cta-white {
    font-family: 'Montserrat', sans-serif;
    font-size: .95em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: white;
    background-image: url(../../images/arrow-right-white.png);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 7px;
    padding-right: 25px;
    transition: padding-right .3s;
    -webkit-transition: padding-right .3s;
    -moz-transition: padding-right .3s;
    -ms-transition: padding-right .3s;
    -o-transition: padding-right .3s;
}
.cta-white:hover {
    text-decoration: none;
    color: white;
    padding-right: 30px;
}

@keyframes fade-in {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
@-webkit-keyframes fade-in {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
@-ms-keyframes fade-in {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
@-moz-keyframes fade-in {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
@-o-keyframes fade-in {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

@media only screen and (max-width: 1600px) {
    
    .choose h2 {
        max-width: 200px;
        height: 225px;
    }

    .choose-green h2 {
        height: 208px;
    }
    
}

@media only screen and (max-width: 1000px) {
    
    .choose > div {
        width: 100%;
        height: 50%;
        transition: height 1s;
        -webkit-transition: height 1s;
        -moz-transition: height 1s;
        -ms-transition: height 1s;
        -o-transition: height 1s;
    }
    .choose > div:last-of-type {
        bottom: 0;
        transition: height 1s;
        -webkit-transition: height 1s;
        -moz-transition: height 1s;
        -ms-transition: height 1s;
        -o-transition: height 1s;
    }
    
    .choose h2 {
        max-width: 150px;
        height: 165px;
        bottom: 100px;
        transition: transform 1s,opacity 1s,bottom 1s;
        -webkit-transition: -webkit-transform 1s,opacity 1s,bottom 1s;
        -moz-transition: -moz-transform 1s,opacity 1s,bottom 1s;
        -ms-transition: -ms-transform 1s,opacity 1s,bottom 1s;
        -o-transition: -o-transform 1s,opacity 1s,bottom 1s;
    }

    .choose-green h2 {
        height: 155px;
    }
    
}

@media only screen and (max-width: 600px) {
    
    h1 {
        margin-top: 3px;
        margin-left: 20px;
    }
    
    .choose {
        width: calc(100% - 40px);
        height: calc(100% - 40px);
    }
    
    .choose h2 {
        max-width: 100px;
        height: 111px;
        bottom: 50px;
    }
    
    .choose-green h2 {
        height: 104px;
    }
    
    .choose > div div {
        bottom: 20px;
    }
    
    .choose > div div h3 {
        font-size: 1em;
        margin-bottom: 5px;
    }
    
    .cta,.cta-white {
        font-size: .7em;
        background-size: 5px;
        background-position: right center;
    }
    
}

@supports(-webkit-appearance: none) or (-moz-appearance: none) {
  input,textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
  }
}