

body{
  background:#fff;  
  color:#333;
  font-family: "Lato", sans-serif;
  font-size:18px;
  font-weight: 400;
  line-height: 1.5em;
  margin:0;
  padding:0;
}

img{
  max-width: 100%;
}

#page{
  overflow:hidden;
}

.banner{
  padding-top: 50px;
  box-sizing: border-box;
  height: 700px;
  /*height: 75vh;
  min-height: 500px;
  max-height: 800px;*/
  background: url(../images/banner.jpg);
  background-size: 1800px auto;
  background-repeat: no-repeat;
  background-position: top 50px center;
  position: relative;
}

.banner a.home{
  background: url(../images/home.jpg);
  background-size: 100%;
  aspect-ratio: 1/1;
  width: 60px;
  position: absolute;
  top: 30px;
  right: 30px;
}

.banner .logo{
  width: 500px;
  height: 42px;
  background: url(../images/logo.png);
  background-size: 100%;
  margin: 0 auto;
}


.banner .title{
  aspect-ratio: 500/337;
  width: 500px;
  background: url(../images/title.jpg);
  background-size: 100%;
  margin: 60px auto 0;
}

.banner:before{
  position: absolute;
  content: "";
  height: 204px;
  bottom: 0;
  left: 0;
  width: 100%;
  background: url(../images/city.png);
}

.banner .cloud.one{
  position: absolute;
  top: 150px;
  left: calc(50% - 600px);
  background: url(../images/cloud-1.png);
  aspect-ratio: 321/182;
  background-size: 100%;
  background-repeat: no-repeat;
  width: 321px;
}

.banner .cloud.two{
  position: absolute;
  top: 310px;
  left: 180px;
  background: url(../images/cloud-2.png);
  aspect-ratio: 135/70;
  background-size: 100%;
  background-repeat: no-repeat;
  width: 135px;
}

.banner .cloud.three{
  position: absolute;
  top: 100px;
  left: 400px;
  background: url(../images/cloud-3.png);
  aspect-ratio: 135/70;
  background-size: 100%;
  background-repeat: no-repeat;
  width: 135px;
}

.banner .cloud.four{
  position: absolute;
  top: 100px;
  left: 100px;
  background: url(../images/cloud-4.png);
  aspect-ratio: 189/78;
  background-size: 100%;
  background-repeat: no-repeat;
  width: 189px;
}



.container{
  margin: 0 auto;
  max-width:1500px;
  padding: 0 150px;  
}


.blue{
  background: #2fa7df;
 padding: 100px 0;
}

.card{
  position: relative;
  height: 100%;
  width: 100%;
}


.card > .front,
.card > .back {
  display: block;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-duration: 0.5s;
  transition-property: transform, opacity;
  border-radius: 2rem;
  overflow: hidden;
    height: 100%;
  width: 100%;
}
.card > .front {
  transform: rotateY(0deg);
  background: #fff;
  border: 3px solid #0c4d8f;

}
.card > .back {
  position: absolute;
  opacity: 0;
  top: 0px;
  left: 0px;
  transform: rotateY(-180deg);
  border: 3px solid #fff;
  background: #0c4d8f;
  color: #fff;
}
.card:hover > .front,
.card:active > .front {
  transform: rotateY(180deg);
}
.card:hover > .back,
.card:active > .back {
  opacity: 1;
  transform: rotateY(0deg);
}



.grid .item{
  position: relative;
}


.logo .wrap{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.logo .wrap img{
  margin: 0 auto;
  max-width: 300px;
}


.grid {
  display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(23, 1fr);
grid-column-gap: 0px;
grid-row-gap: 0px;
grid-column-gap: 50px;
grid-row-gap: 50px;
}

.grid .item:nth-of-type(1) { grid-area: 1 / 1 / 6 / 2; }
.grid .item:nth-of-type(2) { grid-area: 1 / 2 / 5 / 4; }
.grid .item:nth-of-type(3) { grid-area: 6 / 1 / 10 / 2; }
.grid .item:nth-of-type(4) { grid-area: 5 / 2 / 10 / 3; }
.grid .item:nth-of-type(5) { grid-area: 5 / 3 / 10 / 4; }
.grid .item:nth-of-type(6) { grid-area: 10 / 1 / 15 / 3; }
.grid .item:nth-of-type(7) { grid-area: 10 / 3 / 15 / 4; }
.grid .item:nth-of-type(8){ grid-area: 15 / 1 / 20 / 2; }
.grid .item:nth-of-type(9) { grid-area: 15 / 2 / 20 / 4; }
.grid .item:nth-of-type(10) { grid-area: 20 / 1 / 24 / 3; }
.grid .item:nth-of-type(11) { grid-area: 20 / 3 / 24 / 4; }

/*.parent {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(13, 1fr);
grid-column-gap: 0px;
grid-row-gap: 0px;
}

.div1 { grid-area: 1 / 1 / 4 / 2; }
.div2 { grid-area: 1 / 2 / 3 / 4; }
.div3 { grid-area: 4 / 1 / 6 / 2; }
.div4 { grid-area: 3 / 2 / 6 / 3; }
.div5 { grid-area: 3 / 3 / 6 / 4; }
.div6 { grid-area: 6 / 1 / 9 / 3; }
.div7 { grid-area: 6 / 3 / 9 / 4; }
.div8 { grid-area: 9 / 1 / 12 / 2; }
.div9 { grid-area: 9 / 2 / 12 / 4; }
.div10 { grid-area: 12 / 1 / 14 / 3; }
.div11 { grid-area: 12 / 3 / 14 / 4; }

Done
*/

.front .intro{
  background: #0c4d8f;
  box-sizing: border-box;
  overflow: hidden;
  color: white;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3em;
   padding: 1em 1.5em;
  text-align: center;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.back .intro{
  background: linear-gradient(90deg,rgba(14, 76, 144, 1) 0%, rgba(45, 168, 224, 1) 57%, rgba(144, 203, 104, 1) 100%);
  box-sizing: border-box;
  overflow: hidden;
  color: white;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3em;
  padding: 1em 1.5em;
  text-align: center;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 3px solid #fff;
}

.front .main,
.back .main{
  box-sizing: border-box;
  padding: 1em 2em;
  display: flex;
  flex-direction: column;
  justify-content: center;
   height: calc(100% - 120px);
}








.grid .item:nth-of-type(1) .front .text{
  text-align: center;
  font-weight: 900;
  font-size: 50px;
  line-height: .8em;
  color: #0c4d8f;
  position: relative;
}

.grid .item:nth-of-type(1) .front .text sup{
  font-size: .5em;
  vertical-align: super;
}

.grid .item:nth-of-type(1) .front .text span{
  display: block;
  font-size: 23px;
  font-weight: 400;
  text-transform: uppercase;

}



.grid .item:nth-of-type(2) .front .text{
  font-size: 55px;
  color: #0c4d8f;
  font-weight: 900;
  line-height: 1em;
  margin: 0 0 10px;
  box-sizing: border-box;
  padding: 0 25px;
}

.grid .item:nth-of-type(2) .front .text span{
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2em;
  text-transform: uppercase;
  letter-spacing: .25em;
  float: right;
}



.grid .item:nth-of-type(3) .front .text{
  color: #0c4d8f;
  font-weight: 900;
  font-size: 60px;
  text-align: center;
  margin: 20px 0 0;
}
.grid .item:nth-of-type(3) .front .text span{
  font-weight: 400;
  font-size: 23px;
  text-transform: uppercase;
  letter-spacing: .25em;
}



.grid .item:nth-of-type(4) .front .text,
.grid .item:nth-of-type(5) .front .text{
  text-align: center;
  font-weight: 900;
  font-size: 141px;
   color: #0c4d8f;
  margin: 0;
  line-height: 1em;
}

.grid .item:nth-of-type(6) .front .text{
  font-size: 84px;
  font-weight: 900;
  text-align: center;
  color: #0c4d8f;
  line-height: .8em;
}

.grid .item:nth-of-type(6) .front .text span{
  display: block;
   font-weight: 400;
  font-size: 23px;
  text-transform: uppercase;
  letter-spacing: .25em;
}

.grid .item:nth-of-type(7) .front .text{
  font-size: 150px;
  font-weight: 900;
  text-align: center;
  color: #0c4d8f;
  line-height: .6em;
  margin: 20px 0 0;
}

.grid .item:nth-of-type(7) .front .text span{
  display: block;
   font-weight: 400;
  font-size: 23px;
  text-transform: uppercase;
  letter-spacing: .25em;
}


.item:nth-of-type(1) .front .graphic{
  max-width: 250px;
  margin: 0 auto 20px;
}


.item:nth-of-type(2) .front .graphic{
  max-width: 800px;
  margin: 20px auto 0;
}


.item:nth-of-type(3) .front .graphic{
  max-width: 250px;
  margin: 0 auto 20px;
}

.item:nth-of-type(4) .front .graphic{
  max-width: 250px;
  margin: 0 auto 20px;
}


.item:nth-of-type(5) .front .graphic{
  max-width: 250px;
  margin: 0 auto 20px;
}

.item:nth-of-type(6) .front .graphic{
  max-width: 800px;
  margin: 20px auto 0;
}

.item:nth-of-type(7) .front .graphic{
  max-width: 250px;
  margin: 0 auto 20px;
}

.item:nth-of-type(9) .front .graphic .mob{
  display: none;
}

/*Back Card Styles --------------------------------------*/

.back .main h3{
  font-size: 40px;
  font-weight: 900;
  margin: 0 0 30px;
}

.item:nth-of-type(3) .back .main h3 {
  font-size: 24px;
  margin: 0 0 0px;
}



ul.lined li{
  border-bottom: 1px solid #fff;
  box-sizing: border-box;
  padding: 20px 0;
  display: flex;
}

ul.lined li .label{
  font-weight: 400;
  font-size: 24px;
  margin: 0 30px 0 0;
  width: 70%;
}

ul.lined li .data{
  font-weight: 800;
  font-size: 24px;
  width: 30%;
  display: flex;
  justify-content: flex-end;
}

ul.lined li:last-of-type{
  border-bottom: none;
}
.grid .item:nth-of-type(3) ul.lined li{
  display: block;
  padding: 10px 0;
}

.grid .item:nth-of-type(3) ul.lined li .label{
  width: unset;
  font-size: 20px;
  margin: 0;
}

.grid .item:nth-of-type(3) ul.lined li .data{
  width: unset;
  display: block;
  margin: 8px 0 0;
  font-size: 32px;
  line-height: 1em;
}


.grid .item:nth-of-type(9) ul.lined li{
  padding: 10px 0;
}

.grid .item:nth-of-type(9) ul.lined li .label{
  font-size: 20px;
}

.grid .item:nth-of-type(9) ul.lined li .data{
  font-size: 20px;
}

.grid .item:nth-of-type(8) .back .main{
  padding: 1em;
}

.back .main p{
  font-size: 20px;
  margin: 0;
  line-height: 1.3em;
}

.back .main p.small{
  margin-top: 30px;
  font-size: 16px;
}

.back .chart .line{
  border-bottom: 2px solid #fff;
  display: flex;
  flex-wrap: wrap;  
}

.back .chart .line:last-of-type{
  border-bottom: none;
}

.back .chart .line div{
  width: 33.333%;
  box-sizing: border-box;
  padding: .5rem;
  border-right: 2px solid #fff;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
}

.back .chart .line:first-of-type div{
  font-size: 16px;
  font-weight: 700;

}


.back .chart .line div:last-of-type{
  border-right: none;
}


.back .wrapper{
  display: flex;
  flex-wrap: wrap;
}


.back .wrapper .wrap{
  width: 33.333%;
  box-sizing: border-box;
  padding: 2rem;
  border-right: 2px solid #fff;
}

.back .wrapper .wrap:last-of-type{
  border-right: none;
}

.back .wrapper .wrap .first,
.back .wrapper .wrap .label{
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 16px;
  line-height: 1.3em;
  margin: 0 0 0 0;
}

.back .wrapper .wrap .number{
  font-size: 35px;
  font-weight: 900;
  line-height: 1em;
  margin: 10px 0;
}

.back .wrapper .wrap .number sup{
  vertical-align: super;
  font-size: .5em;
}

/*Pop ups --------------------------*/

/*.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
  z-index: 999;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}

.outer{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 900px;
  transform: translate(-50%,-50%);
  box-sizing: border-box;
  padding: 20px;
  background: #ece4da;
  border-radius: 40px;
}



.outer .inner { box-sizing: border-box; position: relative; width: 100%; padding: 50px 30px 50px 60px; text-align: center; }

.outer .inner h2{
  font-size: 60px;
  color: #0f2554;
  margin: 0 0 20px;
  line-height: .9em;

}

.outer .inner .text{
  box-sizing: border-box;
  max-height: 400px;
  overflow: auto;
  text-align: left;
  font-size: 18px;
  line-height: 1.3em;
  padding-right: 30px;
}


.outer .inner .text .image{
  margin: 0 auto 30px;
  max-width: 350px;
}

.outer .inner .text .image img{
  width: 100%;
}


.outer .inner .text .bold{
  font-weight: 600;
}

.outer .inner .text .it{
  font-style: italic;
}

.outer .inner .text p{
  margin: 0 0 30px;
  font-size: 18px;
  line-height: 1.5em;
}

.outer .inner .text p.small{
 font-size: 14px;
 margin: -25px 0 20px;
}

.outer .inner .text ul{
  margin:0 0 30px;
  padding-left:30px;
  list-style: circle;
}

.outer .inner .text li{
  margin:0 0 10px;
}

.outer .inner .text h3{
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: .1em;
    margin: 0 0 30px;
}

.outer .inner .hide{
  display: inline-block;
  margin-top: 20px;
}
*/





