/*  Eaton Gate - RWD Screen & Print 06-07-2025  */

* { margin: 0; padding: 0; outline: none; }
html { overflow-y: scroll; -webkit-text-size-adjust: 100%; }
img { display: block; width: 100%; height: auto; border: 0; }
/* Remove browser default styling on form elements... */
input[type=text], textarea, input[type=tel], input[type=email], input[type=number], input[type=password], input[type=search],
input[type=submit], input[type=button], button { -webkit-appearance: none; -moz-appearance: none; }


.print-logo, .print-logo-mga { display: none; }

/*
For info only: Z-INDEX VALUES
	a.skip-to-main:focus: 3000
	#errorPanel: 2000
	#dialogue: 1100
	#overlay: 1000
	.hamburger: 100
	#submenu-container: 50
	#menu (max-width: 768px): 25
	#top-button-container: 20
	.top-banner: 1
	a.skip-to-main: -100
*/

:root { /* VARIABLES */
	--color0: #3c3c3b; /* Dark Grey */
	--color1: #ffffff; /* White */
	--color2: #3bbeba; /* Aqua */
	--color3: #5c5c5c; /* Mid Grey */
	--color4: #000000; /* Black */
	--color5: #1d1d1b; /* Footer - nearly black */
	--color6: #ccc; /* unused */
	--color7: #ccc; /* unused */
	--color8: #ccc; /* unused */
	
	--radiusTiny: 4px;
	--radiusSmall: 6px;
	--radiusMedium: 8px;
	--radiusLarge: 12px;
	
	--shadow1: 0px 3px 15px rgba(0,0,0,0.5), 0px 1px 8px rgba(0,0,0,0.5); /* Submenu drop-down, Mini-menu, Top-of-page button */
	--shadow2: 0px 4px 4px rgba(0,0,0,0.6), 0px 2px 4px rgba(0,0,0,0.3); /* Hero & Titlebar Titles */
	--shadow3: 0 4px 8px rgba(0,0,0,0.15), 0 1px 4px rgba(0,0,0,0.08); /* unused */
	--shadow4: 0px 1px 6px rgba(0,0,0,0.9), 0px 2px 4px rgba(0,0,0,0.5); /* unused */
	--shadow5: inset 0 0 6px rgba(0,0,0,0.1), inset 0 0 1px rgba(0,0,0,0.3); /* Checkmark and Radio buttons -off- state */
	--shadow6: 2px 0 2px var(--color5), -2px 0 2px var(--color5), 0 2px 2px var(--color5), 0 -2px 2px var(--color5); /* Radio buttons -on- state :focus */
}
.color0 { color: var(--color0); } .bg0 { background-color: var(--color0); } /* bg0 doesn't work on hero buttons. Can't figure out why. */
.color1 { color: var(--color1); } .bg1 { background-color: var(--color1); }
.color2 { color: var(--color2); } .bg2 { background-color: var(--color2); }
.color3 { color: var(--color3); } .bg3 { background-color: var(--color3); }
.color4 { color: var(--color4); } .bg4 { background-color: var(--color4); }
.color5 { color: var(--color5); } .bg5 { background-color: var(--color5); }
.color6 { color: var(--color6); } .bg6 { background-color: var(--color6); }
.color7 { color: var(--color7); } .bg7 { background-color: var(--color7); }
.color8 { color: var(--color8); } .bg8 { background-color: var(--color8); }

.text-shadow1 { text-shadow: var(--shadow1); }
.text-shadow2 { text-shadow: var(--shadow2); }
.text-shadow3 { text-shadow: var(--shadow3); }
.text-shadow4 { text-shadow: var(--shadow4); }


body {
	background-color: var(--color0); margin: 0 auto;
	font: normal 1em/1.5 'Barlow', sans-serif; color: var(--color1);
}

.visible-overflow { overflow: visible; }
.preload { position: fixed; left: -100px; top: -100px; } .preload img { display: inline-block; width: 1px; height: 1px; }



/* TYPOGRAPHY */
p { padding: 0 0 20px 0; }
h1 { font: normal 2.2em/1.25 'Libre Baskerville', serif; padding: 48px 0 53px 0; color: var(--color2); }
h1.padded, h1.mgas, h1.news, h1.padded-btm { padding: 64px 0 76px 0; }
h2 { font: normal 1.7em/1.4 'Libre Baskerville', serif; padding: 0 0 8px 0; color: var(--color1); }
.panel-white h2:first-child { padding-top: 0; }
h3 { font-size: 1.2em; font-weight: 400; padding: 0 0 20px 0; letter-spacing: 0.25px; color: var(--color1); }
h4 { font-size: 1em; font-weight: 500; text-transform: uppercase; padding: 20px 0 14px 0; color: var(--color1); }
h5 { font-size: 1.2em; font-weight: 400; padding: 28px 0 20px 0; color: #3bbeba; }
.centered { text-align: center; }
.rev-text { color: var(--color0); }
h2.rev-text { font-weight: bold; }
.emf-aqua { font-weight: bold; color: var(--color2); }

	

ul, ol { padding: 0 0 10px 20px; }
li { padding: 0 0 10px 3px; }
/* UL & OLs inside parent LIs... */
ul li ul, ol li ul { padding-top: 2px; }
li ul, li ol { padding-bottom: 0; }
li ul li, li ol li { padding-bottom: 2px; }
li ul li:last-child, li ol li:last-child { padding-bottom: 0; }
/* Tighter bottom-padding for long lists... */
ul.tight li, ol.tight li,
ul.tight li ul.tight li:last-child, ul.tight li ol.tight li:last-child,
ol.tight li ol.tight li:last-child, ol.tight li ul.tight li:last-child
{ padding-bottom: 3px; }
.small { font-size: 0.85em; }



/* HYPERLINKS & BUTTONS */
a { color: var(--color2); text-decoration: underline; }
a:hover, a:focus  { text-decoration: none; }
a.no-underline { text-decoration: none; }
a.no-underline:hover, a.no-underline:focus  { text-decoration: underline; }

.full-panel-link { text-decoration: none; }
.full-panel-link:hover h2 { color: var(--color2); }

button, input[type=button], input[type=submit] { font-family: inherit; cursor: pointer; }

/* NORMAL - layout for all */
.btn, .btn-small, .btn-big, .btn2, .btn2-small, .btn2-big {
	display: inline-block; box-sizing: border-box; margin: 6px 20px 6px 0; padding: 12px 23px;
	font-size: 1.1em; line-height: 1; text-align: center; text-decoration: none;
	border: 0; border-radius: var(--radiusSmall);
}

.btn-small { padding: 7px 14px; font-size: 1em; }
.btn2-small { padding: 6px 13px; font-size: 1em; }
.btn-big { padding: 20px 32px; font-size: 1.15em; }
.btn2-big { padding: 19px 31px; font-size: 1.15em; }

/* NORMAL - Primary button color */
.btn, .btn-small, .btn-big, .btn-overlay-x, .btn-overlay,
.btn.inactive:hover, .btn-small.inactive:hover, .btn-big.inactive:hover,
.btn.inactive:focus, .btn-small.inactive:focus, .btn-big.inactive:focus
{ background: var(--color1); color: var(--color2); }

/* NORMAL - Secondary button color */
.btn2, .btn2-small, .btn2-big,
.btn2.inactive:hover, .btn2-small.inactive:hover, .btn2-big.inactive:hover,
.btn2.inactive:focus, .btn2-small.inactive:focus, .btn2-big.inactive:focus
{ background: var(--color2); color: var(--color1); border: solid 1px; border-color: var(--color2); }

/* HOVER & FOCUS - colour for all */
.btn:hover, .btn:focus, .btn-small:hover, .btn-small:focus, .btn-big:hover, .btn-big:focus,
.btn2:hover, .btn2:focus, .btn2-small:hover, .btn2-small:focus, .btn2-big:hover, .btn2-big:focus
{ background: var(--color2); color: var(--color1); text-decoration: none; }

/* HOVER & FOCUS - Secondary border color */
.btn2:hover, .btn2:focus, .btn2-small:hover, .btn2-small:focus, .btn2-big:hover, .btn2-big:focus
{ background: var(--color1); color: var(--color2); }

/* + 'inactive' */ .btn.inactive, .btn-small.inactive, .btn-big.inactive, .btn2.inactive, .btn2-small.inactive, .btn2-big.inactive { cursor: default; opacity: 0.2; } 
/* + 'block' */ .btn.block, .btn-small.block, .btn-big.block, .btn2.block, .btn2-small.block, .btn2-small.block, .btn2-big.block { margin: 0 0 22px 0; } 





/* TOP BANNER & MENUS */
.top-banner { position: relative; z-index: 1; padding: 20px 0 13px 0; }
.logo { float: left; width: 100%; max-width: 236px; margin: 12px 20px 19px 0; }

/*** TOP MENU & SUBMENUS ***/
#menu {	float: right; margin: 0 2% 0 0; padding: 0; text-align: left; }
#menu li, .submenu li { display: inline-block; list-style-type: none; padding: 0; margin: 0; }
.submenu li { display: block; }
#menu li:first-child { display: none; } /* "Home" link : hidden until slide-out menu breakpoint */

/* NORMAL */
#menu li a, .submenu li a { 
	position: relative; display: block; margin: 0 8px 0 0; padding: 19px 10px 8px 10px;
	color: var(--color1); line-height: 1.2; text-decoration: none;
}
.submenu li a { margin: 0; padding: 10px 10px 8px 10px; }


/* HOVER / FOCUS */
#menu li a:hover, #menu li a:focus, .submenu li a:hover, .submenu li a:focus { color: var(--color2); text-decoration: none; }


/* ON */
#menu li a.on, #menu li a.on:hover, .submenu li a.on { color: var(--color2); }
#menu li a.submenu-link.on:hover  { cursor: pointer; }
#menu li a.on::after, .submenu li a.on::after { border: 0; }
#menu li a.on:hover, .submenu li a.on:hover { cursor: default; }


/* SUBMENU PANEL */
.submenu { display: none; position: absolute; clip:rect(16px, 350px, 600px, -20px);  } /* clip: top, left, bottom, right */
/* Position is set by JS - line 39 */
.submenu ul {
	margin: 0 15px 15px 15px; padding: 18px 28px 18px 28px; /* Bottom margin allows shadow to display. */
	background: var(--color0);
	border-radius: 0 0 var(--radiusSmall) var(--radiusSmall); box-shadow: var(--shadow1);
}




.white-rule, .white-rule-heading, .white-rule-divider, .white-rule-divider2, #white-rule-top { clear: both; width: 100%; height: 1px; background-color: #fff; }
.white-rule-heading { margin: -20px 0 60px 0; }
.white-rule-divider { margin: 10px 0 38px 0; }
.white-rule-divider2 { margin: 18px 0 38px 0; }
.underscored { border-bottom: solid 1px var(--color1);}




/* TITLE BANNERS */
.herobar, .titlebar { width: 100%; display: -webkit-flex; display: -ms-flexbox; display: flex; padding: 0; margin: 0 0 48px 0;  }
.herobar { height: 358px; }
.titlebar { height: 260px; }
.short { height: 150px; }
.herobar .col-6, .titlebar .col-6 { height: 100%; padding: 0; margin: 0; }

.heroBG1 { background: var(--color0) url("../images/glass01.jpg") no-repeat center top; }
.heroBG2 { background: var(--color0) url("../images/glass02.jpg") no-repeat center top; }
.heroBG3 { background: var(--color0) url("../images/glass03.jpg") no-repeat center top; }
.heroBG4 { background: var(--color0) url("../images/glass04.jpg") no-repeat center top; }
.heroBG5 { background: var(--color0) url("../images/glass05.jpg") no-repeat center top; }
.heroBG6 { background: var(--color0) url("../images/glass06.jpg") no-repeat center top; }
.heroBG7 { background: var(--color0) url("../images/glass07.jpg") no-repeat center top; }
.heroBG8 { background: var(--color0) url("../images/glass08.jpg") no-repeat center top; }
.heroBG9 { background: var(--color0) url("../images/glass09.jpg") no-repeat center top; }
.heroBG10 { background: var(--color0) url("../images/glass10.jpg") no-repeat center top; }
.heroBG11 { background: var(--color0) url("../images/glass11.jpg") no-repeat center top; }





/* TITLE BANNERS TEXT & ANIMALS */
.herobar h1, .titlebar h1 {
	width: 100%; /* ensures left-alignment despite auto-margin below */
	margin: auto; /* produces vertical centering inside flex parent */
	font-size: 3em; color: var(--color1); text-shadow: var(--shadow2);
}
.dark h1 { text-shadow: none; }

.refreshing { padding-right: 100px; } /* Homepage */

.herobar img, .titlebar img { display: block; margin: auto;  }


/*** ANIMAL IMAGES ***/
.butterfly { width: auto; max-height: 78%; }
.horse { width: auto; max-height: 91%; padding-top: 28px; }
.tiger { width: auto; max-height: 94%; padding-top: 39px; }
.owl { width: auto; max-height: 74%; padding-top: 88px; }
.swan { width: auto; max-height: 70%; padding-top: 83px; }
.stag { width: auto; max-height: 90%; padding-top: 25px; }
.shark { width: auto; max-height: 70%; padding-top: 0; }


/* IMAGE BOXES */
.imageBox { width: 100%; min-height: 300px; background-color: var(--color2); }
.img1 { background: url("../images/glass01.jpg") no-repeat center center; }
.img2 { background: url("../images/glass02.jpg") no-repeat center center; }
.img3 { background: url("../images/glass03.jpg") no-repeat center center; }
.img4 { background: url("../images/glass04.jpg") no-repeat center center; }
.img5 { background: url("../images/glass05.jpg") no-repeat center center; }
.img6 { background: url("../images/glass06.jpg") no-repeat center center; }
.img7 { background: url("../images/glass07.jpg") no-repeat center center; }
.img8 { background: url("../images/glass08.jpg") no-repeat center center; }
.img9 { background: url("../images/glass09.jpg") no-repeat center center; }
.img10 { background: url("../images/glass10.jpg") no-repeat center center; }
.img11 { background: url("../images/glass11.jpg") no-repeat center center; }

.flexheight { min-height: auto; }
.bar { width: 100%; min-height: auto; height: 32px; margin: 0 0 20px 0; }

.darkBGimg { background-color: var(--color0); background-blend-mode: soft-light; }
.lighterBGimg { background-color: var(--color3); background-blend-mode: screen; }
.lightBGimg { background-color: #cfcfcf; background-blend-mode: screen; }

.only-on-mobile { display: none; }



/* LAYOUT */
.strip, .strip2 { width: 100%; padding: 0 0 30px 0; }
.strip2 { padding-top: 20px; } /* Also see 'QUESTION SET - General' section */

.container, #submenu-container, .colsflex { width: 100%; max-width: 1400px; box-sizing: border-box;	margin: 0 auto; padding: 0 3%; }
.container { overflow: hidden; clear: both; position: relative; }
#submenu-container { position: relative; z-index: 50; }
.colsflex, .Q, .Qresult { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; }

/* COLUMNS */
.col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1
{ margin: 10px 0 10px 2%; padding: 0; box-sizing: border-box; }

.colsflex .col-12, .colsflex .col-11, .colsflex .col-10, .colsflex .col-9, .colsflex .col-8, .colsflex .col-7,
.colsflex .col-6, .colsflex .col-5, .colsflex .col-4, .colsflex .col-3, .colsflex .col-2, .colsflex .col-1
{ display: -webkit-flex; display: -ms-flexbox; display: flex; }

.container .col-12, .container .col-11, .container .col-10, .container .col-9, .container .col-8, .container .col-7,
.container .col-6, .container .col-5, .container .col-4, .container .col-3, .container .col-2, .container .col-1
{ display: block; float: left; }

.col-12 { width: 100%; }
.col-11 { width: 91.5%; }
.col-10 { width: 83%; }
.col-9, .col-Q3, .col-results-info { width: 74.5%; }
.col-8, .col-Q2 { width: 66%; }
.col-7, .col-Q1 { width: 57.5%; }
.col-6 { width: 49%; }
.col-5, .col-A1 { width: 40.5%; }
.col-4, .col-A2 { width: 32%; }
.col-3, .col-A3, .col-results-header { width: 23.5%; }
.col-2 { width: 15%; }
.col-1 { width: 6.5%; }

.col-12:first-child, .col-11:first-child, .col-10:first-child, .col-9:first-child, .col-8:first-child, .col-7:first-child, .col-6:first-child,
.col-5:first-child, .col-4:first-child, .col-3:first-child, .col-2:first-child, .col-1:first-child
{ margin-left: 0; }













/* M G A s */
/* Overview page */
.mga-overview .logo-artsure { max-width: 300px; }
.mga-overview .logo-BE { max-width: 215px; }
.mga-overview .logo-EGC { max-width: 260px; }
.mga-overview .logo-EIS { max-width: 220px; }


/* Detailed MGA pages */
.logo-artsure { max-width: 452px; }
.logo-artsure.only-on-mobile { padding: 0 30px 50px 20px; max-width: 352px; margin: auto; box-sizing: border-box; }

.logo-BE { max-width: 299px; }
.logo-BE.only-on-mobile { padding: 0 30px 50px 20px; max-width: 352px; margin: auto; box-sizing: border-box; }

.logo-EGC { max-width: 362px; }
.logo-EGC.only-on-mobile { padding: 0 30px 50px 20px; max-width: 352px; margin: auto; box-sizing: border-box; }

.logo-EIS { max-width: 330px; }
.logo-EIS.only-on-mobile { padding: 0 30px 50px 20px; max-width: 352px; margin: auto; box-sizing: border-box; }

.mga-link { font-weight: bold; text-decoration: none; color: var(--color2); }
.mga-link:hover, .mga-link:focus { color: var(--color1); }
.mga-underscored { height: 28px; border-bottom: solid 1px var(--color1); } 

/* products */
.product { padding: 38px 0 62px 0; border-bottom: solid 1px #282828; }
.BE .product { padding: 2px 0 32px 0; }
.product:last-child { border: 0; }

.first-product h2 { margin-top: -78px; }
.product h2 { padding: 40px 0 16px 0; }

.product .btn2-small { display: block; width: 120px; margin: -10px 0 20px 0; }

.product .toggler { text-decoration: none; font-size: 1.1em; font-weight: bold; padding: 12px 0 12px 0; }
.product .hidden { padding-top: 16px; }
.detail-box {
	display: block; margin: 12px 0 28px 0; padding: 9px 14px 8px 14px;
	border: solid 1px var(--color1); border-radius: var(--radiusSmall);
	background-color: var(--color1); color: var(--color0);
}
.product ol { margin-top: -6px; padding-top: 0; padding-bottom: 0; }




/* MULTI-PAGE USE */
.quoteBox { padding: 0 5% 0 0; }
.quote {
	font: normal 1.85em/1.5 'Libre Baskerville', serif; padding: 18px 0 12px 0; color: var(--color2);
	text-indent: -9px;
}




/* CAPACITY */
.partner { display: block; width: 100%; box-sizing: border-box; }
.logo-accelerant { max-width: 300px; padding: 15px 15px 30px 15px; }
.logo-sirius { max-width: 180px; }
.logo-nia { max-width: 180px; margin: 25px 0; }
.logo-bridgehaven { max-width: 300px; padding: 30px 20px 20px 20px; }
.logo-hadron { max-width: 330px; padding: 30px 20px 30px 20px; }

.logo-accredited { width: 280px; }
.logo-rsa { width: 260px; }

.white-rule-capacity { margin: 18px 0 38px 0; clear: both; width: 100%; height: 1px; background-color: #fff; }




/* KEY PEOPLE */
.team-player { padding: 0 0 50px 0; }
.team-player h3 { padding-bottom: 0; }
.team-role { padding: 0 0 12px 0; color: #3bbeba; }




/* CONTACT */
.contact-us h2 { padding: 18px 0 0px 0; }
.phone-number { letter-spacing: 1px; }
.map { width: 100%; height: 370px; margin: 0 0 6px 0; overflow: hidden;	border-radius: 7px; }
iframe { width: 100%; height: 470px; margin: -100px 0 0 0; border: 0; }
.larger-map-link { text-align: right; font-size: 0.85em; }


.contact-details h2 { padding: 0 0 4px 0; }
.contact-details h2:first-child { padding-top: 0; }
.contact-details h3 { padding-bottom: 6px; }

.contact-details .last { padding-bottom: 56px; }
.contact-details .bar { height: 18px; width:75%; }




/* COMPLAINTS */
.complaints-procedure h1 { padding: 32px 0 18px 0; }
.complaints-procedure h2 { padding: 32px 0 6px 0; }
.complaints-procedure p { padding: 0 0 8px 0; }
.complaints-procedure ul { padding-bottom: 4px; }




/* NEWS */
.news-LinkedIn {
	display: inline-block; margin: 0 0 58px 4px; height: 40px; box-sizing: border-box;
	padding: 3px 0 0 78px;
	background: url("../images/LinkedIn-‭icon.svg") left top no-repeat;
	text-decoration: none; color: var(--color1);
}
.news-LinkedIn:hover, .news .LinkedIn:focus {
	background: url("../images/LinkedIn-‭icon-white.svg") left top no-repeat;
	text-decoration: none; color: var(--color2);
}

.news-rule { clear: both; width: 100%; height: 1px; background-color: #fff; margin: -20px 0 44px 0; }

.media-item { padding-bottom: 52px; }
.media-item h3 { padding-bottom: 4px; }
.media-item a {
	float: left; display: inline-block; width: 83.54%; padding: 0 0 0 82px; box-sizing: border-box;
	background: url('../images/pdf-icon-aqua-76x88.png') left top no-repeat; background-size: 38px 44px; transition: background 0.25s ease-out;
	text-decoration: none; color: #fff;
}
.media-item a:hover { background: url('../images/pdf-icon-white-100x116.png') left top no-repeat; background-size: 50px 58px; }
.media-item a:hover h3 { color: #3bbeba; }
.media-item-date { float: right; padding-top: 1px; }



/* BUSINESS DEVELOPMENT TEAM */
.BDT-title { padding: 0 200px 0 0; }



/* CYBER SECURITY AUDIT */
.st-eg-logos { margin: 42px 0 0 0; max-width: 320px; }
.cyber h1 { padding: 0 0 24px 0; }
.cyber h1.higher { padding: 0 0 36px 0; }
.cyber h2 { padding: 18px 0 18px 0; }
.cyber h3, .cyber p { font-size: 1.15em; }



.cyber .btn, .cyber .btn2 { margin-left: 0; width: 100%; max-width: 440px; padding: 13px 15px 11px 14px; margin: 24px 0 50px 0; font-size: 1.15em;  }

.cyber h3.centered { padding: 0 120px 60px 120px; }
.cyber ul { font-size: 1.15em; margin-bottom: 16px; }

.ticks-container { margin-top: -20px; }
ul.ticks { list-style-type: none; padding: 18px 0 0 0; margin: 0 0 -26px 0; }

ul.ticks li {
    display: block; background-image: url(../images/bullet-tick.svg); background-repeat: no-repeat; background-position: left 1px;
    background-size: 24px 24px; padding: 0 0 32px 36px;
}

.cyber-highlights { border: solid 1px #fff; padding: 0 24px 18px 24px; }
.cyber-highlights > div { width: 100%; }
.cyber-highlights h3 { font-size: 1.5em; font-weight: bold; line-height: 1.1; color: #3bbeba; padding: 6px 0 24px 0; }
.cyber-highlights p { padding: 0 5% 20px 5%; }
.cyber-highlights h3, .cyber-highlights p { text-align: center; }
.cyber-highlights img { margin: 36px auto 20px auto; max-width: 90px; }
.cyberend { font-size: 1.4em; line-height: 1.6; padding: 0; margin-bottom: -32px; }




/* SITEMAP */
.sitemap li { color: #3bbeba; }
.blank-li { list-style-type: none; height: 20px; }



/*** TERMS, PRIVACY ***/
.legal { padding-bottom: 40px; }
.last-updated { margin: 4px 0 14px 3px; font-size: 0.8em; }
.legal h2 { padding: 36px 0 12px 0; }
.legal h3 { padding: 24px 0 14px 0; }
.legal p { line-height: 1.25; padding: 0 0 16px 0; }
.legal ul, .legal ol { line-height: 1.25; padding: 0 0 7px 26px; }
.legal li { line-height: 1.25; padding: 0 0 16px 0; }
.legal .indented1 { margin-left: 32px; }
.legal .indented2 { margin-left: 64px; }

/* Privacy Policy Data Processing Tables */
.data-processing { width: 100%; border-bottom: solid 2px rgba(255,255,255,0.2); }
.data-processing td {
    padding: 10px;
    vertical-align: top;
    border: solid 1px rgba(255,255,255,0.2);
}
.data-processing td:first-child { width: 33%; }
.data-processing td:nth-child(2) { width: 34%; }
.data-processing td:nth-child(3) { width: 33%; }
.legal .data-processing ul, ol { padding-top: 12px; padding-bottom: 0; }



/* CITYSCAPE */
.baseline-image { margin-top: 34px; }



/* FOOTER */
footer { width: 100%; padding: 0; background: var(--color5); font-size: 0.85em; }

.footer-left { float: left; width: 50%; padding: 0 0 0 0; margin: -7px 0 0 0; box-sizing: border-box; }
.footer-right { float: right; width: 50%; padding: 0 0 8px 0; margin: -7px 0 0 0; box-sizing: border-box; }

.LinkedIn {
	display: inline-block; margin: 10px 0 12px 19px; height: 40px; box-sizing: border-box;
	padding: 10px 0 0 56px;
	background: url("../images/LinkedIn-‭icon.svg") left top no-repeat;
	text-decoration: none; color: var(--color1);
}
.LinkedIn:hover, .LinkedIn:focus {
	background: url("../images/LinkedIn-‭icon-white.svg") left top no-repeat;
	text-decoration: none; color: var(--color2);
}

footer li { list-style-type: none; padding: 4px 0 0 0; }
footer li a { display: inline-block; color: var(--color1); padding: 4px 0 4px 0; text-decoration: none; } 
footer li a:hover, .footer li a:focus { color: var(--color2); text-decoration: none; }
footer li a.on { color: var(--color2); text-shadow: 0 0 2px rgba(0,0,0,0.6); }
footer li a.on:hover { cursor: default; color: var(--color2); text-decoration: none; }

.top-button { float: right; width: 40px; padding: 0 0 115px 0; } 
.top-button a { /*** TOP OF PAGE BUTTON ***/
	display: inline-block; position: relative; top: 10px; width: 40px; height: 40px;
	background: var(--color1) url(../images/up-arrow-aqua.svg) center center no-repeat;
	border-radius: var(--radiusSmall); transition: all 0.1s ease-in;
	box-shadow: var(--shadow1);
}
.top-button a:hover { top: 9px; background: var(--color2) url(../images/up-arrow-white.svg) center center no-repeat; box-shadow: 0 3px 8px #000; }
.top-button a:active { top: 1px; }

.tagline { clear: right; float: right; padding: 0 0 0 0; font: normal 1.5em/1.2 'Libre Baskerville', serif; text-align: right; color: var(--color2); }

.copyright { text-align: left; padding: 12px 0 24px 0; font-size: 0.75em; line-height: 1.5; }






/* LAYOUT TOOLS - at the end so they over-ride anything above */
.devbg { background: #FFDADA; } .devbg2 { background: #DAFFDA; } .devbg3 { background: #C4D8F4; } .devbg4 { background: #B3E486; }
.hidden { display: none; }
.block { display: block; }
.flex { width: 100%; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; }
.flex-h-centered { display: block; width: 100%; text-align: center; }
.flex-align-right { display: block; width: 100%; text-align: right; }
.flex-v-centered { align-self: center; }
.flex-v-bottom { align-self: flex-end; }
.no-padding { padding: 0; }
.no-bottom-padding { padding-bottom: 0; }
.no-top-padding { padding-top: 0; }

.padded-left { padding-left: 50px;}
.padded-right { padding-right: 50px;}
.padded, .padded-but-not-on-mobile { padding: 38px 38px 28px 38px; }

.no-right-margin { margin-right: 0; }
.no-bottom-margin { margin-bottom: 0; }
.clearfix:after { content: ""; display: table; clear: both; }
.clearfloats { clear: both; }
.floatright { float: right; }
.floatleft { float: left; }
.txt-align-right { width: 100%; text-align: right; }

.valign-middle { margin: auto; } /* Only works applied to DIVs inside col-x inside colsflex */
.hard-left { width: 100%; }

.line-break { display: inline; }
a[href^=tel] { color: inherit; text-decoration: none; }




/* HAMBURGER MENU BUTTONS  * @author Jonathan Suh @jonsuh * @site https://jonsuh.com/hamburgers * @link https://github.com/jonsuh/hamburgers */
.hamburger {
	display: none; position: fixed; z-index: 100; top: 12px; right: 3%;
	margin: 11px 0 0 0; padding: 11px 6px 5px 7px;
	background: var(--color1); border: 0; border-radius: var(--radiusSmall);
	transition-property: opacity, filter; transition-duration: 0.15s; transition-timing-function: linear;
	font: inherit; color: inherit; text-transform: none; overflow: visible; cursor: pointer;
	box-shadow: var(--shadow1);
}
.hamburger:hover { background: var(--color2); }
.hamburger:hover .hamburger-inner, .hamburger:hover .hamburger-inner::before , .hamburger:hover .hamburger-inner::after { background: var(--color1); }

.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner::before, .hamburger.is-active .hamburger-inner::after {
	background: var(--color2); /* X normal */
}
.hamburger.is-active:hover .hamburger-inner, .hamburger.is-active:hover .hamburger-inner::before, .hamburger.is-active:hover .hamburger-inner::after {
	background: var(--color1); /* X hover & anim */
}

.hamburger-box { width: 28px; height: 14px; display: inline-block; position: relative; }

.hamburger-inner { display: block; top: 50%; margin-top: -4px; }
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
	position: absolute; width: 27px; height: 4px;
    background-color: var(--color2); border-radius: var(--radiusTiny);
    transition-property: transform; transition-duration: 0.15s; transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after { content: ""; display: block; }
.hamburger-inner::before { top: -10px; }
.hamburger-inner::after { bottom: -10px; }
.hamburger--squeeze .hamburger-inner { transition-duration: 0.075s; transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--squeeze .hamburger-inner::before { transition: top 0.075s 0.12s ease, opacity 0.075s ease; }
.hamburger--squeeze .hamburger-inner::after { transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--squeeze.is-active .hamburger-inner { transform: rotate(45deg); transition-delay: 0.12s; transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
.hamburger--squeeze.is-active .hamburger-inner::before { top: 0; opacity: 0; transition: top 0.075s ease, opacity 0.075s 0.12s ease; }
.hamburger--squeeze.is-active .hamburger-inner::after { bottom: 0; transform: rotate(-90deg); transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }



/* ACCESSIBILITY */
a.skip-to-main { left: -999px; position: absolute; top: auto; width: 1px; height: 1px; overflow: hidden; z-index: -100; }
a.skip-to-main:focus {
    left: auto; top: auto; width: 180px; height: auto; overflow: auto; z-index: 3000;
    margin-top: 20px; margin-left: calc(50% - 100px); padding: 7px 10px 8px 10px;
    font-size: 16px; color: var(--color1); text-align: center; text-decoration: none;
	background: var(--color0); border-radius: var(--radiusSmall); border: solid 2px var(--color1); box-shadow: var(--shadow1);
}









/* FORM INPUTS  */
/* Text, Textarea, Date, Tel, Email, Number, Password, Search, Select, .QAdisplay */
input[type=text], textarea, input[type=date], input[type=tel], input[type=email], input[type=number], input[type=password], input[type=search], select, .QAdisplay {
	display: inline-block;
	box-sizing: border-box; width: calc(100% - 42px); padding: 7px 8px;
	background: var(--color1); font-size: inherit; font-family: inherit; color: var(--color0);
	border-style: solid; border-width: 1px; border-color: var(--color7); border-radius: var(--radiusSmall);
}
input[type=text]:focus, textarea:focus, input[type=date]:focus, input[type=tel]:focus,
input[type=email]:focus, input[type=number]:focus, input[type=password]:focus, input[type=search]:focus, select:focus, .QAdisplay:focus {
	background: var(--color1); border-style: solid; border-width: 1px; border-color: var(--color2);
}
textarea { height: 82px; }
input[type=date] { width: auto; }
.password-eye {	width: 0px;	position: relative; left: -36px; cursor: pointer; color: var(--color4); }
.help-icon.password { margin-left: 6px; }
.forgotten { padding: 0 0 8px 6px; font-size: 0.9em; }
select { padding-left: 4px; cursor: pointer; }
a.search { position: relative; top: -1px; left: 0; margin: 0; padding: 12px 12px 12px 13px; font-size: 0.8em; }

/* Checkboxes */
.checkboxes { display: inline-block; box-sizing: border-box; max-width: calc(100% - 42px); } /* Container for group. */
.checkbox { /* Container for each checkbox */
	position: relative; display: inline-block; cursor: pointer;
	-webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none;
}
.checkbox input { position: absolute; opacity: 0; cursor: col-resize; height: 0; width: 0; } /* Hide the browser defaults */

.checkbox p { margin: 5px 20px 4px 35px; padding: 0; } /* Text label */

.checkmark { 
	position: absolute; top: 0; left: 0; height: 28px; width: 28px; margin: 1px 0 0 0; /* Box Unchecked */
	background: var(--color7); border-radius: var(--radiusSmall); box-shadow: var(--shadow5);
} 
.checkbox input:hover ~ .checkmark, .checkbox input:focus ~ .checkmark { background: var(--color5); transition: none; box-shadow: none; } /* Box Unchecked Rollover & Focus */

.checkbox input:checked ~ .checkmark { background: var(--color4); } /* Box - Checked */
.checkbox input:checked:hover ~ .checkmark, .checkbox input:checked:focus ~ .checkmark { background: var(--color5); box-shadow: none; } /* Box Checked Rollover & Focus */

.checkmark:after { content: ""; position: absolute; display: none; } /* Tick (hidden) */
.checkbox input:checked ~ .checkmark:after { display: block; } /* Tick (visible) */
.checkbox .checkmark:after { /* Tick Graphic */
	left: 10px; top: 3px; width: 6px; height: 16px;
	border-style: solid; border-color: var(--color5); border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg);
}
.checkbox input:checked:hover ~ .checkmark:after, .checkbox input:checked:focus ~ .checkmark:after { border-color: var(--color3) } /* Tick Rollover & Focus */

/* Radio buttons */
.radio-buttons { display: inline-block; box-sizing: border-box; width: auto; max-width: calc(100% - 42px); }
input[type='radio'] { opacity: 0; }
input[type='radio'] + label {
	display: inline-block; margin: 4px 8px 4px -17px; padding: 8px 16px; cursor: pointer; 
	background: var(--color7); border-radius: var(--radiusSmall); box-shadow: var(--shadow5);
}
input[type=radio]:last-child + label { margin-right: 0; }
input[type=radio]:hover + label, input[type=radio]:focus + label { background: var(--color5); color: var(--color3); box-shadow: none; }
input[type=radio]:checked + label, input[type=radio]:checked:hover + label { cursor: default; background: var(--color4); color: var(--color5); box-shadow: none; }
input[type=radio]:checked:focus + label { box-shadow: var(--shadow6); }

/* Range Slider - RESET */
.slider-output { position: relative; top: 3px; display: inline-block; min-width: 30px; }
input[type=range] {
	width: calc(100% - 76px); margin: 18px 0 20px 0; border: 0;
	background: transparent; /* Otherwise white in Chrome */
	-webkit-appearance: none; /* Hides the slider so that custom slider can be made */
}
@-moz-document url-prefix() { /* Firefox only */
	input[type=range] { margin: 16px 0 8px 0; }
	.slider-output { top: -12px; }
}
input[type=range]:focus { outline: none; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; }
input[type=range]::-ms-track { cursor: pointer; background: transparent; border-color: transparent; color: transparent; } /* Hide the slider so custom styles can be added */

/* Range Slider - BUTTON */
input[type=range]::-webkit-slider-thumb { /* WebKit */
	-webkit-appearance: none; margin-top: -14px; /* You need to specify a margin in Chrome, but in Firefox and IE it's automatic */
	width: 16px; height: 36px; cursor: pointer;	background: var(--color1); border-style: solid; border-width: 1px; border-color: var(--color4); border-radius: var(--radiusTiny);
}
input[type=range]::-moz-range-thumb { /* Must repeat for Firefox */
	width: 16px; height: 36px; cursor: pointer;	background: var(--color1); border-style: solid; border-width: 1px; border-color: var(--color4); border-radius: var(--radiusTiny);
} 
input[type=range]::-ms-thumb { /* Must repeat for IE */
	width: 16px; height: 36px; cursor: pointer;	background: var(--color1); border-style: solid; border-width: 1px; border-color: var(--color4); border-radius: var(--radiusTiny);
}

/* Range Slider - TRACK */
/* Webkit */
input[type=range]::-webkit-slider-runnable-track {
	width: 100%; height: 8px; cursor: pointer;
	box-shadow: none; background: var(--color1); border-style: solid; border-width: 1px; border-color: var(--color7); border-radius: var(--radiusSmall);
}
input[type=range]:focus::-webkit-slider-runnable-track { border-color: var(--color5); }
/* Firefox */
input[type=range]::-moz-range-track {
	width: 100%; height: 8px; cursor: pointer;
	box-shadow: none; background: var(--color1); border-style: solid; border-width: 1px; border-color: var(--color7); border-radius: var(--radiusSmall);
}
input[type=range]:focus::-moz-range-track { border-color: var(--color5); }
/* IE */
input[type=range]::-ms-track {
	width: 100%; height: 8px; cursor: pointer;
	box-shadow: none; background: var(--color1); border-style: solid; border-width: 1px; border-color: var(--color7); border-radius: var(--radiusSmall);
}
input[type=range]::-ms-fill-lower, input[type=range]::-ms-fill-upper { background: var(--color1); border: 1px solid; border-color: var(--color7); border-radius: var(--radiusSmall); }
input[type=range]:focus::-ms-fill-lower, input[type=range]:focus::-ms-fill-upper { border: 1px solid; border-color: var(--color5); }










@media only screen and (max-width: 1179px) { /* top menu drops below logo */
	.logo { margin: 12px 20px 4px 0; }
	.stag { padding-top: 26px; }
}

@media only screen and (max-width: 1080px) {
	.herobar h1, .titlebar h1 { padding: 2px 0 0 0; }
}



@media only screen and (max-width: 946px) { /*********** S L I D E - O U T   V E R S I O N   O F   M E N U ***********/
	
	.col-1:nth-child(3n+1), .col-2:nth-child(3n+1) { margin-left: 2%; } /* reset */
	.col-1, .col-2, .col-3 { width: 49%; margin-left: 2%; }
	.col-1:nth-child(odd), .col-2:nth-child(odd), .col-3:nth-child(odd) { margin-left: 0; }
	
	/*********** S L I D E - O U T   V E R S I O N   O F   M E N U ***********/
	.hamburger { display: block; }
	.logo { margin: 12px 20px 18px 0; }
	#menu {
		width: 100%;
		padding: 56px 12px 32px 0px;
		position: fixed; z-index: 25; top: -25px; left: -105%; height: auto;
		background: var(--color0); box-shadow: var(--shadow1);
		border-radius: 0 0 var(--radiusMedium) 0;
		transition: left 0.65s cubic-bezier(.77,.38,.17,.98);		
	}
	#menu li { display: block; }
	#menu li a { display: inline-block; padding: 12px 32px 12px 32px; }
	#menu li:first-child { display: block; } /* "Home" link */
	#submenu-container { position: fixed; top: 84px; background: #ccc; }
	.submenu ul {
		margin: 30px 15px 15px 15px; padding: 12px 18px 18px 18px; /* Top & Bottom margin allows shadow to display. */
		border-radius: var(--radiusSmall) var(--radiusSmall) var(--radiusSmall) var(--radiusSmall); box-shadow: var(--shadow1);
	}
	.submenu { clip: none;  }
}



@media only screen and (max-width: 900px) {
	.col-1, .col-2 { width: 32%; }
	.col-1:nth-child(3n+1), .col-2:nth-child(3n+1) { margin-left: 0; }
}



@media only screen and (max-width: 850px) { /*********** C O L U M N S   C O L L A P S E ************/
	.strip2 { padding-top: 8px; }
	
	
	/*********** C O L U M N S   C O L L A P S E ************/
	.col-1:nth-child(3n+1), .col-2:nth-child(3n+1), .col-3:nth-child(3n+1) { margin-left: 0; }
	.col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1
	{ width: 100%; margin-left: 0; }
	.padded-left { padding-left: 0px;}
	.padded-right { padding-right: 0px;}
	
	/*** A N I M A L   I M A G E S   D I S A P P E A R ***/
	.butterfly, .horse, .tiger, .owl, .swan, .stag, .shark { visibility: hidden; }

	.titlebar { height: 160px; }
	
	.imageBox { width: 100%; min-height: 14px; background-color: var(--color2); }
	.bar, .contact-details .bar { width: 100%; min-height: 14px; height: 14px; margin: 0 0 20px 0;  }
	
	.hide-on-mobile { display: none; height: 0; }
	.only-on-mobile { display: block; }
	.padded-but-not-on-mobile { padding: 0; }
	
	.mga-overview .btn2 { display: block; }
	
	.product { padding: 18px 0 42px 0; }
	.BE .product { padding: 2px 0 32px 0; }
	
	.white-rule-capacity { margin: 24px 0 54px 0; }
	
	.ticks-container { margin-top: -32px; }
	ul.tick { margin: 0; }
	ul.ticks2 { padding: 0; margin: -6px 0 -30px 0; } /* Cyber */
}


@media only screen and (max-width: 700px) {
	
	.news-rule { margin: 24px 0 54px 0; }
	
	/* Cyber */
    input[type=text], textarea, input[type=date], input[type=tel], input[type=email], input[type=number], input[type=password], input[type=search], select, .QAdisplay {
        max-width: 1000px;
    }  
	ul.ticks li { padding: 0 0 18px 36px; }
    .cyber .btn { display: block; max-width: 1000px; }
    .cyberend { font-size: 1.1em; line-height: 1.6; margin: 0; padding: 0; }
	
	
	
	
	footer { padding-top: 10px; }
	footer li a { font-size: 0.9em;  }
	.footer-left, .footer-right { width: 100%; }
	.footer-left { margin: -7px 0 0 -18px; }
	.top-button { position: absolute; top: -7px; right: 12px; padding: 0 0 15px 0; } 
	.tagline { padding: 20px 12px 0 0; }
	.LinkedIn {	width: 200px; line-height: 1.2; margin: 10px 0 12px 19px; padding: 5px 0 0 56px; }
	.copyright span { display: none; }
}


@media only screen and (max-width: 600px) {
	.herobar h1, .titlebar h1 { font-size: 2.5em; }
	.herobar { height: 208px; }
	.titlebar { height: 150px; }
	.quote { font-size: 1.35em; }
}


@media only screen and (max-width: 430px) {
	.line-break { display: block; }
	.news-rule { margin: 44px 0 54px 0; }
	
}







/* PRINT */
@media print {
	
	@page { margin-top: 1.5cm; margin-bottom: 1.5cm; }
	body { background: var(--color1); font-size: 0.85em; margin: 0; overflow: visible; }
	
	.do-not-print, .logo, #menu, .herobar img, .titlebar img, .top-button, .imageBox, .bar, .baseline-image, .footer-left
	{ display: none !important; }
	
	.top-banner { padding: 0; box-shadow: none; }

	.print-logo, .print-logo-mga { display: block; margin: 0; width: 100%; max-width: 280px; }
	.print-logo { margin-bottom: 2cm; }
	.print-logo-mga { margin-bottom: 0cm; }

	
	p, h2, h3, h4, ul, ol { color: var(--color4); }
	h1, .herobar h1, .titlebar h1 { font-size: 3em; color: var(--color2); text-shadow: none; }
	.text-shadow1, .text-shadow2, .text-shadow3, .text-shadow4 { text-shadow: none; }
	.color1 { color: var(--color2); }
	
	.btn, .btn-small, .btn-big, .btn2, .btn2-small, .btn2-big { background: var(--color1); color: var(--color2); border: solid 1px; border-color: var(--color2); }
	
	.herobar, .titlebar { height: auto; }
	.padded, .padded-but-not-on-mobile { padding: 0; }
	
	.news-LinkedIn { color: var(--color2); }
	#idQ { color: var(--color4); }
	
	/*********** C O L U M N S   C O L L A P S E ************/
	.col-1:nth-child(3n+1), .col-2:nth-child(3n+1), .col-3:nth-child(3n+1) { margin-left: 0; }
	.col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1
	{ width: 100%; margin-left: 0; }
	.padded-left { padding-left: 0px;}
	.padded-right { padding-right: 0px;}
	
	.white-rule, .white-rule-heading, .white-rule-divider, .white-rule-divider2, #white-rule-top { border-bottom: solid 1px var(--color0); }
	.underscored { border-bottom: solid 1px var(--color0);}
	.white-rule-capacity { border-bottom: solid 1px var(--color0); }
	
	footer { margin: 1cm 0 0 0; background: none; color: var(--color2); }
	.tagline { padding: 1cm 0 0cm 0; }
	
}

