* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/*
 * -- BASE STYLES --
 */

html, button, input, select, textarea,
.pure-g [class *= "pure-u"] {
    /* Set the content font stack here: */
    font-family: 'Open Sans', sans-serif;
}

html {
	height:100%;
}

body {
    color: #7f8c8d;
    font-size: 13px;
    background: rgba(0,39,103,1);
    background: -moz-linear-gradient(top, rgba(0,39,103,1) 0%, rgba(1,81,209,1) 25%, rgba(1,85,221,1) 51%, rgba(1,81,209,1) 71%, rgba(0,39,103,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,39,103,1)), color-stop(25%, rgba(1,81,209,1)), color-stop(51%, rgba(1,85,221,1)), color-stop(71%, rgba(1,81,209,1)), color-stop(100%, rgba(0,39,103,1)));
    background: -webkit-linear-gradient(top, rgba(0,39,103,1) 0%, rgba(1,81,209,1) 25%, rgba(1,85,221,1) 51%, rgba(1,81,209,1) 71%, rgba(0,39,103,1) 100%);
    background: -o-linear-gradient(top, rgba(0,39,103,1) 0%, rgba(1,81,209,1) 25%, rgba(1,85,221,1) 51%, rgba(1,81,209,1) 71%, rgba(0,39,103,1) 100%);
    background: -ms-linear-gradient(top, rgba(0,39,103,1) 0%, rgba(1,81,209,1) 25%, rgba(1,85,221,1) 51%, rgba(1,81,209,1) 71%, rgba(0,39,103,1) 100%);
    background: linear-gradient(to bottom, rgba(0,39,103,1) 0%, rgba(1,81,209,1) 25%, rgba(1,85,221,1) 51%, rgba(1,81,209,1) 71%, rgba(0,39,103,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#002767', endColorstr='#002767', GradientType=0 );
}

p{
color: white;
    margin-left: 10px;
    margin-right: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6,
label {
    color: #fff;
	font-weight:normal;
	font-size: 1.3em;
	margin-bottom:2em;
}

h1 {
    font-size: 1.3em;
    margin-top: 1em;
    margin-bottom: .25em;
    line-height: 1em;

}

.pure-img-responsive {
    max-width: 100%;
    display: block;
}

.img-center{
	display: block;
    margin-left: auto;
    margin-right: auto;
}

.is-center {
    text-align: center;
}

.container {
    max-width: 558px;   
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.globe {
    background-image:url(media/wysiwyg/images/globalBG.png);
    background-repeat:none;
    background-repeat:no-repeat;
    background-position:center 25%;
    background-size:80%;
    padding-bottom:40em;
	}

.logo {
    margin-bottom: 24px;
    margin-top: 24px;
    display: block;
    margin-left:auto;
    margin-right: auto;
    }

.hello {
    font-size: 2em;
    font-weight:bold;
    }

.country {
	opacity: 1;
	filter: alpha(opacity=100);
    display: block;
}

.country:hover {
	opacity: .6;
	filter: alpha(opacity=95);
}

.country-selector {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 40px 10px 25px;
    text-align: center;
}

.country-selector a {
    width: 30%;
    text-decoration: none;
    display: block;    
}
.country-selector a:first-child {
    width: 31%;
}
.country-selector a:last-child {
    width: 25%;
}

.country-selector img {
    display: block;
    max-width: 100%;
}

fieldset {
    border: none;
}



/*
 * -- TABLET (AND UP) MEDIA QUERIES --
 * On tablets and other medium-sized devices, we want to customize some
 * of the mobile styles.
 */
@media (min-width: 48em) {



    .logo {
		margin-bottom: 4em;
        margin-top: 3em;
	       }
    .hello {
            font-size: 4em;
            font-weight:bold;
        }



}