/*
Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/* 
FONTS
-----------------------------------------------------
*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;500;600;700;800;900');
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
/* normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
	line-height: 1.15;
	/* 1 */
	-webkit-text-size-adjust: 100%;
	/* 2 */
}

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
	margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	box-sizing: content-box;
	/* 1 */
	height: 0;
	/* 1 */
	overflow: visible;
	/* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
	font-family: monospace, monospace;
	/* 1 */
	font-size: 1em;
	/* 2 */
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none;
	/* 1 */
	text-decoration: underline;
	/* 2 */
	-webkit-text-decoration: underline dotted;
	text-decoration: underline dotted;
	/* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-family: monospace, monospace;
	/* 1 */
	font-size: 1em;
	/* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
	border-style: none;
}

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	/* 1 */
	font-size: 100%;
	/* 1 */
	line-height: 1.15;
	/* 1 */
	margin: 0;
	/* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
	/* 1 */
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
	/* 1 */
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type='button'],
[type='reset'],
[type='submit'] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
	box-sizing: border-box;
	/* 1 */
	color: inherit;
	/* 2 */
	display: table;
	/* 1 */
	max-width: 100%;
	/* 1 */
	padding: 0;
	/* 3 */
	white-space: normal;
	/* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type='checkbox'],
[type='radio'] {
	box-sizing: border-box;
	/* 1 */
	padding: 0;
	/* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type='search'] {
	-webkit-appearance: textfield;
	/* 1 */
	outline-offset: -2px;
	/* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type='search']::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	/* 1 */
	font: inherit;
	/* 2 */
}

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
	display: none;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
	color: #404040;
	font-family: sans-serif;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: 'Courier 10 Pitch', Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: Monaco, Consolas, 'Andale Mono', 'DejaVu Sans Mono', monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	/* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff;
	/* Fallback for when there is no custom background color defined. */
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto;
	/* Make sure images are scaled correctly. */
	max-width: 100%;
	/* Adhere to container width. */
}

figure {
	margin: 1em 0;
	/* Extra wide images within figure tags don't overflow the content area. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type='button'],
input[type='reset'],
input[type='submit'] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1;
	padding: 0.6em 1em 0.4em;
}

button:hover,
input[type='button']:hover,
input[type='reset']:hover,
input[type='submit']:hover {
	border-color: #ccc #bbb #aaa;
}

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: #aaa #bbb #bbb;
}

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 {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

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;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: royalblue;
}

a:visited {
	color: purple;
}

a:hover,
a:focus,
a:active {
	color: midnightblue;
}

a:focus {
	outline: thin dotted;
}

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

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
	clear: both;
	display: block;
	float: left;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	left: 100%;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li {
	float: left;
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {
	.menu-toggle {
		display: none;
	}

	.main-navigation ul {
		display: block;
	}
}
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	-webkit-clip-path: inset(50%);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	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;
	-webkit-clip-path: none;
	clip-path: none;
	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;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: '';
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
	/* Make sure select elements fit in widgets. */
}

.widget select {
	max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.post,
.page {
	margin: 0 0 1.5em;
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	/* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*='wp-image-'] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}

/*! Flickity v2.1.2
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
	position: relative;
}

.flickity-enabled:focus {
	outline: 0;
}

.flickity-viewport {
	overflow: hidden;
	position: relative;
	height: 100%;
}

.flickity-slider {
	position: absolute;
	width: 100%;
	height: 100%;
}

.flickity-enabled.is-draggable {
	-webkit-tap-highlight-color: transparent;
	tap-highlight-color: transparent;
	-webkit-user-select: none;
	user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
	cursor: move;
	cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
	cursor: grabbing;
}

.flickity-button {
	position: absolute;
	background: rgba(255, 255, 255, 0.75);
	border: none;
	color: #333;
}

.flickity-button:hover {
	background: #fff;
	cursor: pointer;
}

.flickity-button:focus {
	outline: 0;
	box-shadow: 0 0 0 5px #19f;
}

.flickity-button:active {
	opacity: 0.6;
}

.flickity-button:disabled {
	opacity: 0.3;
	cursor: auto;
	pointer-events: none;
}

.flickity-button-icon {
	fill: #333;
}

.flickity-prev-next-button {
	top: 50%;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	transform: translateY(-50%);
}

.flickity-prev-next-button.previous {
	left: 10px;
}

.flickity-prev-next-button.next {
	right: 10px;
}

.flickity-rtl .flickity-prev-next-button.previous {
	left: auto;
	right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
	right: auto;
	left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
	position: absolute;
	left: 20%;
	top: 20%;
	width: 60%;
	height: 60%;
}

.flickity-page-dots {
	position: absolute;
	width: 100%;
	bottom: -25px;
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: center;
	line-height: 1;
}

.flickity-rtl .flickity-page-dots {
	direction: rtl;
}

.flickity-page-dots .dot {
	display: inline-block;
	width: 10px;
	height: 10px;
	margin: 0 8px;
	background: #333;
	border-radius: 50%;
	opacity: 0.25;
	cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
	opacity: 1;
}

/*
font-family: 'Roboto', sans-serif;
font-family: 'Noticia Text', serif;
*/
/* 
GENERAL
-----------------------------------------------------
*/
html {
	scroll-behavior: smooth;
}

body,
html {
	background-color: #fff;
	color: #383838;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	margin: 0px !important;
	overflow-x: hidden;
}

#page {
	padding: 0rem 0rem;
}

#page .central-col {
	margin: 0 auto;
	max-width: 1190px;
	max-width: calc(1190px + 2rem);
	width: 100%;
	padding-left: 1rem;
	padding-right: 1rem;
}

#content {
	background-color: #efefef;
	padding-top: 111.64px;
}

ul,
li {
	margin: 0px;
	padding: 0px;
	list-style: none;
}

.icon,
.icon svg {
	display: inline-block;
}

.icon svg {
	width: 100%;
	vertical-align: middle;
}

.left {
	float: left;
	clear: none;
}

.right {
	float: right;
	clear: none;
}

.flexbox {
	display: flex;
	flex-direction: row;
}

.flexbox-vert {
	display: flex;
	flex-direction: column;
}

.flexbox-center {
	align-items: center;
	justify-content: center;
}

/*[class*=grid-], 
[class*=grid_],
[class~=grid] {
    margin: 0 0rem;
}*/
[class*='col-'],
[class*='col_'],
[class~='col'] {
	box-sizing: border-box;
	padding: 0 0.5rem 2rem;
	max-width: 100%;
}

/*.safari [class*=grid-3]>[class*=col-], 
.safari [class*=grid-3]>[class*=col_], 
.safari [class*=grid-3]>[class~=col] {
    -ms-flex-preferred-size: 33.3%;
    flex-basis: 33.3%;
}*/
.padding-lr {
	padding-left: 0.5rem;
	padding-right: 0.5rem;
}

.centered {
	text-align: center;
}

p {
	margin-top: 0px;
	margin-bottom: 1.5rem;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 0;
}

iframe {
	border: none;
	width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	letter-spacing: 0.03em;
}

.entry-content p a {
	color: #950d34;
}

.entry-content p a:hover {
	text-decoration: underline;
}

/* 
LINKS & ROLLOVERS
-----------------------------------------------------
*/
a,
a:visited,
a:focus,
.flickity-page-dots .dot,
.icon svg *,
.yellow-button,
.tab a:hover > div > div,
.accordian .open-close:before,
.accordian .open-close svg *,
.gallery .open-close:before,
.menu-toggle {
	outline: none;
	color: #383838;
	transition: all 0.3s ease;
	text-decoration: none;
}

a:hover,
.content-area .breadcrumbs a,
.related-content .wrapper:hover > .inner h3,
.related-content .wrapper:hover .entry-link span,
.search-box button:hover,
#page .sub-menu .parent-title a:hover {
	color: #950d34;
}

.footer-menu li a:hover,
.site-info a,
.content-area .breadcrumbs a:hover,
.accordian .accordian-header:hover .open-close:before,
.articles a:hover span,
.media a:hover span,
.media-press .press a:hover span,
.search-results #primary article a:hover,
.search-no-results #primary article a:hover,
#page .main-navigation ul li > ul a:hover,
.main-navigation li a:hover,
.footer-menu h4 a:hover,
#sp-widget a {
	color: #f5ab3b;
}

.site-info a:hover,
#fp-tabs .tab a:hover > div > div,
#fp-tabs .tab.active a > div > div,
.page-siblings .page_item_has_children li a:hover,
.page-siblings .page_item_has_children li.current_page_item a,
.gallery .open-close:hover:before,
.doc-group .open-close:hover:before,
.search-results .page-siblings .page_item a:hover,
.search-no-results .page-siblings .page_item a:hover,
.menu_class > li:hover a,
.footer-menu h4 a,
#sp-widget a:hover {
	color: #fff;
}

.related-content .wrapper:hover > .inner {
	color: #383838;
}

.page-siblings .page_item_has_children li a:hover,
.page-siblings .page_item_has_children li.current_page_item a,
.gallery .open-close:hover,
.doc-group .open-close:hover,
.search-results .page-siblings .page_item a:hover,
.search-no-results .page-siblings .page_item a:hover,
.menu_class > li:hover a,
.toggled .menu-toggle {
	background-color: #950d34;
}

.search-box button:hover {
	background-color: #f5ab3b;
}

.icon.gold svg *,
.footer-menu li a:hover svg *,
.content-area .breadcrumbs a:hover svg *,
.accordian .accordian-header:hover .open-close svg *,
.articles a:hover svg *,
.media .doc-info a:hover svg *,
.tabs .tab.active a svg *,
.tabs .tab:hover a svg *,
#page .flickity-prev-next-button:hover svg *,
.search-results #primary article a:hover svg *,
.search-no-results #primary article a:hover svg *,
.main-navigation ul li > ul a:hover svg *,
#page .related-wrapper .flickity-prev-next-button svg * {
	fill: #f5ab3b;
}

.icon.white svg *,
.site-info a:hover svg *,
.tab a:hover .read-more svg *,
.page-siblings .page_item_has_children li a:hover svg *,
.page-siblings .page_item_has_children li.current_page_item a svg *,
.gallery .open-close:hover svg *,
.doc-group .open-close:hover svg *,
#page .flickity-prev-next-button svg *,
.search-results .page-siblings .page_item a:hover svg *,
.search-no-results .page-siblings .page_item a:hover svg *,
#sp-widget a:hover svg *,
.toggled .menu-toggle .icon svg * {
	fill: #fff;
}

.icon.red svg *,
.tab a .read-more svg,
.related-content .wrapper:hover .entry-link svg *,
.search-box button:hover svg *,
#page .sub-menu .parent-title a:hover svg * {
	fill: #950d34;
}

.icon.grey svg * {
	fill: #383838;
}

.yellow-button,
a.yellow-button {
	font-size: 14px;
	font-weight: 700;
	background-color: #f5ab3b;
	color: #950d34;
	padding: 0.7rem 1rem;
	display: inline-block;
}

.yellow-button > * {
	display: inline-block;
	vertical-align: middle;
}

.yellow-button i {
	margin-left: 10px;
	margin-top: -2px;
	height: 20px;
}

.yellow-button:hover,
#page .sub-menu .parent-title a:hover {
	background-color: #fff;
}

.zoom-bg {
	transition: all 0.5s ease;
	position: absolute;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 100%;
	transform: scale(1);
	background-size: cover;
	background-position: center center;
}

*:hover > .zoom-bg {
	transform: scale(1.1);
}

.fade-in,
.wait-for-images {
	transition: opacity 0.5s ease 0s;
}

.fade-in,
.wait-for-images,
.gallery .overlay {
	opacity: 0;
}

.fade-in.images-loaded,
.wait-for-images.images-loaded,
.gallery a:hover .overlay {
	opacity: 1;
}

.accordian,
.accordian .open-close svg,
.gallery .overlay,
.gallery .open-close svg,
.doc-group .open-close svg,
.articles a span,
.articles a svg *,
.media a span,
.media a svg *,
.media-press .press a span,
#page .flickity-prev-next-button svg *,
.related-content .wrapper > .inner,
.related-content .wrapper > .inner h3,
.related-content .wrapper .entry-link span,
.search-box button {
	transition: all 0.3s ease;
}

.accordian.accordian-active,
.related-content .wrapper:hover > .inner {
	background-color: #fff;
}

.related-content .wrapper:hover {
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

.accordian.accordian-active .open-close svg,
.gallery.accordian-active .open-close svg,
.tab-content-wrapper.accordian-active .open-close svg {
	transform: rotate(270deg);
}

.featherlight .featherlight-image {
	max-height: 85vh;
	width: auto !important;
}

.search-box button:hover {
	cursor: pointer;
}

.site-header {
	transition: all 0.5s ease 0.5s;
}

.scrolling-down .site-header {
	transform: translateY(-100%);
}

#fp-tabs .tab-content-wrapper {
	transition: all 0.6s ease;
}

/* BRANDING
-----------------------------------------------------
*/
.site-info a.ir {
	color: white;
}

.site-info a.ir span {
	font-size: 18px;
	padding: 0 1px;
	color: #fed14f;
}

/* 
HEADER
-----------------------------------------------------
*/
.site-header {
	background-color: #fff;
	position: relative;
	padding-left: 1rem;
	padding-right: 1rem;
	position: fixed;
	width: 100%;
	z-index: 10;
}

.site-header .inner {
	margin: 0 auto;
	max-width: 1490px;
	width: 100%;
}

.site-branding {
	margin: 0px;
}

.site-branding p {
	margin: 0px;
}

.site-branding .site-title {
	justify-content: center;
}

.site-branding a {
	display: block;
	width: 210px;
	height: auto;
}

.site-branding a,
.site-branding img {
	display: block;
}

.site-branding img {
	width: 100%;
	height: auto;
	padding: 1rem 0rem;
}

.search-box {
	text-align: right;
}

.search-box form {
	float: right;
	display: flex;
}

.search-box form > * {
	float: left;
	display: block;
}

.search-box .search-field {
	padding: 7px 10px;
	height: 100%;
}

.search-box button {
	float: left;
	padding: 6px 12px 8px;
	color: #f5ab3b;
}

.search-box svg {
	width: 22px;
	height: 25px;
}

#site-navigation {
	text-align: right;
}

.menu_class {
	padding-top: 1rem;
}

ul li > ul {
	margin-top: 10px;
}

.main-navigation li {
	float: none;
	display: inline-block;
}

.main-navigation li a {
	padding: 1rem 10px;
	text-transform: uppercase;
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.4px;
}

.menu_class > li > a i {
	display: none;
}

.main-navigation li {
	float: none;
	display: inline-block;
	position: static;
}

.main-navigation ul ul {
	width: 100%;
	left: -999em;
	/*padding: 2rem calc( ( 100% - 1190px ) / 2 ) 6rem calc( ( ( 100% - 1190px ) / 2 ) + 450px );*/
	padding: 2rem 0rem;
	background-color: #950d34;
	column-count: 1;
	text-align: left;
	display: block;
}

.main-navigation ul ul ul {
	left: auto;
	top: auto;
	padding: 0;
	background: none;
	box-shadow: none;
	height: 100%;
	position: static;
	column-count: auto;
	border-top: 0;
}

.main-navigation ul li:hover > ul {
	left: 0px !important;
}

.main-navigation ul li > ul li {
	display: block;
	margin-bottom: 0.5rem;
	float: none;
	width: 60%;
	padding-right: 2rem;
}

.main-navigation ul li > ul .menu-item a {
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	width: 100%;
	padding: 0.3rem 0.5rem;
}

.main-navigation ul li > ul a i {
	float: right;
	height: 25px;
}

.mobile-menu .menu-item-has-children {
	background-image: url('images/down-arrow.svg');
	background-repeat: no-repeat;
	background-position: right 10px top 20px;
	background-size: 15px;
}

.sub-menu .parent-title {
	/*position: absolute;
    left: calc( ( 100% - 1190px ) / 2 );
    top: 1.5rem;
    width: 22%;*/
	border-right: 1px solid #fff;
	padding-right: 2rem;
	color: #fff;
}

.sub-menu .parent-title h2 {
	font-size: 28px;
	color: #fff;
	font-family: 'Montserrat', sans-serif;
	margin: 0.5rem 0rem 1rem;
}

.sub-menu .parent-title small {
	font-size: 14px;
}

.sub-menu .parent-title a {
	/*border-left: 1px solid #fff;*/
	border: 1px solid #fff;
	display: block;
	width: 100%;
	margin: 1rem 0rem;
	padding: 0.5rem 1rem;
	color: #fff;
}

.sub-menu .flexbox {
	flex-flow: wrap column;
	max-height: 450px;
}

.mobile-menu {
	display: none;
}

.error-404 .page-content {
	margin: 60px 0;
	text-align: center;
}

.error-404 .page-content h3 {
	font-size: 110px;
	font-weight: bold;
	line-height: 130px;
	margin: 20px 0;
}

.error-404 .page-content p {
	max-width: 50%;
	margin: 0 auto;
}

.error-404 .page-content p a {
	color: #950d34;
	font-weight: 600;
}

/* 
HOME
-----------------------------------------------------
*/
.block {
	margin-top: 1rem;
	margin-bottom: 5rem;
}

.block-title,
.wysiwyg-content h2,
.wysiwyg-content h3 {
	font-size: 28px;
	font-weight: 700;
	color: #950d34;
	font-family: 'Montserrat', serif;
	margin: 0px;
	text-transform: uppercase;
	line-height: 1;
}

h2.block-title {
	border-bottom: 1px solid #950d34;
	margin: 0rem 0rem 2rem;
	padding-bottom: 0.2rem;
}

#fp-tabs #tab-container {
	background-color: #950d34;
}

#fp-tabs #tab-container .tabs {
	background-color: #fff;
}

#fp-tabs .tabs .tab a {
	padding: 1rem 2rem;
	font-weight: 700;
	text-align: left;
	background-color: #fff;
	height: 100%;
	border-right: 1px solid #a0a0a0;
}

#fp-tabs .tabs .tab:last-of-type a {
	border-right: 1px solid #fff;
}

#fp-tabs .tabs .tab.active a,
#fp-tabs .tabs .tab a:hover {
	color: #ffffff;
	background-color: #950d34;
	border-right: 1px solid #950d34;
}

#fp-tabs .tab a .tab-title {
	font-family: 'Montserrat', serif;
	text-transform: uppercase;
	line-height: 1.3;
	color: #383838;
	font-size: 26px;
	letter-spacing: 0.03em;
}

#fp-tabs .tab a > * {
	padding-top: 10px;
}

#fp-tabs .tab a > div > div {
	padding-left: 1.5rem;
}

#fp-tabs .tab a .read-more {
	text-align: left;
	font-size: 14px;
	color: #950d34;
	margin-top: 1.5rem;
	opacity: 1;
}

#fp-tabs .tab.active a .read-more {
	/*display: none;*/
	opacity: 0;
}

#fp-tabs .tab a svg {
	width: 80px;
	max-height: 60px;
}

#fp-tabs .tab a .read-more svg {
	max-width: 16px;
	margin-left: 1rem;
	height: 25px;
}

#fp-tabs .tab-content-wrapper {
	padding: 1.5rem 0.5rem 3rem;
	color: #ffffff;
	background-color: #950d34;
}

#fp-tabs .tab-no {
	text-align: center;
}

#fp-tabs .tab-no span {
	font-size: 52px;
	font-weight: 700;
	color: #f5ab3b;
	font-family: 'Montserrat', serif;
	line-height: 0.7;
	letter-spacing: 0.03em;
}

#fp-tabs .tab-content-wrapper .flickity-viewport {
	min-height: 381px;
}

.slide {
	width: 100%;
}

.slide img {
	display: block;
}

#page .flickity-prev-next-button {
	top: 100%;
	width: 30px;
	height: 30px;
	border-radius: 0%;
	transform: translateY(15%);
	background: transparent;
}

#page .flickity-prev-next-button.next {
	right: 0px;
}

#page .flickity-prev-next-button.previous {
	right: 15px;
	left: auto;
}

.col .wrapper {
	padding: 1rem;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	position: relative;
	overflow: hidden;
}

#fp-downloads .wrapper {
	background-position: right bottom;
	background-repeat: no-repeat;
	background-size: 98%;
	justify-content: space-between;
	background-color: #fff;
	min-height: 364px;
}

#fp-downloads .wrapper:hover {
	background-size: 100%;
}

#fp-downloads .share__link {
	display: flex;
	align-content: center;
	align-items: center;
}

#fp-downloads .share__link i {
	height: 20px;
}

#sp-widget .wrapper {
	background-color: #950d34;
}

#commodities-widget {
	margin-top: 0.5rem;
	padding-top: 1rem;
	border-top: 1px solid #f5ab3b;
	height: 150px;
}

#news-widget {
	margin: 0rem -2rem 1.5rem;
}

#news-widget iframe {
	height: 220px;
}

#sp-widget a span {
	font-size: 14px;
	font-weight: 700;
	margin-right: 1rem;
	display: inline-block;
}

.related-content .col {
	padding-bottom: 1rem;
}

.related-content .wrapper {
	min-height: 500px;
	padding: 30px;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
}

.related-content .wrapper .entry-link i {
	height: 25px;
}

.related-content .grid-2 .wrapper {
	min-height: 370px;
}

.related-content .wrapper > .inner {
	color: #ffffff;
	background-color: rgba(149, 13, 52, 0.8);
	padding: 1rem;
	margin-top: auto;
	position: relative;
	max-width: 330px;
	min-height: 240px;
}

.related-content .inner .entry-content p:last-of-type {
	margin: 0rem;
}

.related-content .wrapper h3 {
	color: #f5ab3b;
	margin-bottom: 1rem;
}

.related-content .wrapper .entry-link {
	margin-top: auto;
}

.related-content .wrapper .entry-link span {
	color: #f5ab3b;
	font-size: 14px;
	font-weight: 700;
	margin-right: 2rem;
	display: inline-block;
}

.related-wrapper {
	margin: 0rem -0.5rem;
}

.related-wrapper .slideshow .slide {
	width: 33.333%;
	min-height: 100%;
	padding: 0 0.5rem 2rem;
}

#page .related-wrapper .flickity-prev-next-button {
	top: 40%;
}

.related-wrapper .flickity-prev-next-button .flickity-button-icon {
	position: absolute;
	left: 0%;
	top: 0%;
	width: 100%;
	height: 100%;
}

#page .related-wrapper .flickity-prev-next-button.next {
	right: -2rem;
}

#page .related-wrapper .flickity-prev-next-button.previous {
	right: auto;
	left: -2rem;
}

.related-wrapper .flickity-page-dots {
	display: none;
}

/* 
GENERAL PAGE
-----------------------------------------------------
*/
.page-header {
	padding-top: 5rem;
	padding-bottom: 5rem;
	position: relative;
	justify-content: center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 345px;
}

.page-header .overlay {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.4);
}

.home .page-header {
	height: auto;
}

.page-header:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-color: #000;
	opacity: 0.3;
}

.page-header header {
	position: relative;
}

.page-header header p {
	font-size: 18px;
	font-weight: 700;
	color: #f5ab3b;
	margin-bottom: 1rem;
	text-transform: uppercase;
}

.page-header header p.page-subtitle {
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 1rem;
	text-transform: none;
}

.page-header header .page-title {
	font-size: 42px;
	font-family: 'Montserrat', serif;
	font-weight: 700;
	color: #fff;
	margin: 0px;
	text-transform: unset;
	letter-spacing: 0.03em;
}

#side-menu {
	background-color: #fff;
	position: relative;
}

#side-menu:after {
	content: '';
	background-color: #a3a3a3;
	position: absolute;
	height: 1px;
	width: 100vw;
	left: 0px;
	top: 50px;
}

.page-siblings .page_item_has_children > a,
.search-results .page-siblings .pagenav,
.search-no-results .page-siblings .pagenav {
	line-height: 50px;
	text-align: center;
	font-size: 18px;
	font-weight: 700;
	color: #950d34;
	text-transform: uppercase;
	display: block;
}

.page-siblings .page_item_has_children > a i {
	display: none;
}

.search-results .page-siblings .page_item a i,
.search-no-results .page-siblings .page_item a i {
	display: inline;
	line-height: 20px;
}

.page-siblings .page_item_has_children ul,
.search-results .page-siblings .pagenav ul,
.search-no-results .page-siblings .pagenav ul {
	margin: 0px;
	padding: 0px;
}

.page-siblings .page_item_has_children li a,
.search-results .page-siblings .page_item a,
.search-no-results .page-siblings .page_item a {
	font-size: 16px;
	font-weight: 700;
	color: #383838;
	padding: 0.75rem 3.5rem 0.75rem 1.5rem;
	text-align: left;
	display: block;
	text-transform: uppercase;
	position: relative;
	line-height: 1.6;
}

.page-siblings .page_item_has_children li a i,
.search-results .page-siblings .page_item a i,
.search-no-results .page-siblings .page_item a i {
	position: absolute;
	right: 1.5rem;
	top: 50%;
	transform: translateY(-50%);
}

.breadcrumbs {
	line-height: 50px;
	margin-bottom: 4rem;
}

.breadcrumbs a,
.breadcrumbs span {
	font-size: 12px;
	font-weight: 700;
	color: #8e8d8d;
	text-transform: uppercase;
}

.breadcrumbs a {
	margin-right: 1rem;
}

.breadcrumbs a svg {
	margin-left: 1rem;
	max-width: 7px;
	margin-top: -3px;
	height: 25px;
}

.accordian {
	border-top: 1px solid #f5ab3b;
	padding: 0rem;
}

.accordian:last-of-type {
	border-bottom: 1px solid #f5ab3b;
}

.accordian .accordian-header {
	position: relative;
	padding: 1.5rem;
	justify-content: space-between;
	align-items: center;
}

.accordian h3,
.gallery h3 {
	font-size: 24px;
	margin-bottom: 0rem;
	line-height: 1.3;
}

.accordian .person-title,
.accordian .person-company {
	font-size: 20px;
	line-height: 1.3;
}

.accordian .person-title {
	font-weight: 700;
}

.accordian .person-title span {
	font-weight: 400;
}

.iphone .accordian .open-close i {
	transform: translateY(-10px);
}

.accordian .open-close:before,
.gallery .open-close:before,
.doc-group .open-close:before {
	content: 'Read more';
	margin-right: 1rem;
	color: #950d34;
	font-weight: 700;
}

.page-template-template-people .accordian .open-close:before {
	content: 'Read biography';
}

.accordian.accordian-active .open-close:before,
.doc-group .accordian-active .open-close:before,
.page-template-template-people .accordian.accordian-active .open-close:before {
	content: 'Close';
}

.accordian .accordian-header:hover {
	cursor: pointer;
}

.accordian .open-close svg,
.gallery .open-close svg,
.doc-group .open-close svg {
	transform: rotate(90deg);
}

.accordian .accordian-content,
.hidden-content {
	display: none;
	padding-bottom: 1px;
	padding: 0rem 1.5rem 1px;
}

.accordian .accordian-content [class*='col-'] {
	padding-bottom: 1.5rem;
}

.gallery {
	margin-bottom: 3em;
}

.gallery h3 {
	margin-bottom: 1rem;
}

.gallery .open-close,
.doc-group .open-close {
	display: block;
	text-align: center;
	background-color: #fff;
	padding: 1rem;
}

.gallery .open-close:before {
	content: 'View full gallery';
	color: #383838;
}

.gallery.accordian-active .open-close:before {
	content: 'Close gallery';
}

.doc-group .open-close:before {
	content: 'Show all';
	color: #383838;
}

.doc-group .accordian-active .open-close:before {
	content: 'Show less';
}

/* 
WYSIWYG CONTENT
-----------------------------------------------------
*/
.wysiwyg-content h2,
.wysiwyg-content h3 {
	margin-bottom: 1.5rem;
	line-height: unset;
	text-transform: unset;
}

.wysiwyg-content h3 {
	font-size: 24px;
}

.wysiwyg-content ul {
	margin-bottom: 1.5rem;
}

.wysiwyg-content ul li {
	background-image: url(images/arrow-right.svg);
	background-repeat: no-repeat;
	padding-left: 1rem;
	background-size: 8px;
	background-position-y: 5px;
	margin-bottom: 0.5rem;
}

.wysiwyg-content ol {
	margin: 0rem 0rem 1.5rem;
	padding: 0rem 0rem 0rem 2rem;
	counter-reset: item;
}

.wysiwyg-content ol li {
	margin-bottom: 0.5rem;
}

.wysiwyg-content ol li:before {
	content: counter(item) '. ';
	counter-increment: item;
	color: #950d34;
	padding-right: 0.5rem;
	margin-left: -1.6rem;
	font-weight: 700;
}

.aaz_download_link {
	margin-bottom: 1.5rem;
}

.aaz_download_link h5 {
	margin-top: 0;
	margin-bottom: 0rem;
	float: left;
	font-size: 21px;
	font-weight: 700;
	color: #383838;
	max-width: calc(100% - (235px + 2rem));
}

.aaz_download_link a {
	float: right;
	width: auto;
}

.tablepress caption {
	display: none;
}

.roboto-font {
	font-family: 'Roboto', sans-serif !important;
}

.noticia-font {
	font-family: 'Montserrat', serif !important;
}

/* 
HAS WIDGETS
-----------------------------------------------------
*/
.widget-embed {
	margin-bottom: 1.5rem;
	padding: 1rem;
}

.widget-embed.bg-maroon {
	background-color: #950d34;
}

.widget-embed.bg-gold {
	background-color: #f5ab3b;
}

.widget-embed.bg-white {
	background-color: #fff;
}

.widget-embed.bg-none {
	padding: 0rem;
}

#share_price_widget iframe {
	height: 100%;
}

#share_price_table iframe {
	height: 280px;
}

#share_price_chart iframe {
	height: 800px;
}

#rns iframe {
	height: 1020px;
}

#register iframe {
	height: 1160px;
}

#commodities_widget iframe {
	height: 125px;
}

#shares-widget {
	min-height: 200px;
}

/* 
ABOUT US
-----------------------------------------------------
*/
#about-contract-areas .area-img {
	display: block;
}

#about-contract-areas .area-info h3 {
	margin-bottom: 1rem;
}

#about-contract-areas .area-info .wysiwyg-content {
	margin-bottom: 2rem;
}

/* 
OPERATIONS
-----------------------------------------------------
*/
.gallery .col {
	position: relative;
}

.gallery .overlay {
	padding: 1rem;
	position: absolute;
	left: 0.5rem;
	top: 0px;
	height: calc(100% - 1.5rem);
	width: calc(100% - 1rem);
	background-color: rgba(149, 13, 52, 0.8);
	justify-content: space-between;
}

.gallery .overlay p {
	font-size: 20px;
	color: #fff;
	font-weight: 700;
}

.gallery .zoom svg {
	max-width: 20px;
}

.gallery .zoom span {
	font-size: 14px;
	color: #f5ab3b;
	font-weight: 700;
	margin-left: 0.5rem;
}

.gallery .zoom > * {
	vertical-align: middle;
}

.aaz-lightbox .fancybox-slide--image {
	overflow: hidden;
	padding: 5rem;
}

.aaz-lightbox .fancybox-infobar,
.aaz-lightbox .fancybox-navigation .fancybox-button,
.aaz-lightbox .fancybox-toolbar {
	opacity: 1;
	visibility: visible;
}

.aaz-lightbox .fancybox-toolbar {
	right: 1rem;
	top: 1rem;
}

.aaz-lightbox .fancybox-button {
	background: transparent;
	padding: 5px;
}

.aaz-lightbox .fancybox-infobar {
	color: #fff;
	font-size: 20px;
	left: 50%;
	padding: 0 10px;
	top: auto;
	bottom: 1rem;
	transform: translateX(-50%);
	font-family: 'Roboto', sans-serif;
}

.aaz-lightbox .fancybox-caption {
	background: transparent;
	bottom: auto;
	font-size: 20px;
	font-weight: 400;
	color: #fff;
	font-family: 'Roboto', sans-serif;
	padding: 75px 44px 25px;
}

.aaz-lightbox .fancybox-navigation .fancybox-button div {
	padding: 0px;
}

.aaz-lightbox .fancybox-navigation .fancybox-button {
	padding: 7px;
}

.aaz-lightbox .fancybox-navigation .fancybox-button--arrow_right svg {
	transform: rotate(180deg);
}

/* 
AZERBAIJAN
-----------------------------------------------------
*/
.google-map {
	min-height: 600px;
}

.gm-style-iw {
	/*top: 0px !important;*/
	left: 25px !important;
	/*width: 300px !important;*/
	/*padding: 0rem !important;*/
}

.map-info {
	padding: 0.5rem 0rem !important;
}

.map-info h3.block-title {
	font-size: 24px !important;
	margin: 1rem 0rem 0.5rem !important;
}

.map-info img {
	display: block;
	margin-bottom: 0.5rem;
	max-width: 100% !important;
}

.map-info a {
	/*color: $primary;*/
	font-weight: 700;
}

.map-info a svg {
	margin-left: 0.5rem;
}

.gm-ui-hover-effect {
	background-image: url(images/map-close.svg) !important;
	background-repeat: no-repeat !important;
	background-size: 35% !important;
	background-position: center center !important;
}

.gm-ui-hover-effect img {
	display: none !important;
}

/*.gm-ui-hover-effect:before {
    content: 'X';
}*/
/* 
INVESTORS
-----------------------------------------------------
*/
.investor-block > div {
	border-bottom: 10px solid #f5ab3b;
	padding-bottom: 1rem;
}

.investor-block p {
	font-size: 24px;
}

.investor-block p.block-title {
	font-size: 80px;
	margin-top: auto;
}

.investor-block .suffix {
	text-transform: lowercase;
	margin-left: -1rem;
}

.downloads,
.media .video .doc-info {
	padding: 1.5rem;
	background-color: #fff;
	flex-grow: 1;
}

.downloads .aaz_download_link,
.articles > div {
	border-bottom: 1px solid #f5ab3b;
	padding: 0rem 0.5rem 1rem;
	margin-bottom: 1rem;
	justify-content: space-between;
	align-items: flex-start;
}

.aaz_download_link .dl-title-date h5 {
	max-width: 100%;
}

.articles .dl-button {
	min-width: 100px;
	margin-left: 2rem;
	font-weight: 700;
}

.downloads .aaz_download_link:last-of-type {
	border-bottom: 0px solid #f5ab3b;
	padding-bottom: 0rem;
	margin-bottom: 0rem;
}

.downloads .aaz_download_link strong {
	display: block;
	color: #950d34;
	font-weight: 700;
	text-transform: uppercase;
	font-family: 'Montserrat', serif;
	letter-spacing: 0.03em;
}

.downloads .aaz_download_link a {
	display: inline;
}

.articles .flexbox {
	margin: 0rem;
	padding: 1.5rem 0.5rem 1.5rem;
}

.articles .flexbox:first-of-type {
	border-top: 1px solid #f5ab3b;
}

.articles .block-title {
	font-size: 24px;
}

.articles p {
	margin: 1.5rem 0rem 0rem;
}

.articles a span,
.media a span,
.media-press .press a span {
	font-size: 14px;
	color: #950d34;
	margin-right: 1rem;
	font-weight: 700;
}

#secondary #fp-downloads .col {
	margin-bottom: 2rem;
	min-height: 270px;
}

#secondary #fp-downloads .wrapper {
	background-size: 100%;
}

.doc-group {
	margin-bottom: 4rem;
}

.doc-group h2 {
	margin-bottom: 0rem;
}

.doc-group .tabs {
	background-color: #fff;
	border-top: 1px solid #950d34;
	border-bottom: 1px solid #950d34;
}

.tab {
}

.doc-group .tab a {
	font-size: 16px;
	color: #383838;
	font-weight: 700;
	padding: 0.5rem 0.2rem;
	text-align: center;
	display: block;
}

.doc-group .tab.active a,
.doc-group .tab a:hover {
	background-color: #f5ab3b;
	color: #950d34;
}

.doc-group .doc,
.media .press {
	margin: 0rem;
	padding: 1.5rem;
	border-bottom: 1px solid #950d34;
}

.doc-group .doc-image img {
	max-width: 150px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 3rem;
}

.doc-group .doc strong,
.media strong {
	color: #950d34;
	font-family: 'Montserrat', serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.doc-group .doc h3,
.media h3 {
	margin: 0.5rem 0rem 35px;
	font-size: 24px;
}

.doc-group .doc .dl-button {
	margin-top: auto;
	width: 260px;
}

.doc-group .doc .doc-info {
	max-width: calc(100% - 280px);
}

.doc-group .doc.no-image .dl-button {
	margin-top: unset;
}

.doc-group-no_images,
.doc-group-no_tabs,
.media-press {
	border-bottom: 1px solid #950d34;
}

.doc-group-no_tabs.doc-group .doc,
.media-press .press,
.no-image.doc {
	justify-content: space-between;
}

.doc-group-no_tabs.doc-group .doc .dl-button,
.media-press .press .dl-button,
.doc.no-image .dl-button {
	margin-top: 0rem;
	justify-content: center;
}

.doc-group-no_tabs.doc-group .doc h3,
.media-press h2,
.media-press .press h3,
.no-image.doc h3 {
	margin: 0rem;
}

.doc-group-no_tabs.doc-group h2,
.media-press h2 {
	border-bottom: 2px solid #950d34;
}

.media h3 {
	margin-bottom: 2rem;
}

.media img {
	display: block;
}

.media .video .download-doc {
	position: relative;
}
.media .video .download-doc:hover .svg__icon svg {
	transform: scale(1.1);
	transition: all 0.3s ease;
}
.media .video .download-doc .svg__icon {
	width: 50px;
	height: 50px;
	right: 15px;
	top: 15px;
	position: absolute;
}
.media .video .download-doc .svg__icon svg {
	transition: all 0.3s ease;
}

.media .video .doc-info a svg {
	max-width: 25px;
	margin-right: 0.5rem;
}

.media .video a span {
	margin-right: 0rem;
	font-weight: 700;
}

.media-videos {
	margin-bottom: 3rem;
}
.media-videos .video {
	display: flex;
	flex-direction: column;
}

.media-press .press .doc-info {
	flex-basis: 75%;
}

#supsystic-table-3_wrapper {
	margin-bottom: 1.5rem;
}

#supsystic-table-3_wrapper table.dataTable.no-footer {
	border-bottom: none;
}

#supsystic-table-3_wrapper table.dataTable thead th,
#supsystic-table-3_wrapper table.dataTable thead td,
#supsystic-table-3_wrapper table.dataTable.row-border tbody tr td {
	border-bottom: 2px solid #f5ab3b;
}

#supsystic-table-3_wrapper table.dataTable.no-footer {
	border-bottom: none;
}

/* 
SEARCH
-----------------------------------------------------
*/
h2.search-title,
.search-results #primary article h2,
.search-no-results #primary article h2 {
	border: none;
}

#main-search {
	margin-bottom: 4rem;
}

#main-search .search-field {
	background-color: #fff;
	width: 100%;
}

#main-search form {
	float: none;
	display: block;
	width: 100%;
}

#main-search form > label {
	width: calc(100% - 105px);
}

#main-search button {
	float: right;
}

#main-search button span {
	display: inline-block;
	transform: translateY(2px);
}

.search-results #primary article,
.search-no-results #primary article {
	padding: 1.5rem;
	border-bottom: 1px solid #f5ab3b;
	background-color: #fff;
	margin: 0px;
}

.search-results #primary article:first-of-type,
.search-no-results #primary article:first-of-type {
	border-top: 1px solid #f5ab3b;
}

.search-results #primary article h2,
.search-no-results #primary article h2 {
	margin: 0rem 0rem 1.5rem;
}

.search-results #primary article a,
.search-no-results #primary article a {
	color: #950d34;
}

.search-results #primary .entry-footer a,
.search-no-results #primary .entry-footer a {
	font-size: 14px;
}

.search-results #primary article a span,
.search-no-results #primary article a span {
	margin-right: 1rem;
	font-weight: 700;
}

.search-excerpt {
	color: #950d34;
	text-decoration: underline;
	font-weight: 700;
}

/* 
CONTACTS
-----------------------------------------------------
*/
.page-template-template-contacts .breadcrumbs {
	position: relative;
}

.page-template-template-contacts .breadcrumbs:before {
	content: '';
	height: 2px;
	width: 200vw;
	left: -100vw;
	bottom: 0px;
	position: absolute;
	background-color: #a3a3a3;
}

.contact-tabs .tab-container {
	background-color: #fff;
}

.contact-tabs .tabs {
	background-color: #efefef;
}

.contact-tabs .tab a {
	background-color: #950d34;
	color: #fff;
	font-size: 24px;
	text-align: center;
	padding: 1rem;
	display: block;
}

.contact-tabs .tab.active a,
.contact-tabs .tab a:hover {
	background-color: #fff;
	color: #950d34;
}

.contact-tabs .tab-content-wrapper {
	background-color: #fff;
}

.contact-block {
	padding: 70px 1.5rem 1.5rem;
}

.contact-block h3 {
	margin-bottom: 1rem;
	font-size: 24px;
}

.contact-block p {
	margin-bottom: 0rem;
}

.contact-block p.contact-company {
	font-size: 18px;
	font-weight: 700;
}

.contact-tabs .tab-content-wrapper .col,
.contact-tabs .tab-content-wrapper [class*='col-'] {
	padding-bottom: 0rem;
}

/* 
FORMS
-----------------------------------------------------
*/
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 {
	color: #383838;
	border: 0px solid #dbdbdb;
	border-radius: 0px;
	padding: 3px 5px;
	font-size: 16px;
	font-family: 'Roboto', sans-serif;
	letter-spacing: 0.4px;
	background-color: #efefef;
	line-height: 1.6;
}

button,
input[type='button'],
input[type='reset'],
input[type='submit'] {
	border: none;
	border-radius: 0px;
	background-color: #950d34;
	color: #fff;
	font-size: 16px;
	line-height: 1.6;
	padding: 0px;
}

#contact-form {
	padding-bottom: 5rem;
}

.form-inputs > *,
.form-inputs input[type='text'],
.form-inputs input[type='email'] {
	display: block;
	width: 100%;
	margin-bottom: 1.5rem;
	border: 1px solid #8e8d8d;
	background-color: #fff;
	font-size: 14px;
	padding: 0.5rem 1rem;
}

.form-inputs textarea {
	min-height: 200px;
}

#contact-form .form-inputs .has-error {
	border: 1px solid #950d34;
}

.form-feedback {
	margin-top: 1.5rem;
	padding: 1.5rem;
	text-align: center;
	background-color: #f5ab3b;
	color: #950d34;
	font-weight: 700;
	display: none;
}

.form-feedback.feedback-error {
	background-color: #950d34;
	color: #fff;
}

/* 
FOOTER
-----------------------------------------------------
*/
.site-footer {
	background-color: #630a2c;
}

#footer-blocks {
	padding: 2rem 0rem;
	margin: 0 -2rem;
}

.footer-menu {
	margin-bottom: 2rem;
	padding: 0 2rem 2rem;
}

.footer-menu h4 {
	font-size: 24px;
	font-weight: 700;
	margin: 0rem 0rem 1rem;
	padding: 0rem 0rem 0rem;
	border-bottom: 1px solid #fff;
	color: #fff;
	text-transform: uppercase;
}

.footer-menu li {
	margin: 0.3rem 0 0.3rem 0rem;
}

.footer-menu li a {
	color: #fff;
	display: block;
	text-transform: uppercase;
}

.footer-menu li a i {
	float: right;
	height: 24px;
}

#footer-menu-contact p {
	color: #fff;
}

#footer-menu-contact .bigger {
	font-size: 24px;
	font-weight: 700;
	color: #f5ab3b;
	text-transform: uppercase;
	margin-top: auto;
}

.arrow svg {
	max-width: 10px;
	height: 15px;
}

#twitter-link svg {
	max-width: 15px;
}

.site-info {
	border-top: 1px solid #f5ab3b;
	padding: 1rem 0rem;
	margin: 0rem 0rem;
	color: #f5ab3b;
}

.site-info .flexbox {
	justify-content: space-between;
}

.site-info p {
	margin: 0px;
}

.site-info-links a {
	margin: 0rem 0.4rem;
}

.site-info-links a:last-of-type {
	margin-right: 0rem;
}

/* 
RESPONSIVE
-----------------------------------------------------
*/
/* Laptop ----------- */
@media only screen and (max-width: 1300px) {
	.main-navigation li a {
		font-size: 15px;
		padding: 1rem 0.3rem;
	}
}
/* Large iPad landscape ----------- */
@media only screen and (max-width: 1100px) {
	.main-navigation li a {
		font-size: 14px;
		padding: 1rem 0.2rem;
	}
}
/* iPad landscape and below ----------- */
@media only screen and (max-width: 1024px) {
	/* HEADER */
	.site-header {
		z-index: 10;
		max-height: 100vh;
		overflow: scroll;
		-webkit-overflow-scrolling: touch;
		padding-left: 0rem;
		padding-right: 0rem;
	}

	/*.toggled .site-header {
        position: relative;
    }*/
	.site-header .inner {
		position: relative;
		padding-left: 1rem;
		padding-right: 1rem;
		max-height: 200vh;
	}

	.menu-toggle,
	.toggled .mobile-menu,
	.mobile-menu .header-search,
	.site-header .main-navigation ul .focus ul,
	.main-navigation ul {
		display: block;
	}

	.mobile-menu,
	.main-navigation,
	.header-search,
	.main-navigation ul ul .parent-title,
	.site-header .main-navigation ul ul {
		display: none;
	}

	.menu_class {
		padding-top: 0rem;
	}

	/*.menu_class div {
        display: block !important;
    }*/
	.menu_class > li > a {
		padding-right: 1rem;
	}

	.menu_class > li > a i {
		display: inline-block;
	}

	.site-branding p {
		padding: 0rem 0rem;
	}

	.toggled .menu-toggle {
		outline: none;
	}

	.menu-toggle {
		border: none;
		border-color: transparent;
		border-radius: 0px;
		background: transparent;
		color: rgba(0, 0, 0, 0.8);
		font-size: 12px;
		font-size: 0.75rem;
		line-height: 1;
		padding: 0rem;
		display: inline-block;
		height: 100%;
		margin-right: 0rem;
		position: absolute;
		width: 70px;
		right: 0px;
		top: 0;
		margin-right: 0rem;
	}

	.menu-toggle svg {
		max-width: 25px;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
	}

	.mobile-menu {
		/*height: 662px;*/
		position: relative;
		width: 100%;
		z-index: 10;
		background-color: #950d34;
		top: 100%;
		left: 0px;
		padding: 1rem;
		/*-webkit-transform: translateX(-100%);
        transform: translateX(-100%);*/
	}

	.main-navigation li {
		float: none;
		display: block;
		position: unset;
		text-align: left;
	}

	.menu_class > li {
		border-bottom: 2px solid #fff;
	}

	.menu_class > li:last-of-type {
		margin-bottom: 1.5rem;
	}

	.main-navigation li a {
		color: #fff;
		padding: 0.75rem 0rem;
		display: block;
		font-size: 18px;
	}

	.main-navigation ul ul {
		box-shadow: none;
		float: none;
		position: relative;
		top: auto;
		left: auto;
		border-top: 2px solid #fff;
		padding: 1rem 0.5rem;
	}

	#page .sub-menu .central-col,
	.sub-menu .central-col .flexbox {
		padding: 0px;
	}

	.sub-menu .central-col .flexbox {
		width: 100%;
		max-width: 100%;
		display: block;
		flex-basis: 100%;
		max-height: 100%;
	}

	.main-navigation ul li > ul li {
		display: block;
		margin-bottom: 0rem;
		float: none;
		width: 100%;
		padding-right: 1rem;
	}

	.main-navigation ul li > ul .menu-item a {
		padding: 0.5rem 0rem;
		font-size: 14px;
		display: block;
	}

	.main-navigation li a i {
		float: right;
	}

	.main-navigation .arrow svg {
		max-width: 7px;
	}

	.menu_class > li > a svg * {
		fill: #f5ab3b;
	}

	.menu_class > li > a svg {
		transform: rotate(90deg);
	}

	.menu_class > li.focus > a svg {
		transform: rotate(0deg);
	}

	.mobile-menu .search-box form {
		float: none;
	}

	.mobile-menu .search-box form label {
		width: calc(100% - 46px);
	}

	.mobile-menu .search-box form label input {
		width: 100%;
	}

	/* WIDGETS */
	.page-child #shares-widget {
		height: 250px;
	}

	#rns iframe {
		height: 1470px;
	}

	/* GENERAL */
	.related-wrapper {
		margin: 0rem 0rem;
		padding: 0rem 1.5rem;
	}
}
/* iPads (landscape) ----------- */
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
	.ft-tabs-mobile {
		display: none;
	}
}
/* iPads (portrait) ----------- */
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
	/* FRONT PAGE */
	#fp-tabs .tabs .tab a {
		padding: 1rem 1.5rem;
	}

	#fp-tabs .tabs .tab a i {
		display: none;
	}

	#fp-tabs .tab a > div > div {
		padding-left: 0rem;
	}

	#fp-downloads .col {
		min-height: 300px;
	}

	#fp-downloads #sp-widget {
		flex-basis: 100%;
		max-width: 100%;
		padding-bottom: 1rem;
	}

	.related-wrapper .slideshow .slide {
		width: 50%;
	}
}
/* all tablets portrait and phones ----------- */
@media only screen and (max-width: 768px) {
	/* FRONT PAGE */
	.ft-tabs-desktop {
		display: none;
	}

	.page-header header .page-title br {
		display: none;
	}

	#fp-tabs {
		margin: 0rem -1rem;
	}

	#fp-tabs .tab-content-wrapper {
		background-color: #fff;
		border-bottom: 1px solid #a0a0a0;
		padding: 1rem;
	}

	#fp-tabs .tab-content-wrapper .tab-content,
	#fp-tabs .tab-content-wrapper a .read-more span,
	#fp-tabs .tab-content h2 {
		display: none;
	}

	#fp-tabs .tab-content-wrapper a.flexbox {
		padding: 0rem;
		font-weight: 700;
		text-align: left;
		background-color: transparent;
		height: 100%;
		position: relative;
		width: 100%;
		align-items: center;
	}

	#fp-tabs .tab-content-wrapper a .tab-title {
		font-family: 'Montserrat', serif;
		text-transform: uppercase;
		line-height: 1.3;
		color: #383838;
		font-size: 20px;
		max-width: calc(100% - 25px);
	}

	#fp-tabs .tab-content-wrapper a > * {
		padding-top: 0px;
	}

	#fp-tabs .tab-content-wrapper a > div > div {
		padding-left: 1rem;
	}

	#fp-tabs .tab-content-wrapper a .read-more {
		margin-top: 0rem;
		position: absolute;
		top: 50%;
		right: 0rem;
		padding: 0rem;
		transform: translateY(-50%);
	}

	#fp-tabs .tab.active a .read-more {
		/*display: none;*/
		opacity: 0;
	}

	#fp-tabs .tab-content-wrapper a svg {
		width: 45px;
		/*max-height: 55px;*/
	}

	#fp-tabs .tab-content-wrapper a .read-more svg {
		max-width: 16px;
		margin-left: 0rem;
	}

	#fp-tabs .tab-content {
		padding-top: 2rem;
	}

	#fp-tabs .tab-content-wrapper.accordian-active {
		color: #ffffff;
		background-color: #950d34;
		border-bottom: 1px solid #950d34;
	}

	#fp-tabs .tab-content-wrapper.accordian-active a .tab-title {
		color: #fff;
	}

	#fp-tabs .tab-content-wrapper.accordian-active a svg * {
		fill: #f5ab3b;
	}

	#fp-tabs .tab-content-wrapper.accordian-active a .read-more svg {
		transform: rotate(180deg);
	}

	#fp-downloads .col:not(#sp-widget) {
		min-height: 360px;
		padding-top: 1rem;
	}

	/* GENERAL PAGES */
	#news-widget {
		margin: 0rem 0rem 1.5rem;
	}

	#secondary {
		display: none;
	}

	.breadcrumbs {
		margin-bottom: 2rem;
		position: relative;
	}

	.breadcrumbs:after {
		content: '';
		background-color: #a3a3a3;
		position: absolute;
		height: 1px;
		width: 100vw;
		left: -1rem;
		top: 50px;
	}

	.page-siblings .page_item_has_children li a,
	.search-results .page-siblings .page_item a,
	.search-no-results .page-siblings .page_item a {
		padding: 0.75rem 2rem 0.75rem 1rem;
	}

	.page-siblings .page_item_has_children li a i,
	.search-results .page-siblings .page_item a i,
	.search-no-results .page-siblings .page_item a i {
		right: 1rem;
	}

	/*.accordian {
        padding: 1rem 1rem 0rem;
    }

    .accordian .open-close {
        right: -0.5rem;
    }*/
	#page .contract-areas-block .col {
		padding-bottom: 1rem;
	}

	#page .contract-areas-block .col:last-of-type {
		padding-bottom: 0rem;
	}
}
/* all phones ----------- */
@media only screen and (max-width: 767px) {
	/* GENERAL PAGES */
	.home .page-header {
		min-height: 0px;
	}

	.page-header {
		padding-top: 2rem;
		padding-bottom: 2rem;
		min-height: 0px;
	}

	.page-header header p {
		font-size: 16px;
	}

	.page-header header .page-title {
		font-size: 24px;
		font-family: 'Montserrat', serif;
		font-weight: 700;
		color: #fff;
		margin: 0px;
		text-transform: unset;
		letter-spacing: 0.03em;
	}

	.block-title,
	.wysiwyg-content h2,
	.wysiwyg-content h3 {
		font-size: 20px;
	}

	/* GENERAL */
	.block {
		margin-top: 1rem;
		margin-bottom: 2rem;
	}

	h2.block-title {
		margin-bottom: 1rem;
	}

	.page-header {
		padding-top: 2rem;
		padding-bottom: 2rem;
		min-height: 300px;
	}

	#about-contract-areas .area-img {
		display: block;
		padding-bottom: 1rem;
	}

	#about-contract-areas .area-info {
		padding-bottom: 4rem;
	}

	#about-contract-areas .area-link {
		text-align: center;
	}

	.related-content .wrapper {
		min-height: 430px;
	}

	.block-title,
	.wysiwyg-content h2,
	.wysiwyg-content h3 {
		font-size: 18px;
	}

	.accordian .accordian-header {
		padding: 1rem;
	}

	.accordian .open-close:before,
	.gallery .open-close:before,
	.doc-group .open-close:before,
	.page-template-template-people .accordian .open-close:before,
	.accordian.accordian-active .open-close:before,
	.doc-group .accordian-active .open-close:before,
	.page-template-template-people
		.accordian.accordian-active
		.open-close:before {
		content: '';
		margin-right: 0rem;
	}

	.accordian h3 {
		padding-right: 1rem;
	}

	.accordian h3,
	.gallery h3 {
		font-size: 16px;
		margin-bottom: 0rem;
	}

	.accordian .person-title,
	.accordian .person-company {
		font-size: 14px;
	}

	/*.accordian .open-close {
        right: -1rem;
        padding: 1rem;
    }*/
	.person-image {
		text-align: center;
	}

	.related-wrapper {
		margin: 0rem -0.5rem;
		padding: 0rem;
	}

	.related-wrapper .slideshow .slide {
		width: 100%;
	}

	.related-wrapper .flickity-page-dots {
		bottom: -10px;
		display: block;
	}

	.related-wrapper .flickity-page-dots .dot {
		width: 15px;
		height: 15px;
		margin: 0 5px;
		background: #f5ab3b;
		opacity: 1;
	}

	.related-wrapper .flickity-page-dots .dot.is-selected {
		background: #950d34;
	}

	.gallery .open-close:before {
		content: 'View full gallery';
		margin-right: 1rem;
	}

	.gallery .hidden-content {
		padding: 0rem 0rem 1px;
	}

	.aaz_download_link h5 {
		margin-bottom: 0.5rem;
		float: none;
		font-size: 18px;
		color: #383838;
		max-width: 100%;
	}

	.aaz_download_link a {
		float: none;
		/*width: auto;*/
	}

	.yellow-button i {
		float: right;
	}

	.breadcrumbs a {
		margin-right: 0.5rem;
	}

	.breadcrumbs a svg {
		margin-left: 0.5rem;
	}

	.aaz-lightbox .fancybox-slide--image {
		overflow: hidden;
		padding: 1rem;
	}

	#investor-blocks {
		margin-bottom: 0rem;
	}

	.investor-block p {
		font-size: 18px;
		margin-bottom: 0px;
	}

	.investor-block p.block-title {
		font-size: 60px;
	}

	.downloads .aaz_download_link {
		display: block;
		padding-left: 0rem;
		padding-right: 0rem;
	}

	.downloads .aaz_download_link a {
		display: block;
	}

	.doc-group h2 {
		margin-bottom: 0rem;
	}

	.doc-group select {
		font-size: 18px;
		font-weight: 700;
		padding: 0.5rem;
		text-align: center;
		display: block;
		background-color: #f5ab3b;
		color: #950d34;
		font-family: 'Roboto', sans-serif;
		width: 100%;
		border: none;
		-webkit-appearance: none;
		position: relative;
		background-image: url(images/arrow-down.svg);
		background-repeat: no-repeat;
		background-position: 95% center;
		background-size: 12px;
		border-radius: 0px !important;
		border-bottom: 1px solid #950d34;
	}

	.doc-group .tabs {
		display: none;
	}

	.doc-group .doc,
	.media .press {
		padding: 1.5rem 0rem;
	}

	.doc-group .doc {
		display: block;
		text-align: center;
	}

	.doc-group .doc.no-image,
	.doc-group-no_tabs.doc-group .doc,
	.media-press .press,
	.no-image.doc {
		text-align: left;
	}

	.doc-group .doc .doc-info {
		max-width: 100%;
	}

	.doc-group .doc-image img {
		max-width: 150px;
		margin-right: 0rem;
	}

	.doc-group .doc h3,
	.media h3 {
		margin: 0.8rem 0rem 1.2rem;
		font-size: 18px;
	}

	.doc-group .doc .dl-button {
		display: block;
		width: 100%;
	}

	.doc-group .doc strong,
	.media strong {
		font-size: 14px;
	}

	.doc-group .open-close:before {
		content: 'Show all';
		margin-right: 1rem;
	}

	.doc-group .accordian-active .open-close:before {
		content: 'Show less';
		margin-right: 1rem;
	}

	#share_price_widget iframe {
		height: 145px;
	}

	#share_price_table iframe {
		height: 500px;
	}

	#share_price_chart iframe {
		height: 1060px;
	}

	#register iframe {
		height: 2010px;
	}

	#rns iframe {
		height: 1950px;
	}

	#share_price_chart,
	#share_price_table,
	#register,
	#rns {
		margin-bottom: 0rem;
	}

	.articles > div {
		padding: 0rem 0rem 1rem;
	}

	/*.articles p {
        width: calc( 200% - 3rem );
    }*/
	.articles .block-title {
		font-size: 18px;
		margin-bottom: 0px;
	}

	.articles .dl-button {
		margin-left: 0rem;
	}

	.media-press h2 {
		margin-bottom: 0px;
	}

	.media .press,
	.articles .flexbox {
		display: block;
	}

	.media-press .press h3,
	.articles p {
		margin: 1rem 0rem;
	}

	.contact-tabs .accordian {
		border-top: 1px solid #fff;
		background-color: #950d34;
	}

	.contact-tabs .accordian:last-of-type {
		border-bottom: none;
	}

	.contact-tabs .accordian h3 {
		font-size: 20px;
		color: #fff;
	}

	.contact-tabs .accordian.accordian-active {
		background-color: #fff;
		border-top: 1px solid #950d34;
	}

	.contact-tabs .accordian.accordian-active h3 {
		color: #950d34;
	}

	.contact-tabs .accordian.accordian-active svg * {
		fill: #f5ab3b;
	}

	.contact-block {
		padding: 1rem 0rem;
	}

	.contact-tabs .accordian .contact-block h3 {
		font-size: 16px;
		margin-bottom: 1rem;
	}

	#contact-form {
		padding-bottom: 1rem;
	}

	/* WYSIWYG */
	span[style*='font-size: 20px;'] {
		font-size: 18px !important;
	}

	/* FOOTER */
	#colophon {
		text-align: center;
	}

	#footer-menu-contact .bigger {
		font-size: 18px;
	}

	#footer-blocks {
		padding: 2rem 0rem 0rem;
		margin: 0 -2rem;
		justify-content: center;
	}

	#footer-menu-contact h4 {
		display: none;
	}

	.site-info-links {
		margin-bottom: 1rem;
	}

	.site-info .flexbox {
		flex-direction: column-reverse;
	}

	.site-info-links a {
		margin: 1rem 0.4rem;
		display: block;
	}
}
/* smaller phones ----------- */
.table__operations__gedabek .row-1.odd td,
.table__operations__gedabek .row-1.even td,
.table__operations__gedabek .row-2.odd td,
.table__operations__gedabek .row-2.even td {
	background: #950d34;
	color: white;
	text-align: center;
	border-width: 0;
}

.table__operations__gedabek .row-1.odd:hover td,
.table__operations__gedabek .row-1.even:hover td,
.table__operations__gedabek .row-2.odd:hover td,
.table__operations__gedabek .row-2.even:hover td {
	background: #950d34 !important;
}

.table__operations__gedabek .row-1.odd .column-1 {
	border-right: 1px solid white;
}

.table__operations__gedabek .row-1.odd .column-2 {
	border-bottom: 1px solid white;
}

.table__operations__gedabek .row-2.even .column-2 {
	border-right: 1px solid white;
}

/* Style the GDPR Cookie plugin modal */
.has-cookie-bar #catapult-cookie-bar {
	padding: 20px;
	background: white;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
	border-radius: 5px;
}
.has-cookie-bar #catapult-cookie-bar h3 {
	color: #383838;
	margin-bottom: 10px;
	font-family: 'Montserrat', serif;
	text-transform: uppercase;
	margin-top: 0;
}
.has-cookie-bar #catapult-cookie-bar .ctcc-left-side {
	line-height: 20px;
	color: #383838;
	font-weight: 300;
	font-size: 16px;
	padding-bottom: 20px;
	display: block;
}
.has-cookie-bar #catapult-cookie-bar .ctcc-left-side .ctcc-more-info-link {
	color: #950d34;
	padding: 10px 0;
}
.has-cookie-bar #catapult-cookie-bar .ctcc-right-side button {
	-webkit-appearance: none;
	border: 0;
	padding: 10px 20px;
	border-radius: 3px;
	color: white;
	background: #950d34;
	font-size: 16px;
}
.has-cookie-bar #catapult-cookie-bar .ctcc-right-side button:hover {
	cursor: pointer;
	background: #ac0f3c;
}

.gform_wrapper form .validation_error {
	background: tomato;
	color: white;
	padding: 15px;
	margin-bottom: 20px;
	text-align: center;
}

.gform_wrapper form .gform_body ul li {
	margin-bottom: 20px;
}

.gform_wrapper form .gform_body ul li.hidden_label label {
	display: none;
}

.gform_wrapper form .gform_body ul li.gfield_error .validation_message {
	font-size: 14px;
	padding-top: 5px;
	color: tomato;
}

.gform_wrapper form .gform_body ul li input,
.gform_wrapper form .gform_body ul li textarea,
.gform_wrapper form .gform_body ul li select {
	border: 0;
	background: #f7f7f7;
	padding: 10px 20px;
	width: 100%;
	font-size: 15px;
}

.gform_wrapper form .gform_footer button,
.gform_wrapper form .gform_footer input[type='button'],
.gform_wrapper form .gform_footer input[type='reset'],
.gform_wrapper form .gform_footer input[type='submit'] {
	padding: 10px 20px;
	font-size: 18px;
	font-family: 'Montserrat', serif;
	font-weight: 700;
	transition: all 0.3s ease;
}

.gform_wrapper form .gform_footer button:hover,
.gform_wrapper form .gform_footer input[type='button']:hover,
.gform_wrapper form .gform_footer input[type='reset']:hover,
.gform_wrapper form .gform_footer input[type='submit']:hover {
	background: #820b2d;
	transition: all 0.3s ease;
}

.gform_confirmation_message {
	background: #1baf2e;
	color: white;
	padding: 15px;
	margin-bottom: 20px;
	text-align: center;
}

.gform_wrapper form .validation_error {
	background: tomato;
	color: white;
	padding: 15px;
	margin-bottom: 20px;
	text-align: center;
}
.gform_wrapper form .gform_validation_container {
	transform: translateX(100vw);
	visibility: hidden;
	height: 1px;
}
.gform_wrapper form .gform_body ul li {
	margin-bottom: 20px;
}
.gform_wrapper form .gform_body ul li.hidden_label label {
	display: none;
}
.gform_wrapper form .gform_body ul li.gfield_error .validation_message {
	font-size: 14px;
	padding-top: 5px;
	color: tomato;
}
.gform_wrapper form .gform_body ul li input,
.gform_wrapper form .gform_body ul li textarea,
.gform_wrapper form .gform_body ul li select {
	border: 0;
	background: #f7f7f7;
	padding: 10px 20px;
	width: 100%;
	font-size: 15px;
}
.gform_wrapper form .gform_footer button,
.gform_wrapper form .gform_footer input[type='button'],
.gform_wrapper form .gform_footer input[type='reset'],
.gform_wrapper form .gform_footer input[type='submit'] {
	padding: 10px 20px;
	font-size: 18px;
	font-family: 'Montserrat', serif;
	font-weight: 700;
	transition: all 0.3s ease;
}
.gform_wrapper form .gform_footer button:hover,
.gform_wrapper form .gform_footer input[type='button']:hover,
.gform_wrapper form .gform_footer input[type='reset']:hover,
.gform_wrapper form .gform_footer input[type='submit']:hover {
	background: #820b2d;
	transition: all 0.3s ease;
}

.block-home-video {
	display: flex;
	flex-wrap: wrap;
	grid-gap: 1rem;
	margin-bottom: 5rem;
}

.block-home-video .doc-info,
.block-home-video .download-doc {
	flex: 1 1 350px;
	position: relative;
}

.block-home-video .doc-info {
	background: white;
	padding: 1rem;
}

.block-home-video .doc-info strong {
	color: #950d34;
	font-family: 'Montserrat', serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.block-home-video .doc-info h3 {
	font-size: 30px;
}

.block-home-video .doc-info a {
	display: block;
	font-size: 20px;
	font-weight: 700;
	color: #950d34;
	margin-top: auto;
}

.block-home-video .doc-info .icon {
	width: 25px;
	margin-right: 0.5rem;
}

.block-home-video .download-doc {
	overflow: hidden;
}

.block-home-video .download-doc .video-image {
	position: relative;
	padding-bottom: 56.25%;
	min-height: 100%;
}

.block-home-video .download-doc .video-image img {
	position: absolute;
	top: 50%;
	min-height: 100%;
	object-fit: cover;
	transform: translateY(-50%);
}

.block-home-video .download-doc .svg__icon {
	position: absolute;
	top: 1rem;
	right: 1rem;
	z-index: 2;
	width: 50px;
	height: 50px;
}

.block-home-video.subtext {
	margin-bottom: 1rem;
}
