/*
Global Variables

@import this file at the top of each page 
template file to make variables available.
*/
/*
Mixins

Add mixins to any css page using @include

e.g.
.element{
	@include transition( background .2s ease-out )
}
*/
/*
Theme Name: kickoff
Author: Daelen Berg
Author URI: http://arraystudios.com/
Description: A Blank Wordpress Starter Template

kickoff is based on Underscores http://underscores.me/, (C) 2012-2015 Automattic, Inc.
*/
/*--------------------------------------------------------------
	TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Links
# Alignments
# Clearings
# Content
	## Comments
	## Media
	## Captions
	## Galleries
	## Columns
# Loadmore
# Wysiwyg Image Resets
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  height: 100%;
}

body {
  margin: 0;
  height: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary,
main {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

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

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

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

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

/*
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}
*/
mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
  line-height: 0px;
  font-size: 0px;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

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

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

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

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

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

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
  color: #404040;
  font-size: 16px;
  line-height: 1.5em;
}

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

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

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

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  background: #fff;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

blockquote,
q {
  quotes: "" "";
}

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

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

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

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type=button],
input[type=reset],
input[type=submit] {
  border: 1px solid #ccc;
  border-radius: 0px;
  background: #e6e6e6;
  color: black;
  font-size: 16px;
  line-height: 1;
  padding: 10px 30px;
  outline: none;
}

button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  border-color: #afafaf;
  background: #afafaf;
}

button:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus {
  border-color: #ccc;
  background: #e6e6e6;
}

button:active,
input[type=button]:active,
input[type=reset]:active,
input[type=submit]:active {
  border-color: #afafaf;
  background: #afafaf;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=tel],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 0px;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

textarea {
  vertical-align: middle;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
textarea:focus {
  color: #111;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=tel],
textarea {
  padding: 5px 10px;
}

textarea {
  width: 100%;
  resize: none;
}

/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/
a {
  color: #2291cf;
}

a:hover,
a:focus,
a:active {
  color: #1b72a3;
}

a:focus {
  outline: none;
}

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

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clearfix:before,
.clearfix:after,
.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;
}

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

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

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

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

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

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

/*--------------------------------------------------------------
## 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;
}

/*--------------------------------------------------------------
## Columns
--------------------------------------------------------------*/
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
  float: left;
  position: relative;
}

.col-12 {
  width: 100%;
}

.col-11 {
  width: 91.66666667%;
}

.col-10 {
  width: 83.33333333%;
}

.col-9 {
  width: 75%;
}

.col-8 {
  width: 66.66666667%;
}

.col-7 {
  width: 58.33333333%;
}

.col-6 {
  width: 50%;
}

.col-5 {
  width: 41.66666667%;
}

.col-4 {
  width: 33.33333333%;
}

.col-3 {
  width: 25%;
}

.col-2 {
  width: 16.66666667%;
}

.col-1 {
  width: 8.33333333%;
}

@media screen and (max-width: 750px) {
  .col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
    float: left;
    position: relative;
  }
}
/*--------------------------------------------------------------
# Social Sharing
--------------------------------------------------------------*/
#array-share ul, #array-share li {
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-size: 0;
  line-height: 0;
}
#array-share li {
  display: inline-block;
}
#array-share li a {
  display: block;
}
#array-share li svg {
  height: 24px;
}
#array-share li path {
  fill: #404040;
}

/*--------------------------------------------------------------
# Load More Posts
--------------------------------------------------------------*/
.ajax-loader {
  display: block;
  position: relative;
  text-align: center;
  margin: 100px 0;
}
.ajax-loader .ajax-spinner {
  display: inline-block;
  border: 6px solid #2291cf;
  /* Light grey */
  border-top: 6px solid #e8c137;
  /* Blue */
  border-radius: 50%;
  width: 35px;
  height: 35px;
  animation: spin 1s linear infinite;
}
.ajax-loader .ajax-text {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1;
  color: #e8c137;
  font-weight: 600;
  font-family: "Montserrat", Helvetica, Roboto, Arial, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.misha_loadmore {
  background-color: #ddd;
  border-radius: 2px;
  display: block;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 1px;
  cursor: pointer;
  text-transform: uppercase;
  padding: 10px 0;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out;
}

.misha_loadmore:hover {
  background-color: #767676;
  color: #fff;
}

/*--------------------------------------------------------------
# Wysiwyg Image Resets
--------------------------------------------------------------*/
/*
	img.alignright { 
		float: right;
		margin: 0 0 1.5em 1.5em; 

	}

	img.alignleft { 
		float: left; 
		margin: 0 1.5em 1.5em 0; 	
	}

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

	.alignright { 
		float: right; 
	}

	.alignleft { 
		float: left; 
	}

	.aligncenter { 
		display: block; margin-left: auto; margin-right: auto; 
	}
*/
/*
HEADINGS
*/
.primary-heading {
  font-size: 45px;
  font-family: "Montserrat", Helvetica, Roboto, Arial, sans-serif;
  font-weight: 800;
  margin: 1em 0px 0.7em;
  line-height: 1.2;
}
@media screen and (max-width: 1280px) {
  .primary-heading {
    font-size: 35px;
  }
}
@media screen and (max-width: 1125px) {
  .primary-heading {
    font-size: 28px;
    margin: 0px 0px 1em 0px;
  }
}
@media screen and (max-width: 800px) {
  .primary-heading {
    margin: 0px 0px 0.7em 0px;
  }
}

.secondary-heading {
  font-size: 30px;
  font-family: "Montserrat", Helvetica, Roboto, Arial, sans-serif;
  font-weight: 800;
  margin: 1em 0px 0.7em;
  line-height: 1.5;
}
@media screen and (max-width: 1280px) {
  .secondary-heading {
    font-size: 24px;
  }
}
@media screen and (max-width: 800px) {
  .secondary-heading {
    font-size: 18px;
  }
}

.tertiary-heading {
  font-weight: 600;
  font-size: 20px;
  margin: 0.5em 0;
  display: block;
}

/*
FONTS
*/
/*
LINKS
*/
.custom-link a {
  display: inline-block;
  color: #282828;
  padding: 0px 20px 0px 0;
  background: url("/wp-content/themes/shishalh/images/shell/arrow-yellow.svg") right center no-repeat;
  -webkit-background-size: 10px;
  -moz-background-size: 10px;
  -o-background-size: 10px;
  background-size: 10px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 25px;
}
@media screen and (max-width: 1024px) {
  .custom-link a {
    font-size: 14px;
    -webkit-background-size: 8px;
    -moz-background-size: 8px;
    -o-background-size: 8px;
    background-size: 8px;
  }
}
.custom-link a:hover {
  color: #2291cf;
}

.solid-button a {
  font-size: 16px;
  padding: 10px 40px 12px 25px;
  background: #e8c137 url("/wp-content/themes/shishalh/images/shell/arrow.svg") right 20px center no-repeat;
  -webkit-background-size: 8px;
  -moz-background-size: 8px;
  -o-background-size: 8px;
  background-size: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease-out, color 0.3s ease-out;
  color: #2b2b2b;
}
.solid-button a:hover {
  background: #2291cf url("/wp-content/themes/shishalh/images/shell/arrow-white.svg") right 20px center no-repeat;
  -webkit-background-size: 8px;
  -moz-background-size: 8px;
  -o-background-size: 8px;
  background-size: 8px;
  color: white;
}

.custom-button {
  display: block;
  margin-right: 30px;
  color: inherit;
}
.custom-button a {
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px 25px 10px 0;
  display: inline-block;
  color: inherit;
  font-weight: 700;
  background: url("/wp-content/themes/shishalh/images/shell/arrow-yellow-new.svg") right center no-repeat;
  -webkit-background-size: 10px;
  -moz-background-size: 10px;
  -o-background-size: 10px;
  background-size: 10px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
@media screen and (max-width: 1024px) {
  .custom-button a {
    font-size: 14px;
    -webkit-background-size: 8px;
    -moz-background-size: 8px;
    -o-background-size: 8px;
    background-size: 8px;
    padding-right: 20px;
  }
}
/*
Navigation Stylesheet

Holding styling for header/footer navigation
and mobile nav.
*/
#navbar {
  position: relative;
  z-index: 999;
}

.page-id-61 .site-branding .site-logo {
  display: none;
}
.page-id-61 .site-branding .site-logo.home-logo {
  display: block;
}

.footer-facebook {
  width: 14px;
  display: inline-block;
}
@media screen and (max-width: 800px) {
  .footer-facebook {
    display: none;
  }
}
.footer-facebook:hover svg path {
  fill: #e8c137;
}
.footer-facebook svg {
  width: 14px;
}
.footer-facebook svg path {
  -webkit-transition: fill 0.2s ease-out;
  -moz-transition: fill 0.2s ease-out;
  -ms-transition: fill 0.2s ease-out;
  -o-transition: fill 0.2s ease-out;
  transition: fill 0.2s ease-out;
}

.site-branding {
  position: absolute;
  top: 30px;
  left: 4%;
}
@media screen and (max-width: 1020px) {
  .site-branding {
    top: 0px;
    left: 0px;
    padding: 11px 15px 15px 15px;
  }
}
@media screen and (max-width: 800px) {
  .site-branding {
    background: rgba(34, 145, 207, 0.9);
  }
}
.site-branding .site-logo {
  height: 155px;
}
@media screen and (max-width: 1280px) {
  .site-branding .site-logo {
    height: 125px;
  }
}
@media screen and (max-width: 1020px) {
  .site-branding .site-logo {
    height: 100px;
  }
}
@media screen and (max-width: 800px) {
  .site-branding .site-logo {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  .site-branding .site-logo.home-logo {
    display: block;
  }
}

.home-logo {
  display: none;
}

.nav-wrap {
  float: right;
}

.top-nav {
  display: block;
  width: 100%;
  clear: both;
  background: #1c7aae;
  padding: 0 50px;
}
@media screen and (max-width: 1280px) {
  .top-nav {
    padding: 0 30px;
  }
}
@media screen and (max-width: 1126px) {
  .top-nav {
    padding: 0px 20px;
  }
}
@media screen and (max-width: 1020px) {
  .top-nav {
    display: none;
  }
}
.top-nav .menu-header-nav-secondary-container {
  margin-left: 20px;
  padding: 15px 0;
  float: left;
}
.top-nav li {
  float: left;
  position: relative;
}
.top-nav li:not(:last-of-type) {
  margin-right: 60px;
}
@media screen and (max-width: 1125px) {
  .top-nav li:not(:last-of-type) {
    margin-right: 40px;
  }
}
.top-nav li a {
  color: white;
  font-size: 14px;
  display: block;
  color: white;
  line-height: 30px;
  font-weight: 400;
  height: 30px;
  letter-spacing: 0.5px;
  position: relative;
}
@media screen and (max-width: 1126px) {
  .top-nav li a {
    font-size: 13px;
  }
}
.top-nav li a:hover:after {
  transform: none;
  opacity: 1;
}
.top-nav li a:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #c9dbe6;
  transform: translateY(10px);
  opacity: 0;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.top-nav .nav-search-wrap {
  float: right;
  width: 100%;
  max-width: 250px;
  margin-right: 20px;
  position: relative;
  padding: 15px 0;
}
@media screen and (max-width: 1126px) {
  .top-nav .nav-search-wrap {
    max-width: 230px;
  }
}
.top-nav .nav-search-wrap ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #c9dbe6;
  font-weight: 500;
  font-size: 12px;
}
.top-nav .nav-search-wrap ::-moz-placeholder {
  /* Firefox 19+ */
  color: #c9dbe6;
  font-weight: 500;
  font-size: 12px;
}
.top-nav .nav-search-wrap :-ms-input-placeholder {
  /* IE 10+ */
  color: #c9dbe6;
  font-weight: 500;
  font-size: 12px;
}
.top-nav .nav-search-wrap :-moz-placeholder {
  /* Firefox 18- */
  color: #c9dbe6;
  font-weight: 500;
  font-size: 12px;
}
.top-nav .nav-search-wrap .search-field {
  border: 0;
  background: none;
  font-size: 12px;
  padding: 0;
  color: white;
  line-height: 30px;
  height: 30px;
}
.top-nav .nav-search-wrap .search-field:focus + .header-search-line, .top-nav .nav-search-wrap .search-field:hover + .header-search-line {
  transform: none;
  opacity: 1;
}
.top-nav .nav-search-wrap .header-search-line {
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #c9dbe6;
  opacity: 1;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.top-nav .nav-search-wrap label {
  line-height: 30px;
  height: 30px;
  display: block;
  position: relative;
}
.top-nav .nav-search-wrap .search-submit {
  position: absolute;
  top: 15px;
  right: 0;
  height: 30px;
  width: 30px;
  padding: 0;
  background: none;
  background-color: none;
  background-image: url("/wp-content/themes/shishalh/images/shell/searchicon.png");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: auto;
  border: 0;
  font-size: 0px;
}

.site-header ul {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}

.morphing-wrap {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-perspective: 800px;
  perspective: 800px;
  position: absolute;
  top: 195px;
  min-width: 165px;
  right: 0px;
  opacity: 0;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
@media screen and (max-width: 1125px) {
  .morphing-wrap {
    top: 167px;
  }
}
.morphing-wrap.active {
  opacity: 1;
}
.morphing-wrap.active .morphing-bg {
  transform: rotateX(0deg);
}

.morphing-bg {
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  left: 0px;
  border-top: 10px solid #2291cf;
  background: white;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
  transform-origin: 50% 0;
  transform: rotateX(-30deg);
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
@media screen and (max-width: 1125px) {
  .morphing-bg {
    border-top-width: 7px;
  }
}

.bot-nav {
  padding: 0 50px;
  display: block;
  width: 100%;
  clear: both;
  background: #2291cf;
}
@media screen and (max-width: 1280px) {
  .bot-nav {
    padding: 0 30px;
  }
}
@media screen and (max-width: 1125px) {
  .bot-nav {
    padding: 0px 20px;
  }
}
@media screen and (max-width: 1020px) {
  .bot-nav {
    display: none;
  }
}
.bot-nav li {
  float: left;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .bot-nav li#menu-item-106 > a {
    max-width: 140px;
  }
}
.bot-nav li a {
  color: white;
  font-weight: 600;
  padding: 30px 25px;
  display: block;
  max-width: 165px;
  position: relative;
  line-height: 1.5;
}
@media screen and (max-width: 1280px) {
  .bot-nav li a {
    font-size: 16px;
  }
}
@media screen and (max-width: 1125px) {
  .bot-nav li a {
    max-width: 150px;
    font-size: 14px;
    padding: 20px 20px;
  }
}
.bot-nav li a:hover {
  background: #2291cf;
}
.bot-nav li#menu-item-106, .bot-nav li#menu-item-3324, .bot-nav li#menu-item-109 {
  max-width: 125px;
}
@media screen and (max-width: 1125px) {
  .bot-nav li#menu-item-106, .bot-nav li#menu-item-3324, .bot-nav li#menu-item-109 {
    max-width: 110px;
  }
}
.bot-nav li#menu-item-106 .sub-menu, .bot-nav li#menu-item-107 .sub-menu {
  min-width: 265px;
}
.bot-nav li#menu-item-108 .sub-menu, .bot-nav li#menu-item-109 .sub-menu {
  min-width: 215px;
}
.bot-nav li#menu-item-110 .sub-menu {
  min-width: 215px;
}
.bot-nav li .sub-menu {
  position: absolute;
  left: 0px;
  top: 116px;
  margin: 0;
  padding: 0;
  z-index: 9999;
  padding: 37px 30px 20px 30px;
  display: none;
  min-width: 300px;
}
@media screen and (max-width: 1125px) {
  .bot-nav li .sub-menu {
    padding: 33px 20px 20px 20px;
    top: 90px;
  }
}
.bot-nav li .sub-menu .sub-menu {
  position: relative;
  top: auto;
  display: block;
}
.bot-nav li .sub-menu .sub-menu li:first-of-type a {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.bot-nav li .sub-menu .sub-menu li a {
  padding-left: 20px !important;
  position: relative;
}
.bot-nav li .sub-menu .sub-menu li a:after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0px;
  width: 5px;
  height: 2px;
  background: rgba(0, 0, 0, 0.2);
  margin: auto;
}
.bot-nav li .sub-menu ul, .bot-nav li .sub-menu li {
  padding: 0;
  margin: 0;
}
.bot-nav li .sub-menu a {
  color: #2291cf;
  padding: 0;
  max-width: none;
  line-height: 1.5;
  letter-spacing: 1px;
  font-size: 14px;
  padding: 15px 0px;
  color: #2291cf;
  display: block;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-transition: color 0.2s ease-out;
  -moz-transition: color 0.2s ease-out;
  -ms-transition: color 0.2s ease-out;
  -o-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
}
.bot-nav li .sub-menu a:hover {
  background: none;
  color: #e8c137;
}
@media screen and (max-width: 1280px) {
  .bot-nav li .sub-menu a {
    font-size: 14px;
  }
}
@media screen and (max-width: 1125px) {
  .bot-nav li .sub-menu a {
    font-size: 13px;
    padding: 10px 0px;
  }
}
.bot-nav li .sub-menu a:hover {
  color: #e8c137;
  background: none;
}
.bot-nav li .sub-menu li {
  float: none;
  margin: 0px;
  padding: 0px;
}
.bot-nav li .sub-menu li:hover {
  background: none;
}
.bot-nav li .sub-menu li:first-of-type a {
  border-top: none;
}
/* Mobile Navigation. */
.nav-toggle {
  display: none;
  float: right;
  padding: 14px 15px 15px 15px;
  color: white;
  background: rgba(34, 145, 207, 0.9);
  border: none;
  font-weight: 600;
  position: fixed;
  right: 0px;
  top: 0px;
  z-index: 99999999;
}
.nav-toggle:hover {
  background: rgba(232, 194, 55, 0.9);
}
.nav-toggle:focus {
  background: rgba(34, 145, 207, 0.9);
}
.nav-toggle > span {
  margin: 2px 6px 2px 0;
  display: inline-block;
}
.nav-toggle .icon {
  float: right;
}
.nav-toggle .icon span {
  height: 2px;
  width: 15px;
  display: block;
  background: white;
  margin: 3px 0;
}
@media screen and (max-width: 1020px) {
  .nav-toggle {
    display: block;
  }
}
.nav-toggle.nav-active {
  background: #2291cf;
}
.nav-toggle.nav-active:hover {
  background: #e8c237;
}
.nav-toggle.nav-active:focus {
  background: #e8c237;
}

.mobile-nav {
  position: relative;
  display: none;
  clear: both;
  position: fixed;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  z-index: 5;
  overflow-y: scroll;
  padding: 69px 10% 20px 10%;
}
.mobile-nav:after {
  position: absolute;
  content: "";
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  background: #2291cf;
  height: 49px;
}
.mobile-nav .mobile-search-wrap {
  width: 100%;
  max-width: 220px;
  margin-right: 20px;
  padding: 8px 0;
  position: absolute;
  left: 10%;
  top: 0;
  z-index: 99;
}
.mobile-nav .mobile-search-wrap ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #c9dbe6;
  font-weight: 500;
  font-size: 12px;
}
.mobile-nav .mobile-search-wrap ::-moz-placeholder {
  /* Firefox 19+ */
  color: #c9dbe6;
  font-weight: 500;
  font-size: 12px;
}
.mobile-nav .mobile-search-wrap :-ms-input-placeholder {
  /* IE 10+ */
  color: #c9dbe6;
  font-weight: 500;
  font-size: 12px;
}
.mobile-nav .mobile-search-wrap :-moz-placeholder {
  /* Firefox 18- */
  color: #c9dbe6;
  font-weight: 500;
  font-size: 12px;
}
.mobile-nav .mobile-search-wrap .search-field {
  border: 0;
  background: none;
  font-size: 14px;
  padding: 0;
  color: #c9dbe6;
  line-height: 30px;
  height: 30px;
}
.mobile-nav .mobile-search-wrap .search-field:focus + .header-search-line, .mobile-nav .mobile-search-wrap .search-field:hover + .header-search-line {
  transform: none;
  opacity: 1;
}
.mobile-nav .mobile-search-wrap .header-search-line {
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #c9dbe6;
  transform: translateY(10px);
  opacity: 0;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.mobile-nav .mobile-search-wrap label {
  line-height: 30px;
  height: 30px;
  display: block;
  position: relative;
  padding-left: 25px;
}
.mobile-nav .mobile-search-wrap .search-submit {
  position: absolute;
  top: 8px;
  left: 0;
  height: 30px;
  width: 30px;
  padding: 0;
  background: none;
  background-color: none;
  background-image: url("/wp-content/themes/shishalh/images/shell/searchicon.png");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: auto;
  border: 0;
  font-size: 0px;
}
.mobile-nav ul, .mobile-nav li {
  margin: 0;
  padding: 0;
}
.mobile-nav a {
  font-size: 14px;
  padding: 0;
  max-width: none;
  width: 100%;
  line-height: 1.5;
  padding: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: block;
  letter-spacing: 1px;
  padding: 15px 0px;
  font-weight: 600;
  padding-right: 30px;
}
.mobile-nav a:hover {
  color: #e8c137;
  background: none;
}
.mobile-nav #mobile_nav li.menu-item-has-children.nav-item-active a:before {
  transform: rotate(270deg);
}
.mobile-nav #mobile_nav li.menu-item-has-children a {
  position: relative;
}
.mobile-nav #mobile_nav li.menu-item-has-children a:before {
  width: 20px;
  height: 20px;
  display: block;
  content: "";
  background: url("/wp-content/themes/shishalh/images/shell/arrow-blue.svg") right center no-repeat;
  -webkit-background-size: 8px;
  -moz-background-size: 8px;
  -o-background-size: 8px;
  background-size: 8px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  position: absolute;
  top: 22px;
  right: 0;
  transform: translateY(-50%) rotate(90deg);
}
.mobile-nav #mobile_nav li.menu-item-has-children .sub-menu .sub-menu li a:before {
  display: none;
}
.mobile-nav #mobile_nav li .sub-menu {
  display: none;
}
.mobile-nav #mobile_nav li .sub-menu a {
  text-transform: none;
  padding-left: 20px;
  position: relative;
}
.mobile-nav #mobile_nav li .sub-menu a:before {
  display: none;
  transform: none;
}
.mobile-nav #mobile_nav li .sub-menu a:after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0px;
  width: 5px;
  height: 2px;
  background: rgba(0, 0, 0, 0.4);
  margin: auto;
}
.mobile-nav #mobile_nav #menu-item-205 a {
  border-top: 0;
}

/* Footer Navigation. */
.site-footer {
  max-width: 1800px;
  margin: 0 auto;
  clear: both;
  background: #2291cf url("/wp-content/themes/shishalh/images/shell/watermark.png") left top no-repeat;
  background-size: auto 100%;
  position: relative;
  padding: 90px 4% 70px 4%;
}
@media screen and (max-width: 1450px) {
  .site-footer {
    padding: 60px 4% 40px 4%;
  }
}
@media screen and (max-width: 1050px) {
  .site-footer {
    padding: 40px 4% 20px 4%;
  }
}
.site-footer #menu-item-162 > a {
  max-width: 100px;
}
.site-footer ul {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}
.site-footer .footer-inner {
  position: relative;
}
.site-footer a {
  color: white;
}
@media screen and (max-width: 1550px) {
  .site-footer a {
    font-size: 16px;
  }
}
@media screen and (max-width: 850px) {
  .site-footer a {
    font-size: 14px;
  }
}
.site-footer a:hover {
  color: #e8c137;
}
.site-footer .footer-branding {
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1450px) {
  .site-footer .footer-branding {
    position: relative;
    clear: both;
    top: initial;
    left: initial;
    text-align: center;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1050px) {
  .site-footer .footer-branding {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 1450px) {
  .site-footer .footer-branding a {
    display: inline-block;
  }
}
.site-footer .footer-branding .footer-logo {
  height: 200px;
}
@media screen and (max-width: 1550px) {
  .site-footer .footer-branding .footer-logo {
    height: 150px;
  }
}
@media screen and (max-width: 1450px) {
  .site-footer .footer-branding .footer-logo {
    height: 125px;
  }
}

.footer-nav-wrap {
  position: relative;
  z-index: 5;
  float: right;
}
@media screen and (max-width: 1450px) {
  .footer-nav-wrap {
    float: none;
    width: 100%;
    margin: 0 auto;
  }
}
.footer-nav-wrap .footer-top-nav {
  clear: both;
  margin: 0 -25px;
}
@media screen and (max-width: 1450px) {
  .footer-nav-wrap .footer-top-nav {
    margin: 0;
  }
}
@media screen and (max-width: 775px) {
  .footer-nav-wrap .footer-top-nav {
    display: none;
  }
}
.footer-nav-wrap .footer-top-nav li {
  line-height: 1.5;
}
.footer-nav-wrap .footer-top-nav li a {
  line-height: 1.5;
  color: white;
}
.footer-nav-wrap .footer-top-nav li a:hover {
  color: white;
}
.footer-nav-wrap .footer-top-nav .menu-item-has-children {
  float: left;
  padding: 0 25px;
  width: 20%;
}
.footer-nav-wrap .footer-top-nav .menu li a {
  font-weight: 600;
  display: block;
  max-width: 150px;
  position: relative;
}
@media screen and (max-width: 1550px) {
  .footer-nav-wrap .footer-top-nav .menu li a {
    max-width: 125px;
  }
}
.footer-nav-wrap .footer-top-nav .menu li a:hover {
  color: #e8c137;
}
.footer-nav-wrap .footer-top-nav .menu li .sub-menu {
  margin: 15px 0 0 0;
  border-top: #1c7aae solid 2px;
  padding-top: 15px;
}
@media screen and (max-width: 1050px) {
  .footer-nav-wrap .footer-top-nav .menu li .sub-menu {
    display: none;
  }
}
.footer-nav-wrap .footer-top-nav .menu li .sub-menu li {
  margin-bottom: 15px;
  overflow: hidden;
}
.footer-nav-wrap .footer-top-nav .menu li .sub-menu li a {
  text-transform: none;
  font-weight: 400;
  max-width: 200px;
  position: relative;
}
@media screen and (max-width: 1450px) {
  .footer-nav-wrap .footer-top-nav .menu li .sub-menu li a {
    max-width: none;
  }
}
.footer-nav-wrap .footer-top-nav .menu li .sub-menu li a:after {
  display: none;
  visibility: hidden;
}
.footer-nav-wrap .footer-top-nav .menu li .sub-menu li a:hover {
  color: #e8c137;
}
.footer-nav-wrap .footer-bot-nav {
  clear: both;
  border-top: #1c7aae solid 2px;
  margin-top: 20px;
  padding-top: 35px;
}
@media screen and (max-width: 1050px) {
  .footer-nav-wrap .footer-bot-nav {
    margin-top: 30px;
    padding-top: 30px;
    text-align: center;
  }
}
@media screen and (max-width: 775px) {
  .footer-nav-wrap .footer-bot-nav {
    padding: 0px;
    margin-top: 20px;
  }
}
.footer-nav-wrap .footer-bot-nav .menu-footer-bottom-secondary-container {
  display: block;
  text-align: center;
}
@media screen and (max-width: 1050px) {
  .footer-nav-wrap .footer-bot-nav .menu-footer-bottom-secondary-container {
    width: 100%;
  }
}
.footer-nav-wrap .footer-bot-nav ul {
  display: block;
}
@media screen and (max-width: 1050px) {
  .footer-nav-wrap .footer-bot-nav ul {
    display: inline-block;
  }
}
@media screen and (max-width: 775px) {
  .footer-nav-wrap .footer-bot-nav ul {
    display: none;
  }
}
.footer-nav-wrap .footer-bot-nav ul li {
  float: left;
  margin-right: 45px;
}
@media screen and (max-width: 1050px) {
  .footer-nav-wrap .footer-bot-nav ul li {
    margin: 0;
    text-align: center;
    padding: 0 25px;
  }
}
@media screen and (max-width: 800px) {
  .footer-nav-wrap .footer-bot-nav ul li {
    padding: 0 15px;
  }
}
.footer-nav-wrap .footer-bot-nav ul li a {
  display: block;
  font-weight: 600;
  color: white;
  position: relative;
}
.footer-nav-wrap .footer-bot-nav ul li a:hover {
  color: #e8c137;
}
.footer-nav-wrap .footer-bot-nav .menu-footer-bottom-secondary-container {
  float: left;
}
.footer-nav-wrap .footer-bot-nav .array {
  float: right;
  font-size: 12px;
  font-family: "Barlow", Helvetica, Roboto, Arial, sans-serif;
  font-weight: 500;
  line-height: 32px;
}
@media screen and (max-width: 1050px) {
  .footer-nav-wrap .footer-bot-nav .array {
    float: none;
    clear: both;
    text-align: center;
    display: block;
    width: 100%;
    padding-top: 15px;
  }
}

/*
Layout Stylesheet

Contains sitewide layout styling.
*/
body {
  font-family: "Barlow", Helvetica, Roboto, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 400;
  color: #2b2b2b;
  background: #edefee;
}
@media screen and (max-width: 1280px) {
  body {
    font-size: 15px;
  }
}
@media screen and (max-width: 1020px) {
  body {
    font-size: 14px;
  }
}

h1, h2, h3, h4, h5 {
  font-family: "Montserrat", Helvetica, Roboto, Arial, sans-serif;
  font-weight: 800;
}

p {
  margin-bottom: 1.35em;
}

a {
  text-decoration: none;
  color: #2291cf;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
a:hover, a:focus, a:active {
  color: #e8c137;
}

#page {
  max-width: 1800px;
  margin: 0 auto;
  background: white;
}

input {
  display: block;
  outline: none;
  border: 0;
  -webkit-appearance: none;
  background: none;
}

textarea:focus, input:focus {
  outline: none;
  border: 0;
}

.content-area ol {
  padding: 0px 0px 0px 30px;
  margin-left: 0px;
}
.content-area ol li {
  padding: 0px 0px 3px 15px;
  position: relative;
}
.content-area ul {
  list-style-type: none;
  padding: 0px;
  margin-left: 0px;
}
.content-area ul li {
  padding: 0px 0px 3px 30px;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .content-area ul li {
    padding: 0px 0px 2px 20px;
  }
}
@media screen and (max-width: 1020px) {
  .content-area ul li {
    padding: 0px 0px 2px 20px;
  }
}
.content-area ul li:after {
  content: "";
  position: absolute;
  left: 0px;
  top: 14px;
  width: 4px;
  height: 4px;
  background: #e8c137;
  border-radius: 50%;
}
@media screen and (max-width: 1400px) {
  .content-area ul li:after {
    top: 12px;
  }
}

.sib-wrap {
  overflow: hidden;
}

.siblings {
  display: flex;
  color: white;
  text-align: center;
  padding-top: 4px;
  padding-bottom: 4px;
  margin: 0px -2px;
}
@media screen and (max-width: 600px) {
  .siblings {
    flex-wrap: wrap;
    padding: 2px 0px;
  }
}
.siblings.sib-1 {
  display: none;
}
.siblings.sib-2 div {
  width: 50%;
}
.siblings div {
  margin: 0px 2px;
  width: 33.333333%;
  background: center center no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 600px) {
  .siblings div {
    width: 100%;
    margin: 2px 0px;
  }
}
.siblings div:nth-child(n+4) {
  display: none;
}
.siblings a {
  padding: 0px 40px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 190px;
  font-weight: bold;
  font-size: 18px;
  background: rgba(232, 193, 55, 0.8);
  -webkit-transition: background 0.2s ease-out;
  -moz-transition: background 0.2s ease-out;
  -ms-transition: background 0.2s ease-out;
  -o-transition: background 0.2s ease-out;
  transition: background 0.2s ease-out;
}
@media screen and (max-width: 800px) {
  .siblings a {
    line-height: 1.3;
  }
}
@media screen and (max-width: 600px) {
  .siblings a {
    height: 150px;
  }
}
@media screen and (max-width: 450px) {
  .siblings a {
    height: 120px;
  }
}
.siblings a:hover {
  background: rgba(34, 145, 207, 0.8);
}
.siblings a span {
  display: inline-block;
  padding-right: 30px;
  padding: 0px 20px 0px 0;
  background: url("/wp-content/themes/shishalh/images/shell/arrow-white.svg") right center no-repeat;
  -webkit-background-size: 10px;
  -moz-background-size: 10px;
  -o-background-size: 10px;
  background-size: 10px;
}

#breadcrumbs {
  font-size: 13px;
  color: #e8c137;
  margin-bottom: 25px;
  font-family: "Barlow", Helvetica, Roboto, Arial, sans-serif;
}
@media screen and (max-width: 800px) {
  #breadcrumbs {
    margin-bottom: 15px;
  }
}
#breadcrumbs a {
  color: #2b2b2b;
  padding: 0px 5px 0px 0px;
}
#breadcrumbs a:hover {
  color: #2291cf;
}
#breadcrumbs .breadcrumb_last {
  color: #2b2b2b;
  padding: 0px 5px;
}

.intro {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.intro.intro-search .intro-text {
  padding-bottom: 130px;
}
@media screen and (max-width: 800px) {
  .intro.intro-search .intro-text {
    padding-bottom: 95px;
  }
}
.intro .intro-text {
  width: 50%;
  padding: 5% 5% 4.5% 10%;
  background: url("/wp-content/themes/shishalh/images/shell/watermark-white.png") left top 50px no-repeat;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .intro .intro-text {
    padding: 5% 5% 4.5% 8%;
  }
}
@media screen and (max-width: 1200px) {
  .intro .intro-text {
    padding: 5% 5% 4.5% 5%;
  }
}
@media screen and (max-width: 1020px) {
  .intro .intro-text {
    padding: 130px 5% 5% 5%;
  }
}
@media screen and (max-width: 800px) {
  .intro .intro-text {
    width: 100%;
    float: none;
    padding: 30px 6% 20px 6%;
    background: url("/wp-content/themes/shishalh/images/shell/watermark-white.png") left top 150px no-repeat;
    -webkit-background-size: 350px;
    -moz-background-size: 350px;
    -o-background-size: 350px;
    background-size: 350px;
    order: 2;
  }
}
@media screen and (max-width: 800px) and (max-width: 500px) {
  .intro .intro-text {
    padding-top: 25px;
  }
}
@media screen and (max-width: 800px) {
  .intro .intro-text.intro-top {
    padding: 150px 6% 20px 6%;
  }
}
.intro .intro-img {
  width: 50%;
  background: center center no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: relative;
}
@media screen and (max-width: 800px) {
  .intro .intro-img {
    position: relative;
    padding-top: 50%;
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .intro .intro-img {
    padding-top: 60%;
  }
}
.intro .intro-img .caption {
  position: absolute;
  color: white;
  font-size: 16px;
  font-family: "Barlow", Helvetica, Roboto, Arial, sans-serif;
  bottom: 30px;
  left: 35px;
}
@media screen and (max-width: 800px) {
  .intro .intro-img .caption {
    bottom: 18px;
    left: 21px;
  }
}
.intro .intro-img .gradient {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,000000+100&0+0,0.57+100 */
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.57) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.57) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.57) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00ffffff", endColorstr="#91000000",GradientType=0 );
  /* IE6-9 */
}

.post-search {
  width: 100%;
  background: #e8e8e8;
  padding-left: 20%;
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
}
@media screen and (max-width: 1200px) {
  .post-search {
    padding-left: 14%;
  }
}
@media screen and (max-width: 800px) {
  .post-search {
    padding: 15px 6%;
  }
}
.post-search .post-search-inner {
  padding: 15px 45px 15px 0;
}
@media screen and (max-width: 1200px) {
  .post-search .post-search-inner {
    padding-right: 25px;
  }
}
@media screen and (max-width: 800px) {
  .post-search .post-search-inner {
    padding: 0;
  }
}
.post-search .search-field {
  font-size: 16px;
  height: 50px;
  border: 0;
  outline: 0;
  padding-left: 20px;
  width: calc(100% - 140px);
  float: left;
  background: white;
}
@media screen and (max-width: 1200px) {
  .post-search .search-field {
    width: calc(100% - 110px);
  }
}
.post-search .submit-wrap {
  float: right;
  width: 140px;
  height: 50px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .post-search .submit-wrap {
    width: 110px;
  }
}
.post-search .submit-wrap:after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  pointer-events: none;
  background: url("/wp-content/themes/shishalh/images/shell/arrow-white.svg") center right 20px no-repeat;
  -webkit-background-size: 10px;
  -moz-background-size: 10px;
  -o-background-size: 10px;
  background-size: 10px;
}
@media screen and (max-width: 1200px) {
  .post-search .submit-wrap:after {
    background: url("/wp-content/themes/shishalh/images/shell/arrow-white.svg") center right 15px no-repeat;
    -webkit-background-size: 10px;
    -moz-background-size: 10px;
    -o-background-size: 10px;
    background-size: 10px;
  }
}
.post-search .search-submit {
  border-radius: 0px;
  border: 0;
  outline: 0;
  background-color: #e8c137;
  font-size: 16px;
  line-height: 1;
  padding: 10px 30px;
  outline: none;
  display: block;
  width: 100%;
  height: 50px;
  color: white;
  font-weight: 600;
  text-align: left;
  z-index: 99;
  background-image: url("/wp-content/themes/shishalh/images/shell/wave.png");
  background-position: center center;
  background-size: cover;
  -webkit-transition: background-color 0.2s ease-out;
  -moz-transition: background-color 0.2s ease-out;
  -ms-transition: background-color 0.2s ease-out;
  -o-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
}
@media screen and (max-width: 1200px) {
  .post-search .search-submit {
    padding: 10px 15px;
  }
}
.post-search .search-submit:hover {
  background-color: #e8c137;
}

.flipped-block {
  display: flex;
  flex-wrap: wrap;
}
.flipped-block.flipped-second .flipped-text {
  order: 1;
  padding: 3% 5% 3% 10%;
}
@media screen and (max-width: 1400px) {
  .flipped-block.flipped-second .flipped-text {
    padding: 3% 5% 3% 7%;
  }
}
@media screen and (max-width: 1020px) {
  .flipped-block.flipped-second .flipped-text {
    padding: 2% 5% 3% 5%;
  }
}
@media screen and (max-width: 800px) {
  .flipped-block.flipped-second .flipped-text {
    width: 100%;
    padding: 20px 6%;
    order: 2;
  }
}
.flipped-block.flipped-second .flipped-img {
  order: 2;
}
@media screen and (max-width: 800px) {
  .flipped-block.flipped-second .flipped-img {
    order: 1;
  }
}
.flipped-block .flipped-text {
  width: 50%;
  padding: 3% 10% 3% 5%;
}
@media screen and (max-width: 1400px) {
  .flipped-block .flipped-text {
    padding: 3% 7% 3% 5%;
  }
}
@media screen and (max-width: 1020px) {
  .flipped-block .flipped-text {
    padding: 2% 5% 3% 5%;
  }
}
@media screen and (max-width: 800px) {
  .flipped-block .flipped-text {
    width: 100%;
    padding: 20px 6%;
  }
}
.flipped-block .flipped-img {
  width: 50%;
  background: center center no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 800px) {
  .flipped-block .flipped-img {
    width: 100%;
    padding-top: 50%;
  }
}
@media screen and (max-width: 600px) {
  .flipped-block .flipped-img {
    padding-top: 60%;
  }
}

.candidates-block .candidates-type-wrap {
  padding: 3% 7%;
  text-align: center;
}
.candidates-block .candidates-type-wrap:first-of-type {
  background: #e8e8e8;
}
.candidates-block .candidates-type-wrap .candidates-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.candidates-block .candidates-type-wrap .candidates-wrap .candidates {
  width: 25%;
  padding: 30px;
  text-align: center;
}
@media screen and (max-width: 1100px) {
  .candidates-block .candidates-type-wrap .candidates-wrap .candidates {
    width: 50%;
    padding: 25px;
  }
}
@media screen and (max-width: 600px) {
  .candidates-block .candidates-type-wrap .candidates-wrap .candidates {
    padding: 20px;
    font-size: 14px;
  }
}
.candidates-block .candidates-type-wrap .candidates-wrap .candidates .single-img {
  max-width: 220px;
  padding-top: 60%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  margin: 0 auto 20px auto;
}
@media screen and (max-width: 600px) {
  .candidates-block .candidates-type-wrap .candidates-wrap .candidates .single-img {
    padding-top: 70%;
    margin-bottom: 15px;
  }
}
.candidates-block .candidates-type-wrap .candidates-wrap .candidates .name {
  font-weight: bold;
  padding-bottom: 5px;
}
@media screen and (max-width: 600px) {
  .candidates-block .candidates-type-wrap .candidates-wrap .candidates .name {
    padding: 0px;
  }
}

.grey-block {
  display: flex;
  flex-wrap: wrap;
  background: #e8e8e8;
  padding: 0px 5%;
  align-items: center;
}
@media screen and (max-width: 1400px) {
  .grey-block {
    padding: 0px 3.5%;
  }
}
@media screen and (max-width: 1020px) {
  .grey-block {
    padding: 0px 2%;
  }
}
@media screen and (max-width: 800px) {
  .grey-block {
    padding: 3% 0px;
  }
}
.grey-block .column {
  width: 50%;
  padding: 5% 5% 4% 5%;
}
@media screen and (max-width: 1400px) {
  .grey-block .column {
    padding: 4%;
  }
}
@media screen and (max-width: 1020px) {
  .grey-block .column {
    padding: 3%;
  }
}
@media screen and (max-width: 800px) {
  .grey-block .column {
    width: 100%;
    padding: 0% 6%;
  }
}
.grey-block .column.column-full {
  width: 100%;
}
.grey-block .column.column-full .secondary-heading {
  width: 100%;
}

.modal {
  display: none;
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 99999;
}
.modal .modal-inner {
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  left: 0px;
  background: rgba(255, 255, 255, 0.8);
  overflow-y: scroll;
}
.modal .modal-content {
  background: white;
  padding: 50px;
  max-width: 800px;
  margin: 100px auto;
  box-shadow: 0px 5px 50px rgba(0, 0, 0, 0.1);
  position: relative;
}
.modal .modal-content .secondary-heading {
  margin-top: 0px;
}
.modal .modal-content .modal-close {
  position: absolute;
  right: 25px;
  top: 25px;
  width: 40px;
  height: 40px;
  background: url("/wp-content/themes/shishalh/images/shell/close.png") center center no-repeat;
  -webkit-background-size: 30px;
  -moz-background-size: 30px;
  -o-background-size: 30px;
  background-size: 20px;
  cursor: pointer;
}
.modal .gform_wrapper {
  margin: 0px;
}
.modal .gform_wrapper .validation_error {
  border: none;
  padding: 15px 20px;
  background: #2291cf;
  color: white;
  line-height: 1.4;
  font-weight: 400;
}
.modal .gform_wrapper form#gform_3 ul {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 20px);
}
.modal .gform_wrapper form#gform_3 ul li {
  padding: 0px 20px 20px 0px;
  margin: 0px;
  width: 50%;
}
.modal .gform_wrapper form#gform_3 ul li#field_3_6, .modal .gform_wrapper form#gform_3 ul li#field_3_9 {
  width: 100%;
}
.modal .gform_wrapper form#gform_3 ul li.gfield_error {
  border: none;
  background: none;
  margin: 0px;
}
.modal .gform_wrapper form#gform_3 ul li.gfield_error .validation_message {
  padding: 5px 5px 0px 0px;
}
.modal .gform_wrapper form#gform_3 ul li label {
  font-weight: bold;
  font-size: 16px;
}
.modal .gform_wrapper form#gform_3 ul li input, .modal .gform_wrapper form#gform_3 ul li select {
  background: #f6f6f6;
  border: none;
  width: 100%;
  height: 45px;
  padding: 0px 15px;
}
.modal .gform_wrapper form#gform_3 ul li textarea {
  width: 100%;
  background: #f6f6f6;
  border: none;
  width: 100%;
  padding: 10px 20px;
  height: 185px;
}
.modal .gform_wrapper form#gform_3 .gform_footer {
  padding: 0px;
  margin: 0px;
  text-align: right;
}
.modal .gform_wrapper form#gform_3 .gform_footer .gform_button {
  border: none;
  background: url("/wp-content/themes/shishalh/images/shell/arrow-yellow.svg") right center no-repeat;
  background-size: 13px;
  font-weight: bold;
  font-size: 16px;
  margin: 0px;
  -webkit-transition: color 0.2s ease-out;
  -moz-transition: color 0.2s ease-out;
  -ms-transition: color 0.2s ease-out;
  -o-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
}
.modal .gform_wrapper form#gform_3 .gform_footer .gform_button:hover {
  color: #2291cf;
}

.swapper-wrap {
  position: relative;
  overflow: hidden;
  background: #2291cf;
}
@media screen and (max-width: 800px) {
  .swapper-wrap {
    background: white;
    display: flex;
    flex-wrap: wrap;
    overflow: visible;
  }
}

.content-titles {
  width: 50%;
  float: left;
  background: white;
  padding: 30px 60px 40px 10%;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 1200px) {
  .content-titles {
    width: calc(100% - 198px);
  }
}
.content-titles .title {
  float: left;
  position: relative;
  display: block;
  font-weight: 800;
  font-size: 16px;
  font-family: "Barlow", Helvetica, Roboto, Arial, sans-serif;
  opacity: 0.25;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.content-titles .title:not(:last-of-type) {
  margin-right: 40px;
}
@media screen and (max-width: 1500px) {
  .content-titles .title:not(:last-of-type) {
    margin-right: 30px;
  }
}
.content-titles .title:hover {
  cursor: pointer;
  opacity: 1;
}
.content-titles .title:hover:after {
  transform: none;
  opacity: 1;
}
.content-titles .title.active {
  opacity: 1;
}
.content-titles .title.active:after {
  transform: none;
  opacity: 1;
}
.content-titles .title:after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  background: #e8c137;
  transform: translateY(10px);
  opacity: 0;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.swapper-wrap .content-swapper {
  width: 100%;
  order: 2;
}
.swapper-wrap .content-swapper .slick-list {
  width: calc(50% - 175px - 198px);
  z-index: 99;
  position: relative;
  float: right;
  right: 175px;
}
@media screen and (max-width: 1550px) {
  .swapper-wrap .content-swapper .slick-list {
    width: calc(50% - 60px - 198px);
    right: 60px;
  }
}
@media screen and (max-width: 1350px) {
  .swapper-wrap .content-swapper .slick-list {
    width: calc(50% - 198px);
    right: 0;
  }
}
@media screen and (max-width: 1200px) {
  .swapper-wrap .content-swapper .slick-list {
    width: 50%;
    right: initial;
  }
}
@media screen and (max-width: 800px) {
  .swapper-wrap .content-swapper .slick-list {
    width: calc(100%);
    float: right;
    margin-top: 0;
  }
}
.swapper-wrap .content-swapper .content {
  color: white;
  position: relative;
}
@media screen and (max-width: 800px) {
  .swapper-wrap .content-swapper .content {
    color: inherit;
  }
}
.swapper-wrap .content-swapper .content a {
  color: white;
}
@media screen and (max-width: 800px) {
  .swapper-wrap .content-swapper .content a {
    color: inherit;
  }
}
.swapper-wrap .content-swapper .content a:hover {
  color: #e8c137;
}
.swapper-wrap .content-swapper .content .content-main {
  padding: 5% 12.5% 8% 12.5%;
  position: relative;
  z-index: 99;
  background: #2291cf;
}
@media screen and (max-width: 1200px) {
  .swapper-wrap .content-swapper .content .content-main {
    padding: calc(4% + 98px) 10% 30px 10%;
  }
}
@media screen and (max-width: 800px) {
  .swapper-wrap .content-swapper .content .content-main {
    padding: 75px 6% 20px 6%;
    background: white;
  }
}
.swapper-wrap .content-swapper .slick-dots {
  position: absolute;
  width: 50%;
  padding: 30px 105px 40px 30px;
  top: 0;
  left: 0;
  background: #e8e8e8;
  list-style-type: none;
  z-index: 99;
  margin: 0px;
  display: flex;
  height: 98px;
  justify-content: center;
}
@media screen and (max-width: 1550px) {
  .swapper-wrap .content-swapper .slick-dots {
    padding: 30px 30px 40px 30px;
  }
}
@media screen and (max-width: 1200px) {
  .swapper-wrap .content-swapper .slick-dots {
    width: calc(100%);
    padding-right: 220px;
  }
}
@media screen and (max-width: 800px) {
  .swapper-wrap .content-swapper .slick-dots {
    display: none;
    visibility: hidden;
    z-index: -99999;
  }
}
.swapper-wrap .content-swapper .slick-dots li {
  padding: 0px;
  display: inline-block;
}
.swapper-wrap .content-swapper .slick-dots li:after {
  display: none;
}
.swapper-wrap .content-swapper .slick-dots li:not(:last-of-type) {
  margin-right: 40px;
}
@media screen and (max-width: 1550px) {
  .swapper-wrap .content-swapper .slick-dots li:not(:last-of-type) {
    margin-right: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .swapper-wrap .content-swapper .slick-dots li:not(:last-of-type) {
    margin-right: 5%;
  }
}
@media screen and (max-width: 900px) {
  .swapper-wrap .content-swapper .slick-dots li:not(:last-of-type) {
    margin-right: 30px;
  }
}
.swapper-wrap .content-swapper .slick-dots li a {
  position: relative;
  cursor: pointer;
  display: block;
  font-size: 16px;
  font-weight: 800;
  opacity: 0.25;
  color: #2b2b2b;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
@media screen and (max-width: 1300px) {
  .swapper-wrap .content-swapper .slick-dots li a {
    font-size: 14px;
    margin-top: 3px;
  }
}
.swapper-wrap .content-swapper .slick-dots li a:hover {
  opacity: 1;
  color: #2b2b2b;
}
.swapper-wrap .content-swapper .slick-dots li a:hover:after {
  opacity: 1;
  transform: none;
}
.swapper-wrap .content-swapper .slick-dots li a:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0px;
  right: 0px;
  height: 4px;
  background: #e8c137;
  opacity: 0;
  transform: translateY(10px);
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.swapper-wrap .content-swapper .slick-dots li.slick-active a {
  opacity: 1;
}
.swapper-wrap .content-swapper .slick-dots li.slick-active a:after {
  opacity: 1;
  transform: none;
}
.swapper-wrap .content-swapper .slick-prev {
  top: 0;
  left: 50%;
  background: #e8c137 url("/wp-content/themes/shishalh/images/shell/arrow-white-left.svg") center center no-repeat;
  -webkit-background-size: 12px;
  -moz-background-size: 12px;
  -o-background-size: 12px;
  background-size: 12px;
  z-index: 5;
}
@media screen and (max-width: 1200px) {
  .swapper-wrap .content-swapper .slick-prev {
    left: initial;
    right: 100px;
  }
}
@media screen and (max-width: 800px) {
  .swapper-wrap .content-swapper .slick-prev {
    left: 0;
    right: initial;
    -webkit-background-size: 8px;
    -moz-background-size: 8px;
    -o-background-size: 8px;
    background-size: 8px;
  }
}
.swapper-wrap .content-swapper .slick-next {
  top: 0;
  left: calc(50% + 100px);
  z-index: 105;
  border: 0;
  background: #e8c137 url("/wp-content/themes/shishalh/images/shell/arrow-white.svg") center center no-repeat;
  -webkit-background-size: 12px;
  -moz-background-size: 12px;
  -o-background-size: 12px;
  background-size: 12px;
  z-index: 5;
}
@media screen and (max-width: 1200px) {
  .swapper-wrap .content-swapper .slick-next {
    left: initial;
    right: 0;
  }
}
@media screen and (max-width: 800px) {
  .swapper-wrap .content-swapper .slick-next {
    left: 61px;
    right: initial;
    -webkit-background-size: 8px;
    -moz-background-size: 8px;
    -o-background-size: 8px;
    background-size: 8px;
  }
}
.swapper-wrap .content-swapper .slick-prev, .swapper-wrap .content-swapper .slick-next {
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  width: 98px;
  height: 98px;
  position: absolute;
  font-size: 0;
  z-index: 105;
  border: 0;
}
@media screen and (max-width: 800px) {
  .swapper-wrap .content-swapper .slick-prev, .swapper-wrap .content-swapper .slick-next {
    width: 60px;
    height: 60px;
  }
}
.swapper-wrap .content-swapper .slick-prev:after, .swapper-wrap .content-swapper .slick-next:after {
  content: "";
  background: url("/wp-content/themes/shishalh/images/shell/wave.png") center left -88px no-repeat;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  opacity: 1;
  -webkit-transition: opacity 0.2s ease-out;
  -moz-transition: opacity 0.2s ease-out;
  -ms-transition: opacity 0.2s ease-out;
  -o-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}
.swapper-wrap .content-swapper .slick-prev:hover, .swapper-wrap .content-swapper .slick-next:hover {
  background-color: #2291cf;
}

.overlap-block {
  background: #e8e8e8;
  padding-bottom: 1px;
}
.overlap-block .overlap-banner {
  background: center center no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  padding-top: 38%;
}
.overlap-block .column-wrap {
  background: white;
  display: flex;
  flex-wrap: wrap;
  margin: -250px 80px 79px 80px;
}
@media screen and (max-width: 1020px) {
  .overlap-block .column-wrap {
    margin: -100px 3% 3% 3%;
  }
}
@media screen and (max-width: 800px) {
  .overlap-block .column-wrap {
    padding: 2% 0;
    margin: 0px;
  }
}
.overlap-block .column {
  width: 50%;
  padding: 2% 5%;
}
@media screen and (max-width: 800px) {
  .overlap-block .column {
    width: 100%;
    padding: 0% 6%;
  }
}

.two-col .col-6:nth-of-type(odd) {
  float: left;
  clear: both;
  padding: 100px 7% 100px 10%;
}
@media screen and (max-width: 1400px) {
  .two-col .col-6:nth-of-type(odd) {
    padding: 75px 7% 75px 10%;
  }
}
@media screen and (max-width: 800px) {
  .two-col .col-6:nth-of-type(odd) {
    float: none;
    clear: both;
    width: 100%;
  }
}
.two-col .col-6:nth-of-type(even) {
  float: right;
  padding: 100px 10% 100px 7%;
}
@media screen and (max-width: 1400px) {
  .two-col .col-6:nth-of-type(even) {
    padding: 75px 10% 100px 7%;
  }
}
@media screen and (max-width: 800px) {
  .two-col .col-6:nth-of-type(even) {
    float: none;
    clear: both;
    width: 100%;
  }
}

.cta {
  background-color: #edcf65;
  background: center center no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  text-align: center;
  padding: 60px 10%;
  font-size: 35px;
  border-top: 10px solid #e8c137;
  border-bottom: 10px solid #e8c137;
  max-width: 1800px;
  margin: 0 auto;
}
.cta.cta-upper {
  background-color: #44a8e0;
  border-top: 10px solid #2291cf;
  border-bottom: 10px solid #2291cf;
}
.cta.cta-upper a:hover {
  color: #e8c137;
  background: url("/wp-content/themes/shishalh/images/shell/arrow-yellow.svg") right center no-repeat;
  -webkit-background-size: 16px;
  -moz-background-size: 16px;
  -o-background-size: 16px;
  background-size: 16px;
}
@media screen and (max-width: 800px) {
  .cta.cta-upper a:hover {
    -webkit-background-size: 11px;
    -moz-background-size: 11px;
    -o-background-size: 11px;
    background-size: 11px;
  }
}
@media screen and (max-width: 1400px) {
  .cta {
    font-size: 30px;
  }
}
@media screen and (max-width: 1050px) {
  .cta {
    font-size: 24px;
    border-top: 10px solid #e8c137;
    border-bottom: 10px solid #e8c137;
  }
}
@media screen and (max-width: 800px) {
  .cta {
    padding: 35px 6%;
    font-size: 20px;
    border-top: 5px solid #e8c137;
    border-bottom: 5px solid #e8c137;
  }
}
.cta a {
  font-family: "Montserrat", Helvetica, Roboto, Arial, sans-serif;
  font-weight: 400;
  padding: 0px 30px 0 0;
  color: white;
  display: inline-block;
  background: url("/wp-content/themes/shishalh/images/shell/arrow-white.svg") right center no-repeat;
  -webkit-background-size: 16px;
  -moz-background-size: 16px;
  -o-background-size: 16px;
  background-size: 16px;
  -webkit-transition: none 0.2s ease-out;
  -moz-transition: none 0.2s ease-out;
  -ms-transition: none 0.2s ease-out;
  -o-transition: none 0.2s ease-out;
  transition: none 0.2s ease-out;
}
@media screen and (max-width: 800px) {
  .cta a {
    padding-right: 25px;
    -webkit-background-size: 11px;
    -moz-background-size: 11px;
    -o-background-size: 11px;
    background-size: 11px;
  }
}
.cta a:hover {
  color: #2291cf;
  background: url("/wp-content/themes/shishalh/images/shell/arrow-blue.svg") right center no-repeat;
  -webkit-background-size: 16px;
  -moz-background-size: 16px;
  -o-background-size: 16px;
  background-size: 16px;
}
@media screen and (max-width: 800px) {
  .cta a:hover {
    -webkit-background-size: 11px;
    -moz-background-size: 11px;
    -o-background-size: 11px;
    background-size: 11px;
  }
}
@media screen and (max-width: 800px) {
  .cta a {
    font-weight: 400;
  }
}
.cta:hover {
  color: white;
}
.cta:hover:after {
  transform: scaleY(1);
}
.cta:hover:before {
  transform: scaleY(1);
}
.cta:hover .cta-content:after {
  transform: translate(20px, -50%);
  opacity: 0;
}
.cta:hover .cta-bg {
  opacity: 0.5;
}
.cta .cta-inner {
  position: relative;
  padding: 60px 0;
}
@media screen and (max-width: 850px) {
  .cta .cta-inner {
    padding: 45px 0;
  }
}
.cta .cta-content {
  display: inline-block;
  position: relative;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  position: relative;
  z-index: 5;
}
.cta .cta-content:after {
  content: "";
  position: absolute;
  right: -50px;
  width: 30px;
  height: 24px;
  top: 54%;
  transform: translateY(-50%);
  background-image: url("/wp-content/themes/shishalh/images/shell/arrow-white.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
@media screen and (max-width: 1050px) {
  .cta .cta-content:after {
    height: 20px;
  }
}
@media screen and (max-width: 850px) {
  .cta .cta-content:after {
    height: 16px;
    right: -30px;
  }
}
.cta .cta-bg {
  z-index: 1;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  opacity: 0.15;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.content-images .slick-slide, .content-swapper .slick-slide {
  min-height: 710px;
}
@media screen and (max-width: 800px) {
  .content-images .slick-slide, .content-swapper .slick-slide {
    min-height: 0px;
  }
}

.slick-slide {
  float: left;
  height: 100%;
  display: none;
}
@media screen and (max-width: 800px) {
  .slick-slide {
    min-height: 250px;
  }
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.content-images {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 1;
}
@media screen and (max-width: 800px) {
  .content-images {
    position: relative;
    top: initial;
    left: initial;
    right: initial;
    bottom: initial;
    clear: both;
    width: 100%;
    order: 1;
  }
}
.content-images .content-img {
  background: center center no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  float: left;
}
@media screen and (max-width: 800px) {
  .content-images .content-img {
    min-height: 300px;
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .content-images .content-img {
    min-height: 250px;
  }
}

#pronounciation-section {
  padding: 5% 10%;
  background-color: #e8e8e8;
}
@media screen and (max-width: 1400px) {
  #pronounciation-section {
    padding: 5% 3.5%;
  }
}
@media screen and (max-width: 1000px) {
  #pronounciation-section {
    padding: 5% 2%;
  }
}
#pronounciation-section .secondary-heading {
  margin-bottom: 35px;
}
@media screen and (max-width: 900px) {
  #pronounciation-section .secondary-heading {
    margin-bottom: 20px;
    padding-left: 20px;
  }
}
#pronounciation-section .clip-category {
  background-color: #2291cf;
  color: white;
  padding: 15px 30px;
  font-size: 18px;
  letter-spacing: 0.5px;
  font-weight: 600;
  position: relative;
  transition: all 400ms ease;
}
@media screen and (max-width: 800px) {
  #pronounciation-section .clip-category {
    padding: 10px 25px;
    font-size: 16px;
  }
}
#pronounciation-section .audio-title {
  padding: 7px 15px 0px 15px;
  font-weight: bold;
}
@media screen and (max-width: 1000px) {
  #pronounciation-section .audio-title {
    padding: 7px 10px 0px 10px;
  }
}
#pronounciation-section .clips {
  list-style: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background: white;
  padding: 15px;
  margin-bottom: 30px;
}
#pronounciation-section .clips .audio-item {
  width: 50%;
  transition: all 400ms ease;
  padding-left: 0px;
  background: white;
}
@media screen and (max-width: 800px) {
  #pronounciation-section .clips .audio-item {
    width: 100%;
    margin-bottom: 10px;
  }
}
#pronounciation-section .clips .audio-item:after {
  display: none;
}
#pronounciation-section .clips .audio-item .audio-item-inner {
  background-color: white;
  overflow: hidden;
}
#pronounciation-section .clips .audio-item .audio-item-inner .audio-item-flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 15px;
}
@media screen and (max-width: 1000px) {
  #pronounciation-section .clips .audio-item .audio-item-inner .audio-item-flex {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0px 5px;
  }
}
#pronounciation-section .clips .audio-item .audio-item-inner .audio-img {
  max-width: 38%;
}
@media screen and (max-width: 1000px) {
  #pronounciation-section .clips .audio-item .audio-item-inner .audio-img {
    max-width: 90%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 800px) {
  #pronounciation-section .clips .audio-item .audio-item-inner .audio-img {
    max-width: 70%;
  }
}
#pronounciation-section .clips .audio-item .audio-item-inner .youtube-wrap {
  width: 100%;
}
#pronounciation-section .clips .audio-item .audio-item-inner .youtube-wrap iframe {
  width: 100%;
  float: right;
}
@media screen and (max-width: 1000px) {
  #pronounciation-section .clips .audio-item .audio-item-inner .youtube-wrap iframe {
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  #pronounciation-section .clips .audio-item .audio-item-inner .youtube-wrap iframe {
    height: 200px;
  }
}
#pronounciation-section .clips .audio-item .audio-item-inner .audio-file-list {
  max-width: 55%;
}
@media screen and (max-width: 1000px) {
  #pronounciation-section .clips .audio-item .audio-item-inner .audio-file-list {
    max-width: 100%;
    width: 100%;
  }
}
#pronounciation-section .clips .audio-item .audio-item-inner .audio-files {
  width: 100%;
  list-style: none;
}
#pronounciation-section .clips .audio-item .audio-item-inner .audio-files .audio-file {
  padding: 0px;
  width: 100%;
}
#pronounciation-section .clips .audio-item .audio-item-inner .audio-files .audio-file:after {
  display: none;
}
#pronounciation-section .clips .audio-item .audio-item-inner .audio-files .audio-file audio {
  max-width: 100%;
  min-width: 100%;
}
@media screen and (max-width: 1000px) {
  #pronounciation-section .clips .audio-item .audio-item-inner .audio-files .audio-file audio {
    margin-bottom: 10px;
  }
}

/*# sourceMappingURL=styles.css.map */
