@import url(normalize.css);
@import url('https://fonts.googleapis.com/css?family=Montserrat'); 

/*
Sticky Footer Solution
by Steve Hatcher
http://stever.ca
http://www.cssstickyfooter.com
*/

* {
    margin: 0;
    padding: 0;
}

/* must declare 0 margins on everything, also for main layout components use padding, not
vertical margins (top and bottom) to add spacing, else those margins get added to total height
and your footer gets pushed down a bit more, creating vertical scroll bars in the browser */

html, body {
    height: 100%;
}

body {
    min-height: 100%;
    width: 100%;
    font-size: 16px;
  font-family: 'Montserrat';
}

/* Navigation */

header {
    /*background-color:#222;*/
    border-bottom: 1px solid #f1f1f1;
}

header a {
    /*color:#4F758B;*/
    color: rgb(0, 22, 137)
}

#wrap {
    min-height: 100%;
}

#main {
    overflow: auto;
    padding-bottom: 180px;
}

/* must be same height as the footer */

#footer {
    position: relative;
    margin-top: -180px; /* negative value of footer height */
    height: 180px;
    clear: both;
}

/*Opera Fix*/
body:before { /* thanks to Maleika (Kohoutec)*/
    content: "";
    height: 100%;
    float: left;
    width: 0;
    margin-top: -32767px; /* thank you Erik J - negate effect of float*/
}

/* Studio 359 Base System */

/* SET ALL CONTAINERS TO USE INSIDE PADDING */

* {
    box-sizing: border-box;
}

html, body {
    font-size: 16px;
    background-color: #ffffff;
}

/* Import Fonts */

@import url(http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,400,300,600,700,800);

/* Basic Styles */

* {
    outline: none;
}

img {
    width: 100%;
    height: auto;
}

div, ul, li, a, h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat';
    /*font-weight:300;*/
    font-style: normal;
    /*color:#231f20;*/
    font-size: 0.89em;
    margin: 0;
  line-height: 1.6;
}

p {
   font-family: 'Montserrat';
    font-size: 0.89em;
  line-height: 1.6;
}

p a {
  font-family: 'Montserrat';
    font-size: 1em;
    font-weight: 400;
}

h1, h2, h3 {
  font-family: 'Montserrat';
    color: #fff;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.4em;
    font-weight: 600;
}

h1 {
    font-size: 3em;
}

h2 {
    font-size: 2em;
}

h3 {
    font-size: 1em;
}

p, img {
    margin-bottom: 0.83em;
}

strong, h3 {
    font-weight: 700;
}

a {
    color: rgb(0, 22, 137); /* PRIMARY BRAND COLOUR */
    text-decoration: none;
}

a:hover {
    -webkit-transition: color 100ms linear;
    -moz-transition: color 100ms linear;
    -o-transition: color 100ms linear;
    -ms-transition: color 100ms linear;
    transition: color 100ms linear;
    /*color: rgb(79, 117, 139); !* SECONDARY BRAND COLOUR *!*/
    color: rgb(0, 0, 0); /* SECONDARY BRAND COLOUR */
}

/* Grid */

/* used for grid demo boxes */
.demo {
    height: 30px;
    /*background-color:grey;*/
    width: 100%;
}

/* ESCAPE COLOURS */

.col-1 .demo, .col-3 .demo, .col-5 .demo, .col-7 .demo, .col-9 .demo, .col-11 .demo {
    /*background-color:#f05123;*/
    color: rgb(0, 22, 137)
}

.col-2 .demo, .col-4 .demo, .col-6 .demo, .col-8 .demo, .col-10 .demo, .col-12 .demo {
    /*background-color:#231f20;*/
    color: rgb(0, 22, 137)
}

.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.row:before,
.row:after,
.nav-wrapper:before,
.nav-wrapper:after,
.nav:before,
.nav:after,
.mobile-nav:before,
.mobile-nav:after,
.nav-container:before,
.nav-container:after,
.page-wrapper:before,
.page-wrapper:after {
    content: " ";
    display: table;
    clear: both;
}

.container {
    margin: 0 auto;
    padding: 0;
    position: relative;
    width: 100%;
}

.row {
    margin: 0 -15px;
    position: relative;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
    position: relative;
    float: left;
    padding: 15px;
    min-height: 1px;
    width: 100%;
}

@media (min-width: 769px) {
    .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
        float: left;
    }

    .col-12, .col-11, .col-10, .col-9, .col-8, .col-7 {
        width: 100%;
    }

    .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
        width: 50%;
    }
}

@media (min-width: 992px) {
    .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
        float: left;
    }

    .col-12 {
        width: 100%;
    }

    .col-11 {
        width: 91.66666667%;
    }

    .col-10 {
        width: 83.33333333%;
    }

    .col-9 {
        width: 75%;
    }

    .col-8 {
        width: 66.66666667%;
    }

    .col-7 {
        width: 58.33333333%;
    }

    .col-6 {
        width: 50%;
    }

    .col-5 {
        width: 41.66666667%;
    }

    .col-4 {
        width: 33.3333333%;
    }

    .col-3 {
        width: 25%;
    }

    .col-2 {
        width: 16.66666667%;
    }

    .col-1 {
        width: 8.33333333%;
    }
}

.page-wrapper {
    background-color: #f1f1f1;
    position: relative;
    padding-top: 15px;
}


@media (max-width: 479px) {
  .logo-cookie-footer {
    	text-align:center;
  }
}

.itemFullText {
    padding-top: 50px;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 50px;
 }

.float-center {
  float: right;

  position: relative;
  left: -50%; /* or right 50% */
  text-align: left;
}