:root {
  --l-cyan: #EDF7F8;
  --d-green: #265A63;
  --b-grey: #F7F8FA;
  --d-grey:  #5c697b;
  --l-grey:  #cccccc;
  --black: #3E4647;
  --white: #FFF;
  --blue:  rgb(12,60,96);
  --red:  rgb(226,28,33);
  --purple:  #8796DE;

}

.bg-red {
  background:  var(--red);
}

.bg-grey {
   background: var(--d-grey);
}

.bg-light-grey {
  background: var(--l-grey);
}

.bg-light-grey.arrow-bottom {
  z-index:  1;
}

.bg-light-grey.arrow-bottom:after {
    content: '';
    border-color: #cccccc transparent transparent transparent;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 35px 80px 0 80px;
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    bottom: -35px;
}


.bg-blue {
  background:  var(--blue);
}

.bg-blue h1, .bg-blue h2, .bg-blue h3, .bg-blue p, .bg-blue li, .bg-grey h1, .bg-grey h2, .bg-grey h3, .bg-grey p, .bg-grey li  {
  color:  white;
}

.bg-blue .wp-block-button a:hover {
  background: var(--red);
  opacity:  0.8;
}

figcaption {
    font-size: 14px;
    text-align: right;
    padding: 5px 0px;
    color: var(--purple);
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/

html {
  font: 300 16px/1.5 'Nunito', Arial, sans-serif;
  color: var(--blue);
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  margin: 0 auto;
  background: var(--white);
  padding-top:  130px;
}

.wp-block-cover div[role=img] {
    padding: 0;
    background-position: top left;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
  z-index: -1
}

.alignfull .wp-block-group__inner-container,
.alignwide .wp-block-group__inner-container {
  max-width: 1800px;
  height: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.alignfull.narrow .wp-block-group__inner-container,
.alignwide .wp-block-group__inner-container {
  max-width: 1400px;
}

.alignfull.narrower .wp-block-group__inner-container,
.alignwide.narrower .wp-block-group__inner-container {
  max-width: 1000px;
}

.site-header .alignfull .wp-block-group__inner-container {
  padding: 0;
}

.red {
  color:  var(--red) !important;
}

h1,
h2,
h3,
h4 {
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 600;
  margin: 0 0 1rem 0;
  padding: 0;
  color: var(--blue);
}

h1 {
  font-size: 1.5em;
  margin: 0 0 1rem 0;
  line-height: 1.2;
  position: relative;
}

h1.bottom-separator:after, h2.bottom-separator:after {
    content: '';
    width: 60px;
    height: 3px;
    position: absolute;
    background: var(--red);
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    bottom: -15px;
}

h1.has-small-font-size {
  font-size: 1.5em;
}

h2 {
  font-size: 1.5em;
  margin: 0 0 1.5rem 0;
  line-height: 1.15;
  position: relative;
}

h2.has-small-font-size {
  font-size: 1em;
  margin: 0 0 0.8rem 0;
}

h2.has-large-font-size {
  font-size: 2em;
}


h3 {
  font-size: 1.3em;
  line-height: 1.25;
  margin: 0 0 1rem 0;
}

h4 {
  font-size: 1em;
  line-height: 1.5;
  margin: 0 0 0.4rem 0;
}

p {
  font-size: 0.9em;
  line-height: 1.6;
  margin: 0 0 1rem 0;
  padding: 0;
}

p.has-small-font-size {
   font-size: .85em;
}

p.has-medium-font-size {
 font-size: 1.2em;
}

p.has-large-font-size {
 font-size: 1.2em;
}



b,
strong {
  font-weight: 700;
}

hr {
  background-color: var(--d-grey);
  border: 0;
  height: 1px;
  margin: 5rem 0;
}

hr.small-padd {
  margin: 2rem 0;
}

hr.white {
  background:  white;
}

img {
  max-width: 100%;
  width: initial;
  height: auto;
  display: block;
  margin: 0 auto;
}

.padd-2 {
  padding: 2rem;
}

.padd-1 {
  padding: 1rem;
}

.img-margin img {
  margin: 2rem 0 3rem 0;
}

svg {
  display: block;
}

figure {
  margin: 0;
}

ul.list,
ol.list {
  list-style-type: square;
  font-size: 0.9em;
  margin: 0 0 2rem 2rem;
  padding: 0;
  line-height: 1.6;
}

.wp-block-group ul {
  list-style-type: square;
    font-size: 0.9em;
    margin: 0 0 2rem 2rem;
    padding: 0;
    line-height: 1.6;
}

ul.list ul {
  list-style-type: square;
  font-size: 0.9em;
  margin: 0 0 0 2rem;
  padding: 0;
  line-height: 1.6;
}

ol.list {
  list-style-type: decimal;
}

ul {
  list-style-type: none;
  font-size: 0.9em;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  transition: all .3s ease;
  color: var(--red);
}

a:hover,
a:focus,
a:active {
  cursor: pointer;
  text-decoration: none;
  color: var(--blue);
}

a:focus {
  outline: thin dotted;
}

a:hover, a:active {
  outline: 0;
}

.inline {
  display:  inline-block !important;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/

/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}


/*--------------------------------------------------------------
# Video (YouTube)
--------------------------------------------------------------*/
.wp-block-embed__wrapper {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}

.wp-block-embed__wrapper iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* cross-browser fix */
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 0;
  display: inline-block;
  margin: 0;
  padding: 1.4rem 1.6rem;
  background: var(--red);
  border-radius: 4px;
  font: 400 .9em/0 'Raleway', Arial, sans-serif;
  font-family: 'Raleway', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 0;
  white-space: nowrap;
  color: var(--white);
  cursor: pointer;
}
input[type="submit"]{
  width:  100%;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  background: var(--blue);
  transition: all .3s ease;
}

button:active, button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
  border-color: #000;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea,
select {
  color: #666;
  border: 1px solid #000;
  border-radius: 0;
  margin: 0 0 1.5em 0;
  padding: .75rem 1rem;
  width: 100%;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: #111;
}

/* contact 7 forms */

span.required {
  color: #D80027;
  font-size: 0.8em;
}

span.wpcf7-not-valid-tip {
  color: #D80027;
}

span.wpcf7-list-item {
  display: block;
}


/* cookie banner */

.cookie-banner {
    position: fixed;
    display:  none;
    width: 100%;
    bottom: 0px;
    padding: 30px;
    background: var(--blue);
    color: #FFFFFF;
    z-index: 99;
    left: 0;
    box-shadow: 0px 1px 23px 1px rgb(0 0 0 / 36%);
}


.cookie-banner a.wp-block-button__link {
    padding: 10px 15px;
    border-radius: 0;
    text-decoration:  none;
}

.cookie-banner a {
    display:  inline-block;
    color:  var(--white);
    font-weight:  600;
    text-decoration: underline;
}

.cookie-banner a.wp-block-button__link:hover {
    opacity: 0.8;
}

.cookie-banner p {
  color:  white;
  font-size:  0.7em;
}

.cookie-banner .wp-block-column, .cookie-banner .wp-block-column p {
  margin-bottom: 0;
  padding-bottom: 0;
}

.cookie-banner .wp-block-columns, .cookie-banner .wp-block-columns .wp-block-column {
  margin-left:  0;
  margin-bottom:  0;
}


.cookie-banner .close {
    color: white;
    font-size: 25px;
    text-decoration: none;
}



/*--------------------------------------------------------------
## Site logo
--------------------------------------------------------------*/

.site-header {
  background: var(--blue);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  box-shadow: 0 8px 20px -4px rgba(42, 194, 203, .15);
  transition: all .5s ease;
  opacity: 1;
}

.site-header.fade-in {
    opacity: 0;
    top: -100px;
}

.site-header .alignfull {
  padding: 0;
}

.site-branding {
  margin: .6rem 1.25rem;
  display: flex;
  /*! justify-content: center; */
}

.site-branding img {
  width: 10.25rem;
  transition: all .5s ease;
  background: rgba(255,255,255,0.3);
  padding: 7px;
  opacity:  1;
}

.site-branding.fade-in img {
  opacity:  0;
}

.site-branding a:hover img {
  opacity: .75;
}

.top-nav {
  display: none;
}

/* Social Media */

.menu-social-media-container ul {
  display: flex;
}

.menu-social-media-container ul li {
  margin: .65rem 1rem .65rem 0;
}

.menu-social-media-container ul li:last-of-type {
  margin-right: 0;
}

.menu-social-media-container img {
  width: .9rem;
}


/* Language selector */

.menu-languages-container {
	position: relative;
	cursor: pointer;
  text-align: left;
}

.menu-languages-container ul {
	position: absolute;
	right: 0;
  z-index: 3;
}

.menu-languages-container li.menu-item-has-children {
     background: url(/wp-content/uploads/icon-submenu.svg) no-repeat right center;
    background-size: 10px;
    font-size: .9em;
    line-height: 1.55;
}

.menu-languages-container ul li a {
	display: block;
	padding: .5rem 1rem;
	color: var(--white);
  min-width: 9.45rem;
}

.menu-languages-container a img {
	display: inline;
  vertical-align: middle;
  margin-right: .45rem;
  position: relative;
  bottom: 1px;
}

.menu-languages-container ul.sub-menu {
	display: none;
	border: 1px solid var(--d-grey);
}

.menu-languages-container:hover ul.sub-menu {
	display: block;
}

.menu-languages-container ul.sub-menu li a {
	display: block;
	padding: .5rem 1rem;
	box-shadow: 0px 4px 12px -3px rgb(0 0 0 / 20%);
	background-color: var(--white);
	border-bottom: 1px solid var(--d-grey);
	text-decoration: none;
	color: var(--black);

}

.menu-languages-container ul.sub-menu li:last-child a {
	border: 0;
}

.menu-languages-container ul.sub-menu a:hover {
	color: var(--blue);
	background: var(--b-grey);
}



/* Team area */


.team .wp-block-image img {
  border: 2px solid white;
    margin-bottom: 30px;
    border-radius: 5px;
}

.team p {
  font-size:  0.8em;
}

.team:after {
  content:  '';
  position: absolute;
  width:  50%;
  height:  100%;
  right:  0;
  top: 0;
  background: var(--red);
}

.team .wp-block-column {
  z-index: 1;
}

.home-button img {
    box-shadow: 3px 2px 22px 1px rgb(0 0 0 / 24%);
    border-radius: 200px;
    transition: all .2s ease;
}

.home-button img:hover {
   transform: scale(0.98);
   box-shadow: 3px 2px 22px 1px rgb(0 0 0 / 46%);
}


/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/

/* Hide/show nav*/

.btn-content {
  display: none;
  width: 100%;
  background: var(--blue);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 14px -4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
  top: 0;
  border-top: 1px solid rgba(225, 225, 225, .6);
}

.btn-content a {
  color: var(--white);
  text-decoration: none;
  line-height: 1.8;
  text-transform: uppercase;
  letter-spacing: .5px;
}

#main-content.fade-in {
  opacity: 0;
  transition: all 1s ease; 
}

#main-content {
  opacity:  1;
  transition: all 1s ease;
}

.main-navigation .btn-toggle {
  position: absolute;
  top: 0;
  right: 0;
  border: 0;
  border-radius: 0;
  background: var(--blue);
  color: var(--white);
  font-size: 1em;
  line-height: 0;
  outline: none;
  cursor: pointer;
  padding: 2rem 1rem;
  margin: 0;
  z-index: 2;
}

.main-navigation .btn-toggle i.bar {
  position: relative;
  display: block;
  width: 2rem;
  height: 3px;
  background: var(--white);
  transition: all .2s ease-out;
}

.main-navigation .btn-toggle i.bar::before,
.main-navigation .btn-toggle i.bar::after {
  content: '';
  width: 2rem;
  height: 3px;
  background: var(--white);
  position: absolute;
  left: 0;
  transition: all .2s ease-out;
}

.main-navigation .btn-toggle i.bar::before {
  top: -10px;
}

.main-navigation .btn-toggle i.bar::after {
  bottom: -10px;
}

.main-navigation .btn-toggle.btn-toggle-expand i.bar {
  background: rgba(0, 0, 0, 0);
}

.main-navigation .btn-toggle.btn-toggle-expand i.bar::before {
  top: 0;
  transform: rotateZ(-135deg);
}

.main-navigation .btn-toggle.btn-toggle-expand i.bar::after {
  bottom: 0;
  transform: rotateZ(135deg);
}

.main-navigation li a {
  display: block;
  padding: .75rem;
  border-bottom: 1px solid rgba(225,225,225,.5);
  line-height: 1.25;
}

.main-navigation li:last-child a {
  border: 0;
}

/*--------------------------------------------------------------
## col and Modules
--------------------------------------------------------------*/

/* quotations */

blockquote {
  display: block;
  margin: 0 0 .75rem 0;
  padding: 0;
  font-style: normal;
  quotes: "\201C""\201D";
}

blockquote p:before {
  content: open-quote;
  margin-right: .1rem
}

blockquote p:after {
  content: close-quote;
}

blockquote p {
  color: var(--white);
  font-size: 1.15rem;
}

.quotee {
  font-size: 1em;
  font-style: normal;
  font-weight: 700;
}

address {
  font-style: normal;
}

iframe,
object,
embed {
  max-width: 100%;
}


/* col */

.wp-block-columns {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  margin-left: -1.5rem;
  /*gutter*/
}

.wp-block-columns .wp-block-column {
  padding-left: 1.5rem;
  margin-bottom: 2.5rem;
}

.wp-block-column {
  flex: 1;
}

/* without gutter */

.wp-block-columns.no-gutter {
  margin-left: 0;
  /*no-gutter*/
}

.wp-block-columns.no-gutter .wp-block-column {
  padding-left: 0;
  margin-bottom: 0;
}

.wp-block-columns.no-gutter-bottom .wp-block-column {
  margin-bottom: 0;
}

/* center text */

.has-text-align-center {
  text-align: center;
}

/* text right */

.has-text-align-right {
  text-align: right;
}

/* text left */

.text-left {
  text-align: left;
}

/* justify per row */

.align-right {
  display: flex;
  justify-content: flex-end;
}

.align-center {
  display: flex;
  justify-content: center;
}

/* vertical alignment */

.is-vertically-aligned-top {
  display: flex;
  align-items: flex-start;
}

.is-vertically-aligned-center {
  display: flex;
  align-items: center;
}

.is-vertically-aligned-bottom {
  display: flex;
  align-items: flex-end;
}

.is-vertically-aligned-baseline {
  display: flex;
  align-items: baseline;
}

/* horizontal alignment */

.h-align-height .module,
.h-align-height .module-box {
  align-items: stretch;
  height: 100%;
}


/* base classes for all media - mobile first */

.one-item>.wp-block-column,
.one-of-one>.wp-block-column:first-of-type {
flex: 0 0 100%;
}

.two-items>.wp-block-column,
.one-of-two>.wp-block-column:first-of-type {
  flex: 0 0 50%;
}

.three-items>.wp-block-column,
.one-of-three>.wp-block-column:first-of-type {
  flex: 0 0 33.3333%;
  /* IE11 < */
  flex: 0 0 calc(100% / 3);
}

.four-items>.wp-block-column,
.one-of-four>.wp-block-column:first-of-type {
  flex: 0 0 100%;
}

.five-items>.wp-block-column,
.one-of-five>.wp-block-column:first-of-type {
  flex: 0 0 20%;
}

.six-items>.wp-block-column,
.one-of-six>.wp-block-column:first-of-type {
  flex: 0 0 16.66666666666667%;
  /* IE11 < */
  flex: 0 0 calc(100% / 6);
}

.two-of-three>.wp-block-column:first-of-type {
  flex: 0 0 66.6666%;
  /* IE11 < */
  flex: 0 0 calc(100% / 3 * 2);
}

.three-of-four>.wp-block-column:first-of-type {
  flex: 0 0 75%;
}

.three-of-five>.wp-block-column:first-of-type {
  flex: 0 0 60%;
}

.five-of-six>.wp-block-column:first-of-type {
  flex: 0 0 83.3333%;
  /* IE11 < */
  flex: 0 0 calc(100% / 6 * 5);
}

/* Switch 2 column order */
.switcharoo:nth-of-type(1) {
  order: 2;
}
.switcharoo:nth-of-type(2) {
  order: 1;
}

/* slider */


.hero .message {
    display: flex;
    /*justify-content: center;*/
    align-items: center;
    width: 100%;
    height: 100%;
    background: var(--l-cyan);
    position: relative;
    padding: 0 4rem; 
    z-index: 1;
    transition: all 0.5s ease;
  }

  .hero .message p {
    font-size: 1.4em;
    line-height: 1.6;
    margin: 0 0 2rem 0;
    color: var(--blue);
  }

.hero.main-img .message h1 {
  margin: 0;
}

 .hero p.has-medium-font-size {
  color: var(--red);
    font: 600 2.25em/1.3 'Raleway', Arial, sans-serif;
}

 .hero img {
   width: 100%;
   object-fit: cover;
  }



  .text-block-right,
 .text-block-left {
    padding: 2rem 0 0 0;
  }


/* edge to edge */
.alignfull,
.alignwide {
  display: block;
  padding: 2rem 0;
  position: relative;
}

.alignfull.small-padd, .alignwide.small-padd  {
  padding: 2rem 0;
}

.no-padd-above {
  padding-top:  0 !important;
}

.no-padd-bottom {
  padding-bottom:  0 !important;
}

.alignfull.grey {
  background: var(--b-grey);
}

.wp-block-cover {
 padding: 3rem 0;
 background-repeat: no-repeat;
 background-position: center;
 background-size: cover;
}

.wp-block-cover.cyan-overlay {
  background-color: var(--blue);
}

.wp-block-cover.cyan-overlay::after {
 content: "";
 position: absolute;
 z-index: 1;
 top: 0;
 width: 100%;
 height: 100%;
 background-image: linear-gradient(180deg, rgba(14,110,128,0) 0%, rgba(14,110,128,.5) 90%);
}

.wp-block-cover .module-box {
 display: block;
  width: calc(100vw - 4rem);
 padding: 2rem;
 background: var(--white);
  background: rgba(255,255,255, .6);
 border-radius: 3px;
 position: relative;
 z-index: 2;
}

.module-box {
 padding: 2rem 0rem;
 border-radius: 3px;
  background: var(--l-grey);
 position: relative;
 z-index: 2;
 height:  100%;
}

.bg-grey .module-box {
  background: rgba(255,255,255, .6);
}

.bg-light-grey p, .bg-light-grey li {
  color:  var(--black);
}

.module-box h1, .module-box  h2, .module-box  h3, .module-box  h4{
color: var(--red);
  }

.module-box h1, .module-box h2, .moduke-box h3 { 
  color: var(--red);
}

.module-box p, .module-box li {
  color:  var(--black);
}


.wp-block-cover .module-box.home {
  background: rgba(255,255,255,0.5);
}

.module-box.home h1, .module-box.home h2, .module-box.home h3, .module-box.home h4 {
  color:  var(--blue);
}


.wp-block-cover.standard {
  padding:  2rem 0;
}




.wp-block-cover.standard .module-box {
    display: block;
    width: 100%;
        height: initial;
    background: none;
    padding: 0;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    top: 50%;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    position: absolute;
    z-index: 9;
}

.wp-block-cover.standard .module-box h1{
  position: relative;
  margin: 0 0 2rem 0;
}

.wp-block-cover.standard:after {
 content:  '';
  width:  100%;
  height:  100%;
  position: absolute;
  background: rgba(12,60,96,0.1);
  left:  0;
  top: 0;
}

.wp-block-cover.standard .module-box h1:after {
  content:  '';
  width:  100px;
  height:  5px;
  position: absolute;
  background: white;
  left:  0;
  right:  0;
  margin-left: auto;
  margin-right: auto;
  bottom:  -20px;

}

.wp-block-cover.standard .module-box h1, .wp-block-cover.standard .module-box h2, .wp-block-cover.standard .module-box h3, .wp-block-cover.standard .module-box p {
  color:  white;
}

.hexagon {
  text-align: center;
}

.hexagon a {
  display: block;
  padding: 1rem .75rem;
}

.hexagon a:hover {
  background: rgba(0,0,0,.015);
  border-radius: 3px;
}

.hexagon h3 {
  margin: .5rem 0 .25rem 0;
}

.hexagon a:hover h3 {
  color: var(--red);
}

.hexagon a img {
  margin: auto;
  transform: scale(0.94);
  transition: all .5s ease;
}

.hexagon a:hover img {
  transform: scale(1);
}

.hexagon p {
  margin: 0 0 .5rem 0;
  line-height: 1.4;
  color: var(--black);
}


.heading-only {
  margin: 0 0 2rem 0;
}

.blog .latest-news h2 {
  font-size: 1.15em
}

.blog .latest-news p {
  font-size: .85em;
}


/* Support & Resources */
.border-top {
  border-top: 1px solid var(--d-grey);
}


.latest-news .outer-link {
  display: block;
    border-radius: 4px;
  box-shadow: 0px 0px 14px 4px rgb(42 194 203 / 15%);
  color: var(--black);
  position: relative;
}

.latest-news .outer-img {
   position: relative;
   overflow: hidden;
}

.latest-news .outer-link img {
  border-radius: 4px 4px 0 0;
 transition: transform .75s;
  width: 100%;
}

.latest-news .outer-link:hover img {
 transition:all .5s ease-out;
 transform:scale(1.15)
}

.latest-news .inner-content {
  font-size: 1.15em;
  padding: 1.5rem;
  height: 100%;
}

.latest-news .category {
  display: block;
  background: var(--red);
  padding: .5rem 1.75rem;
  border-radius: 0 4px;
  position: absolute;
  top: 0;
  right: 0;
  font: 400 .75em/1.5 'Raleway', Arial, sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
}


.latest-news .read {
  display: block;
  margin: 1.75rem 0 0 0;
  font: 400 .9em/1.5 'Raleway', Arial, sans-serif;
  color: var(--red);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.latest-news .outer-link:hover .read {
  color: var(--blue);
  transition: all .5s ease;
}

/* buttons */


.wp-block-button a {
    display: inline-block;
    padding: 1rem 1rem;
    background: var(--red);
    border-radius: 4px;
    color: var(--white);
    white-space: nowrap;
    font: 400 0.5em/1.25 'Raleway', Arial, sans-serif;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all .3s ease;
    width:  100%;
}

.wp-block-cover .wp-block-button a{
  box-shadow: 0px 3px 7px 1px #0000004f;
}


.wp-block-button a:hover {
  background: var(--blue);
  color: var(--white);
}

.wp-block-button.d-cyan a {
  background: var(--blue);
}

.wp-block-button.d-cyan a:hover {
  background: var(--red);
}

.wp-block-buttons.is-content-justification-center {
  text-align: center;
  justify-content: center;
}

.wp-block-buttons .wp-block-button {
  display: inline-block;
  margin-right: 2rem;
}

.wp-block-buttons .wp-block-button:last-of-type {
  margin: 0;
}


/*table styling*/

.wp-block-table {
  max-width: calc(100vw - 2rem);
  padding: 1rem 0;
}

.wp-block-table table {
  border-collapse: collapse;
  overflow-x: auto;
  display: block;
  /*width: fit-content;*/
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  width: 100%;

}

.wp-block-table table td,
.wp-block-table table th {
  border: 1px solid var(--d-grey);
  padding: 1rem 1.2rem;
}

.wp-block-table table thead {
  color: var(--red);
  background: transparent;
}

.wp-block-table table th {
  text-align: left;
  border-top: none;
  font: 600 1.5em/1.5 'Raleway', Arial, sans-serif;
}

.wp-block-table table th p {
  margin-bottom: 0;
}

.wp-block-table table td:first-child {
  font: 600 1.2em/1.5 'Raleway', Arial, sans-serif;
  color: var(--blue);
}

.wp-block-table table td {
  /*white-space: nowrap;*/
  border-bottom: none;
  font-size: 0.9em;
  font-weight: 100;
  line-height: 1.3;
}

.wp-block-table table td:first-of-type,
.wp-block-table table th:first-of-type {
  border-left: none;
}

.wp-block-table table td:last-of-type,
.wp-block-table table th:last-of-type {
  border-right: none;
}


.is-style-stripes table {
  font-size: .9em
}

.is-style-stripes table th {
  font-size: 1.2em
}

.is-style-stripes table th:first-child {
  width: 70%;
}

.is-style-stripes table td:first-child {
  font-size: 1em;
}


.is-style-stripes table td,
.is-style-stripes table th {
  padding: .5rem;
}

.is-style-stripes table tr:nth-child(even) {
  background: var(--b-grey);
}


    .support ul li {
    font: 600 1.25em/4 'Raleway', Arial, sans-serif;
      color: var(--red);
  }

  .support ul li::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    position: relative;
    bottom: .15rem;
    width: 50px;
    height: 58px;
    background: url(/wp-content/uploads/icon-resource.svg) no-repeat center;
    margin-right: 1rem;
  }




/* footer */

.site-footer {
  background: var(--blue);
  color: var(--white);
  border-top:  50px solid var(--red);
}

.site-footer a,
.site-footer li a {
  color: var(--white);
}

.site-info {
  padding: 4rem 0 .5rem 0;
}

.site-info .logo {
  position: relative;
  bottom: 1.25rem
}

.site-info .logo img {
   margin: auto;
}

.site-info h2 {
  margin: 0 0 1.75rem 0;
  font-size: .95em;
  font-weight: 600;
  line-height: 1.3;
  color: var(--white);
  position: relative;
}

.site-info h2::after {
  content: "";
  background: var(--white);
  position: absolute;
  top: 1.75rem;
  left: 0;
  width: 2rem;
  height: 1px;
}

.site-info p,
.site-info li {
  font-size: .725em;
  line-height: 2.25;
}

.site-info p {
  margin: 0 0 1rem 0;
  line-height: 1.5;
}

.site-info .menu-social-media-container ul {
 /* justify-content: center;*/
}

.site-info .menu-social-media-container ul li {
  margin: 1.75rem 1.5rem .75rem 0;
}
.site-info .menu-social-media-container img {
  width: 1.15rem;
}

.copyright {
  display: block;
  padding: .25rem 1rem .45rem 0rem;
  width: 100%;
  background: var(--blue);
  color: var(--white);
}

.copyright ul,
.copyright p {
  margin: 0;
  padding: 0;
}

.copyright ul li,
.copyright p {
  display: inline-block;
  font-size: .6em;
  line-height: 1.4;
  padding: 0px 10px;
  
}

.copyright a,
.copyright li a {
  color: var(--white);
}

/* Main content */

.module {
  margin: 0 0 3.5rem 0;
}

.module a h2 {
  display: block;
  font-size: 1.85em;
  line-height: 1.25;
  color: var(--red);
}


/* desktop and tablet css in here... */

/* tablet (medium) screens */

@media (min-width: 600px) {

  .four-items>.wp-block-column,
.one-of-four>.wp-block-column:first-of-type {
  flex: 0 0 25%;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  width:  auto;
}

  html {
    font-size: 18px;
  }

  h1 {
    font-size: 2.5em; 
  }

  h1.has-small-font-size {
     font-size: 1.2em;
  }

  p.has-large-font-size {
   font-size: 1.4em;
  }


.alignfull,
.alignwide {
  padding: 3.5rem 0;
}

figure.alignright img {
      margin-right: 0;
}

figure.alignleft img {
      margin-left: 0;
}

  .wp-block-button a {
  padding: 1.25rem 2rem;
  font: 400 0.8em/1.25 'Raleway', Arial, sans-serif;
  width:  auto;
}

.wp-block-cover {
 padding: 2rem 0;
}


  .alignfull .wp-block-group__inner-container,
  .alignwide .wp-block-group__inner-container {
    padding: 0 2rem;
  }

  .t-one-item>.wp-block-column {
    flex: 0 0 100%;
  }

  .t-two-items>.wp-block-column,
  .t-one-of-two>.wp-block-column:first-of-type {
    flex: 0 0 50%;
  }

  .t-three-items>.wp-block-column,
  .t-one-of-three>.wp-block-column:first-of-type {
    flex: 0 0 33.3333%;
    /* IE11 < */
    flex: 0 0 calc(100% / 3);
  }

  .t-four-items>.wp-block-column,
  .t-one-of-four>.wp-block-column:first-of-type {
    flex: 0 0 25%;
  }

  .t-five-items>.wp-block-column,
  .t-one-of-five>.wp-block-column:first-of-type {
    flex: 0 0 20%;
  }

  .t-six-items>.wp-block-column,
  .t-one-of-six>.wp-block-column:first-of-type {
    flex: 0 0 16.66666666666667%;
    /* IE11 < */
    flex: 0 0 calc(100% / 6);
  }

  .t-two-of-three>.wp-block-column:first-of-type {
    flex: 0 0 66.6666%;
    /* IE11 < */
    flex: 0 0 calc(100% / 3 * 2);
  }

  .t-three-of-four>.wp-block-column:first-of-type {
    flex: 0 0 75%;
  }

  .t-three-of-five>.wp-block-column:first-of-type {
    flex: 0 0 60%;
  }

  .t-five-of-six>.wp-block-column:first-of-type {
    flex: 0 0 83.3333%;
    /* IE11 < */
    flex: 0 0 calc(100% / 6 * 5);
  }

  .hero .switcharoo:nth-of-type(1) {
    order: 1;
  }
  .hero .switcharoo:nth-of-type(2) {
    order: 2;
  }

  .t-align-right {
    display: flex;
    justify-content: flex-end;
  }
  .t-align-center {
    display: flex;
    justify-content: center;
  }

  .t-has-text-align-center {
    text-align: center;
  }
  .t-has-text-align-right {
    text-align: right;
  }
  .t-has-text-align-left {
    text-align: left;
  }

  .main-navigation  li a {
    border-bottom: 0;
    line-height: 1.5;
  }

  .site-branding {
    margin: 1rem 2rem;
  }

  .site-branding img {
    width: 14.25rem;
  }

  .main-navigation .btn-toggle {
    padding: 3rem 2rem;
  }

  .main-navigation .btn-toggle i.bar,
  .main-navigation .btn-toggle i.bar::before,
  .main-navigation .btn-toggle i.bar::after {
    width: 2.25rem;
  }
  .main-navigation .btn-toggle i.bar::before {
    top: -12px;
  }
  .main-navigation .btn-toggle i.bar::after {
    bottom: -12px;
  }

  .site-info .logo img {
    margin: 0;
  }

  .site-info .menu-social-media-container ul {
    /*justify-content: flex-start; */
  }

 .hero img {
   height: 100vh;
  }

  .hero .wp-block-button a {
    padding: 1.25rem .5rem;
  }



  .slider .owl-dots,
  .slider .owl-nav {
   text-align:center;
   -webkit-tap-highlight-color:transparent
  }
  .slider .owl-dots {
   position:absolute;
   bottom:1em;
   left:50%;
   transform:translate(-50%,0)
  }
  .slider .owl-dots .owl-dot {
   display:inline-block;
   zoom:1
  }
  .slider .owl-nav {
   top:0
  }
  .slider .owl-dots .owl-dot span {
   display:block;
   width: 16px;
   height: 19px;
   margin: 0 .2rem;
   background:url(/wp-content/themes/ibtonline/img/dot.svg) no-repeat;
   -webkit-backface-visibility:visible;
   background-size: 16px 19px;
   transition:opacity .2s ease;
   border-radius:0
  }
  .slider .owl-dots .owl-dot.active span,
  .slider .owl-dots .owl-dot:hover span {
   background:url(/wp-content/themes/ibtonline/img/dot-active.svg) no-repeat;
   background-size: 16px 19px;
  }
  .slider .owl-nav [class*=owl-] {
   display:inline-block;
   cursor:pointer;
   width: 42px;
   height: 82px;
   background-size:11px 20px;
    background-size: 42px 82px;
  }
  .slider .owl-nav .owl-prev,
  .slider .owl-nav .owl-prev:hover {
   background:url(/wp-content/themes/ibtonline/img/chevron-left.svg) no-repeat;
   background-size:11px 20px;
    background-size: 42px 82px;
  }
  .slider .owl-nav .owl-next,
  .slider .owl-nav .owl-next:hover {
   background:url(/wp-content/themes/ibtonline/img/chevron-right.svg) no-repeat;
   background-size:11px 20px;
     background-size: 42px 82px;
  }
  .slider .owl-nav .owl-next {
   position:absolute;
   top:50%;
   left:98%;
   transform:translate(-98%,-50%)
  }
  .slider .owl-nav .owl-prev {
   position:absolute;
   top:50%;
   left:2%;
   transform:translate(-2%,-50%)
  }
  .slider .owl-nav [class*=owl-]:hover {
   opacity:.8
  }


  .alignfull,
.alignwide {
  padding: 3rem 0;
}

.alignfull.grey {
  background: var(--b-grey);
}


.wp-block-cover {
 padding: 5rem 0;
}

.wp-block-cover .module-box {
 padding: 3rem;
}

  .wp-block-cover {
 padding: 7rem 0;
    background-position: center;
 background-size: cover;
}

.wp-block-cover .wp-block-columns .wp-block-column {
  margin-bottom:  0;
}

.wp-block-cover .module-box {
 display: block;
  width: 100%;
 background: var(--white);
}


    .list-three-cols {
  -moz-columns: 2;
  columns: 2;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
}

.list-three-cols li {
  page-break-inside: avoid;
  -moz-column-break-inside: avoid;
  break-inside: avoid;
}

  .site-info {
  padding: 2em 0 .5rem 0;
}

  .copyright {
  padding: .25rem 1rem .45rem 0rem;
  }


}



/* desktop */

@media (min-width: 1024px) {

  .cookie-banner {
    padding: 30px;
  }

  .cookie-banner .close {
    color: white;
    font-size: 20px;
    text-decoration:  none;
  }

  .cookie-banner a.wp-block-button__link {
    font-size: 9px;
      background: var(--red);
      padding: 10px 15px;
      border-radius: 50px;
      text-decoration: none;
  }

  .cookie-banner .wp-block-buttons {
    display: inline-block;
  }
}


@media (min-width: 1366px) {

  html {
    font-size: 20px;
  }

  h1 {
    font-size: 2.5em;
  }

  h2 {
    font-size: 1.5em;
  }

  .alignfull .wp-block-group__inner-container,
  .alignwide .wp-block-group__inner-container,
  .site-header .alignfull .wp-block-group__inner-container {
    padding: 0 2.5rem;
  }

  .wp-block-columns {
    margin-left: -2.5rem;
    /*gutter*/
  }

  .wp-block-columns .wp-block-column {
    padding-left: 2.5rem;
    margin-bottom: 2.5rem;
  }

  /* slim gutter */
  .wp-block-columns.slim-gutter {
    margin-left: -1.5rem;
  }

  .wp-block-columns.slim-gutter .wp-block-column {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .d-one-item>.wp-block-column {
    flex: 0 0 100%;
  }

  .d-two-items>.wp-block-column,
  .d-one-of-two>.wp-block-column:first-of-type {
    flex: 0 0 50%;
  }

  .d-three-items>.wp-block-column,
  .d-one-of-three>.wp-block-column:first-of-type {
    flex: 0 0 33.3333%;
    /* IE11 < */
    flex: 0 0 calc(100% / 3);
  }

  .d-four-items>.wp-block-column,
  .d-one-of-four>.wp-block-column:first-of-type {
    flex: 0 0 25%;
  }

  .d-five-items>.wp-block-column,
  .d-one-of-five>.wp-block-column:first-of-type {
    flex: 0 0 20%;
  }

  .d-six-items>.wp-block-column,
  .d-one-of-six>.wp-block-column:first-of-type {
    flex: 0 0 16.66666666666667%;
    /* IE11 < */
    flex: 0 0 calc(100% / 6);
  }

  .d-two-of-three>.wp-block-column:first-of-type {
    flex: 0 0 66.6666%;
    /* IE11 < */
    flex: 0 0 calc(100% / 3 * 2);
  }

  .d-three-of-four>.wp-block-column:first-of-type {
    flex: 0 0 75%;
  }

  .d-three-of-five>.wp-block-column:first-of-type {
    flex: 0 0 60%;
  }

  .d-five-of-six>.wp-block-column:first-of-type {
    flex: 0 0 83.3333%;
    /* IE11 < */
    flex: 0 0 calc(100% / 6 * 5);
  }

  /* Switch 2 column order */
  .switcharoo:nth-of-type(1) {
    order: 1;
  }
  .switcharoo:nth-of-type(2) {
    order: 2;
  }

  .d-align-right {
    display: flex;
    justify-content: flex-end;
  }
  .d-align-center {
    display: flex;
    justify-content: center;
  }

  .d-has-text-align-center {
    text-align: center;
  }
  .d-has-text-align-right {
    text-align: right;
  }
  .d-has-text-align-left {
    text-align: left;
  }

  .top-nav {
    display: block;
    width: 100%;
    margin: 0;
    background: var(--blue);
    font-size: .85em;
  }

  .site-header .one-item>.wp-block-column {
    flex: 1;
  }

  .site-branding {
    margin: 1.5rem 0;
    display: inline-block;
    vertical-align: middle;
  }

  .site-branding img {
    width:200px;
  }

  .btn-toggle,
  .btn-toggle2 {
    display: none;
  }

  .btn-content {
    display: inline !important;
  }

  .main-navigation {
    font-family: 'Raleway', Arial, sans-serif;
    font-weight: 400;
    position: relative;
    z-index: 2;
  }

  .main-navigation .btn-content {
    background: transparent;
    padding: 0;
  }

  #primary-menu {
    display: flex;
    justify-content: flex-end;
    align-items: baseline;
    align-content: center;
    margin: 0;
    width: 100%;
  }

  #primary-menu li {
    font-size: .9rem;
    margin: 0;
    flex: 1 1 100%;
    flex: 0 1 auto;
    position: relative;
  }

  #primary-menu > li {
    border-right:  1px solid white;
  }

  #primary-menu li a {
    display: block;
    margin: 0;
    padding: 0rem 0.9rem 0em 0.9rem;
    white-space: nowrap;
    transition: all .5s ease;
    color: var(--white);
    font-size: .78em;
    letter-spacing: 1px;
    font-weight: 600;
  }

  #primary-menu li:last-of-type {
    border-right: 1px solid rgba(0,0,0,0);
  }

  #primary-menu li:first-child a {
    margin-left: 0;
  }
  #primary-menu li:last-child a {
    margin-right: 0;
  }

  #primary-menu li a:hover {
    color: var(--purple);
  }

  #primary-menu .current-menu-parent a,
  #primary-menu .current_page_item a {
    color: var(--l-grey);
  }

  /* sub menu drop-down */

  #primary-menu .menu-item-has-children {
    background: url(/wp-content/uploads/chevron-down.svg) no-repeat calc(100% - 1rem) 1.5rem;
    background-size: 10px;
  }

  #primary-menu .menu-item-has-children a {
    padding-right: 2.25em;
  }

  #primary-menu .sub-menu {
  position: absolute;
  display: none;
  margin: 0 0 0 1rem;
 }
 #primary-menu li:hover .sub-menu {
  display: block;
 }
 #primary-menu li .sub-menu li a,
 #primary-menu li .sub-menu li:last-of-type a {
  margin: 0;
  padding: .5rem .3rem;
  background: var(--red);
  display: block;
  color: var(--white);
  border-top: 1px solid var(--white);
  border-radius: 0;
  text-align: left;
  white-space: normal;
  text-transform: capitalize;
   line-height: 1.4;
 }
 #primary-menu li .sub-menu li.current-menu-item a,
 #primary-menu li .sub-menu li a:hover,
 #primary-menu li .sub-menu li:last-of-type a:hover {
  background: var(--white);
  color: var(--red);
 }

  .site-info .wp-block-column {
   /* display: flex;
    justify-content: flex-end;*/
  }


  .hero figure {
    max-height: 750px;
    overflow: hidden;
  }

 .hero img {
   height: auto;
  }

  .hero .wp-block-button a,
  .wp-block-button a {
      display: inline-block;
    padding: 1.25rem 2rem;
  }

  .text-block-right {
    padding: 0 0 0 5rem;
  }

  .text-block-left {
    padding: 0 5rem 0 0;
  }


    .wp-block-cover.cyan-overlay {
 background-size: 60%;
}

  .wp-block-cover.cyan-overlay::after {
 background-image: linear-gradient(90deg, rgba(14,110,128,0) 0%, rgba(14,110,128,1) 60%);
}


    .list-three-cols {
  -moz-columns: 3;
  columns: 3;
  -moz-column-gap: 4rem;
  column-gap: 4rem;
}


  .latest-news .outer-link {
  display: grid;
  grid-auto-rows: 1fr;
  height: 100%; /* equal height columns */
  }

  .latest-news .read {
  position: absolute;
  bottom: 1.75rem;
}


}


@media (min-width: 1920px) {


 }
}
