/* ============================================================================
   WAIO Landing Theme - General Baseline CSS
   Baseline skeleton styles - NOT project-specific
   ============================================================================ */

/* CSS Variables */
:root {
	--red: #de2727;
	-webkit-tap-highlight-color: transparent;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* ============================================================================
   Reset & Normalize
   ============================================================================ */

/* Basic reset */
html, body, div, main, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset */
article, aside, details, figcaption, figure, footer, header, hgroup,
main, nav, section, summary {
	display: block;
}

audio, canvas, video {
	display: inline-block;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

/* ============================================================================
   Box Model & Base Styles
   ============================================================================ */

*, :before, :after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	-ms-overflow-style: scrollbar;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

html, body {
	overflow-x: hidden;
}

body {
	min-height: 100vh;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-justify-content: space-between;
	justify-content: space-between;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
	font-weight: 400;
	color: #000;
	background: #FFF;
	font-size: 16px;
}

/* ============================================================================
   Typography
   ============================================================================ */

h1, h2, h3, h4, h5, h6,
h1 > a, h2 > a, h3 > a, h4 > a, h5 > a, h6 > a,
article h1 a, article h2 a, article h3 a, article h4 a, article h5 a, article h6 a {
	margin-bottom: 20px;
	text-rendering: optimizeLegibility;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	text-decoration: none;
}

b, strong, th, legend {
	font-weight: bold;
}

i:not([class]), em, cite, dfn {
	font-style: italic;
}

small {
	font-size: 75%;
}

sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -.25em;
}

sup {
	top: -.5em;
}

abbr[title] {
	text-decoration: underline dotted;
	cursor: help;
}

del {
	text-decoration: line-through;
}

/* ============================================================================
   Links
   ============================================================================ */

a {
	color: inherit;
	cursor: pointer;
	transition: .4s;
}

a:not([class]):focus {
	outline: none;
	box-shadow: none;
}

/* ============================================================================
   Images & Media
   ============================================================================ */

img, iframe {
	max-width: 100%;
	height: auto;
}

img.size-portrait-thumbnail {
	width: auto;
	max-width: unset;
}

/* ============================================================================
   Lists
   ============================================================================ */

ul, ol {
	margin: 0 0 25px 20px;
}

ol {
	list-style: decimal;
	list-style-position: inside;
}

ul {
	list-style: disc;
	list-style-position: inside;
}

nav ul, nav ol {
	margin: 0;
	list-style: none;
}

/* ============================================================================
   Tables
   ============================================================================ */

table {
	margin-bottom: 20px;
	border-collapse: collapse;
	border-spacing: 0;
	-webkit-overflow-scrolling: touch;
}

th, td {
	border: 1px solid #eceeef;
	padding: 10px;
}

caption {
	font-size: 15px;
	padding: 10px 0;
	caption-side: bottom;
}

/* Article table styling */
article table tr:first-child {
	background: #d5d5d5 !important;
}

article table tr:nth-child(odd) {
	background: #f9f7f6;
}

article table tr:nth-child(even) {
	background: #fff;
}

/* ============================================================================
   Forms
   ============================================================================ */

label {
	display: block;
	cursor: pointer;
}

legend {
	margin-bottom: 5px;
}

button, input, textarea {
	font-family: inherit;
	line-height: normal;
	margin: 0;
}

textarea {
	min-height: 80px;
	resize: vertical;
}

[type="submit"], [type="reset"], [type="button"],
[type="text"], [type="email"], [type="tel"], [type="search"],
button {
	border-radius: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

button, [type="submit"], [type="reset"], [type="button"] {
	cursor: pointer;
}

textarea:focus, button:focus,
div[contenteditable="true"]:focus, [class~="btn"]:focus,
[type="text"]:focus, [type="tel"]:focus, [type="email"]:focus, [type="password"]:focus, [type="submit"]:focus {
	outline: 0;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="search"] {
	-webkit-appearance: textfield;
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}

/* ============================================================================
   Content Spacing
   ============================================================================ */

article ul li,
article ol li,
article p {
	word-break: break-word;
}

p + h2, p + h3, p + h4,
ul + h2, ul + h3, ul + h4,
ol + h2, ol + h3, ol + h4,
code + h2, code + h3, code + h4,
table + h2, table + h3, table + h4,
blockquote + h1, blockquote + h2, blockquote + h3, blockquote + h4 {
	margin-top: 35px;
}

figcaption {
	font-size: 15px;
}

/* ============================================================================
   Utility Classes
   ============================================================================ */

span {
	display: inline;
}

[hidden] {
	display: none;
}

[tabindex="-1"]:focus {
	outline: 0 !important;
}

/* Clearfix */
.clear:after,
.clear:before,
.row:after,
.row:before {
	clear: both;
	display: block;
	width: 100%;
	content: '';
}

/* ============================================================================
   WordPress Core Styles
   ============================================================================ */

/* Image alignment */
.alignnone {
	margin: 5px 20px 5px 0;
}

.aligncenter,
div.aligncenter {
	display: block;
	margin: 30px auto 40px auto;
}

.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}

.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}

a img.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}

a img.alignnone {
	margin: 5px 20px 20px 0;
}

a img.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}

a img.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/* Captions */
.wp-caption {
	background: #fff;
	max-width: 100%;
	text-align: left;
}

.wp-caption.alignnone {
	margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
	margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
	margin: 5px 0 20px 20px;
}

.wp-caption img {
	border: 0 none;
	height: auto;
	margin: 0 0 10px 0;
	padding: 0;
	width: auto;
}

.wp-caption p.wp-caption-text,
.wp-block-image figcaption {
	font-size: 11px;
	line-height: 17px;
	margin: 0;
	padding: 0 4px 5px;
	text-align: center;
	font-style: italic;
}

/* Gallery */
.has__gallery .gallery {
	margin: auto -6px;
	padding: 6px 0;
	line-height: 1;
	overflow-x: hidden;
}

.has__gallery .gallery .gallery-item {
	float: left;
	margin: 0;
	text-align: center;
	padding: 6px;
	box-sizing: border-box;
}

.has__gallery .gallery .gallery-caption,
.has__gallery .gallery .gallery-icon {
	margin: 0;
}

.has__gallery .gallery .gallery-caption {
	font-size: 13px;
	margin: 4px 0;
}

.has__gallery .gallery-columns-1 .gallery-item {
	width: 100%;
}

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

.has__gallery .gallery-columns-3 .gallery-item {
	width: 33.333%;
}

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

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

.has__gallery .gallery-columns-6 .gallery-item {
	width: 16.665%;
}

.has__gallery .gallery-columns-7 .gallery-item {
	width: 14.285%;
}

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

.has__gallery .gallery-columns-9 .gallery-item {
	width: 11.111%;
}

.has__gallery .gallery img {
	max-width: 100%;
	height: auto;
	border: none;
	padding: 0;
	border-radius: 15px;
}

@media (max-width: 1200px) {
	.has__gallery .gallery-columns-4 .gallery-item,
	.has__gallery .gallery-columns-5 .gallery-item,
	.has__gallery .gallery-columns-6 .gallery-item,
	.has__gallery .gallery-columns-7 .gallery-item,
	.has__gallery .gallery-columns-8 .gallery-item,
	.has__gallery .gallery-columns-9 .gallery-item {
		width: 33%;
	}
}

@media (max-width: 767px) {
	.has__gallery .gallery-columns-2 .gallery-item,
	.has__gallery .gallery-columns-3 .gallery-item,
	.has__gallery .gallery-columns-4 .gallery-item,
	.has__gallery .gallery-columns-5 .gallery-item,
	.has__gallery .gallery-columns-6 .gallery-item,
	.has__gallery .gallery-columns-7 .gallery-item,
	.has__gallery .gallery-columns-8 .gallery-item,
	.has__gallery .gallery-columns-9 .gallery-item {
		width: 100%;
	}
}

/* Screen reader text */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	white-space: nowrap;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

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

html.js, html.no-js, html {
	margin-top: 0 !important;
}

/* Fonts */
h1 {
  font-size: 30px;
  font-weight: Bold;
}

h2 {
  font-size: 24px;
  font-weight: Bold;
}

/* Theme General Settings */
.container{
	margin-left: auto;
	margin-right: auto;
	max-width: 1110px;
	padding: 0 20px;
}
@media only screen and (min-width: 1400px) {
  .container {
      max-width:78%
  }
}
