@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,700");
@import url("https://fonts.googleapis.com/css?family=Rozha+One");
html, body, div, 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: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/* Custom Reset */
html, body, div, span, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, address, fieldset, form, label,
article, aside, figure, figcaption, footer, header,
menu, nav section {
  margin: 0;
  padding: 0;
  border: 0;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
  line-height: 0;
}

/* BREAKPOINTS */
/* TEXTS */
/*
* General styles
*/
* {
  box-sizing: border-box;
}

.ease, .btn a, #navigation-container {
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

html {
  font-size: 62.5%;
  height: 100%;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "pt-serif", sans-serif;
  font-weight: 400;
}
@media screen and (min-width: 601px) {
  body.logged-in {
    padding-top: 46px;
  }
}
@media screen and (min-width: 783px) {
  body.logged-in {
    padding-top: 32px;
  }
}
@media screen and (max-width: 600px) {
  body.logged-in #header {
    padding-top: 46px;
  }
}
@media screen and (max-width: 600px) {
  body.logged-in #nav-trigger {
    top: 99px;
  }
}
@media screen and (min-width: 783px) {
  body.logged-in #nav-trigger {
    top: 97px;
  }
}
body.logged-in #nav-trigger.active {
  top: 97px;
}
@media screen and (min-width: 768px) {
  body.logged-in #nav-trigger.active {
    top: 143px;
  }
}
@media screen and (min-width: 783px) {
  body.logged-in #nav-trigger.active {
    top: 129px;
  }
}

.wrapper {
  margin: 0 auto;
  max-width: 1366px;
}

a {
  text-decoration: none;
  cursor: pointer;
}

.btn {
  display: inline-block;
  min-width: 100px;
  text-align: center;
}
.btn a {
  display: block;
}
.btn.btn-primary {
  background-color: #0070CD;
}
.btn.btn-primary a {
  color: #fff;
}

/* Jquery UI Select basic styles */
[type=color],
[type=date],
[type=datetime-local],
[type=datetime],
[type=email],
[type=month],
[type=number],
[type=password],
[type=search],
[type=tel],
[type=text],
[type=time],
[type=url],
[type=week],
textarea,
select,
.ui-selectmenu-button {
  /* STYLES GO THERE */
  height: var(--input-height);
  margin-bottom: 0;
}

.ui-selectmenu-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 300px;
  background: #fff;
  cursor: pointer;
  height: 60px;
  border-radius: 30px;
  border: 2px solid #1492E6;
}
.ui-selectmenu-button[aria-expanded="true"] {
  border-radius: 30px 30px 0 0;
  border-bottom: none;
}
.ui-selectmenu-button[aria-expanded="true"] .ui-icon {
  transform: translateY(-50%) rotate(180deg);
}
.ui-selectmenu-button .ui-icon {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 9.5px;
  background: url("../images/icons/arrow.svg") no-repeat;
  background-size: contain;
  transition: transform .3s ease-in-out;
}

.ui-selectmenu-text {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: left;
  font-size: 16px;
  line-height: normal;
  color: #1492E6;
  padding: 0 0 0 30px;
  font-family: "rubik", sans-serif;
}

.ui-selectmenu-menu {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  display: none;
  margin: 0;
  padding: 0;
}
.ui-selectmenu-menu .ui-menu {
  overflow: auto;
  max-height: 400px;
  border: 2px solid #1492E6;
  border-radius: 0 0 30px 30px;
  background-color: #fff;
}
.ui-selectmenu-menu .ui-menu .ui-menu-item {
  flex: 0 1 100%;
  border: none;
  background-color: #fff;
  color: black;
  font-size: 16px;
  line-height: normal;
  cursor: pointer;
  font-family: "rubik", sans-serif;
  border-bottom: 2px solid #1492E6;
}
.ui-selectmenu-menu .ui-menu .ui-menu-item:last-of-type {
  border-bottom: none;
}
.ui-selectmenu-menu .ui-menu .ui-menu-item-wrapper {
  padding: 20px 30px;
  color: #1492E6;
}
.ui-selectmenu-menu .ui-menu .ui-menu-item-wrapper.ui-state-active {
  background-color: rgba(20, 146, 230, 0.1);
}

.ui-selectmenu-open {
  display: block;
}

header {
  display: none;
}
header .header-content .nav-container {
  padding: 0 20px 0 0;
  display: none;
}
@media only screen and (min-width: 768px) {
  header .header-content .nav-container {
    display: flex;
    align-items: center;
    position: absolute;
    z-index: 1;
    right: 0;
    top: 30px;
  }
}
@media only screen and (min-width: 1024px) {
  header .header-content .nav-container {
    padding: 0 60px 0 0;
  }
}

#nav-trigger {
  position: absolute;
  z-index: 2;
  top: 38px;
  left: 180px;
  cursor: pointer;
  width: 33px;
  height: 26px;
}
#nav-trigger:focus {
  outline: auto 5px Highlight;
  outline: -webkit-focus-ring-color auto 5px;
}
#nav-trigger .trigger-wrap {
  position: relative;
}
#nav-trigger .trigger-wrap span {
  background-color: #000000;
  margin: 0 auto;
  display: block;
  top: 9px;
  height: 3px;
  position: absolute;
  opacity: 1;
  right: 0;
  width: 33px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
#nav-trigger .trigger-wrap span:first-child {
  top: 0px;
}
#nav-trigger .trigger-wrap span:last-child {
  top: 18px;
}
#nav-trigger.active {
  z-index: 10;
}
#nav-trigger.active .trigger-wrap span {
  background-color: #000000;
  -moz-transform-origin: center 50%;
  -ms-transform-origin: center 50%;
  -webkit-transform-origin: center 50%;
  transform-origin: center 50%;
}
#nav-trigger.active .trigger-wrap span:first-child, #nav-trigger.active .trigger-wrap span:last-child {
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 12px;
  right: 0px;
}
#nav-trigger.active .trigger-wrap span:nth-child(2) {
  opacity: 0;
  top: 12px;
}
#nav-trigger.active .trigger-wrap span:last-child {
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#navigation-container {
  background-color: #ccc;
  position: fixed;
  width: 100%;
  right: -100%;
  height: 100vh;
  top: 0;
  z-index: 7;
  overflow: scroll;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (min-width: 768px) {
  #navigation-container {
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
}
@media only screen and (min-width: 1024px) {
  #navigation-container {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
}
#navigation-container.active {
  right: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
#navigation-container .inner-container {
  padding: 200px 0 0;
  width: 100%;
  height: 100%;
  max-width: 1280px;
}
#navigation-container .inner-container nav.navigation {
  width: 100%;
}
#navigation-container .inner-container nav.navigation .menu-main-menu {
  font-family: "rubik", sans-serif;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
}
#navigation-container .inner-container nav.navigation .menu-main-menu li {
  display: block;
  line-height: 1.1;
  border-bottom: 1px solid #111;
  border-top: 1px solid #313131;
}
@media only screen and (min-width: 768px) {
  #navigation-container .inner-container nav.navigation .menu-main-menu li {
    width: auto;
    padding: 0 0 30px;
  }
}
#navigation-container .inner-container nav.navigation .menu-main-menu li:hover > a {
  color: #95d0f2;
}
#navigation-container .inner-container nav.navigation .menu-main-menu li.menu-item-has-children a::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f078";
  position: absolute;
  right: 5%;
}
#navigation-container .inner-container nav.navigation .menu-main-menu li.menu-item-has-children a.chevron-up::after {
  content: "\f077";
}
#navigation-container .inner-container nav.navigation .menu-main-menu li.menu-item-has-children ul li a::after {
  content: "";
}

/* Use sections within sections
<section>
	<section>

	</section>
</section>
*/
#home .iframes-tabs__image {
  position: relative;
  margin: 0 0 -30px;
}
#home .iframes-tabs__image img {
  width: 100%;
  height: 100%;
  max-height: 310px;
  object-fit: cover;
  object-position: bottom;
}
#home .iframes-tabs__image:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}
#home .iframes-tabs .container {
  position: relative;
  max-width: 1156px;
  width: 100%;
  padding: 0 20px 0;
  margin: 0 auto;
}
#home .iframes-tabs__header {
  text-align: center;
  margin: 0 auto 50px;
  max-width: 600px;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  #home .iframes-tabs__header {
    margin: 0 auto 105px;
  }
}
#home .iframes-tabs__header-heading {
  font-size: 35px;
  line-height: 46px;
  margin: 0 0 40px;
}
#home .iframes-tabs__header-copy {
  font-size: 16px;
  line-height: 25px;
  font-family: "rubik", sans-serif;
  max-width: 265px;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  #home .iframes-tabs__header-copy {
    max-width: none;
  }
}
#home .iframes-tabs__items {
  display: none;
}
@media only screen and (min-width: 1024px) {
  #home .iframes-tabs__items {
    display: flex;
    justify-content: center;
    column-gap: 20px;
    margin: 0 0 70px;
  }
}
#home .iframes-tabs__items-mobile {
  display: flex;
  justify-content: center;
  margin: 0 0 80px;
}
@media only screen and (min-width: 1024px) {
  #home .iframes-tabs__items-mobile {
    display: none;
  }
}
#home .iframes-tabs__item-link {
  display: block;
  padding: 20px 30px;
  border: 2px solid #1492E6;
  border-radius: 24px;
  color: #1492E6;
  font-size: 16px;
  font-family: "rubik", sans-serif;
  transition: color .2s ease-in-out, background-color .2s ease-in-out;
}
#home .iframes-tabs__item-link:hover, #home .iframes-tabs__item-link.active {
  background: #1492E6;
  color: #fff;
}
#home .iframes-tabs__service-box {
  margin: 0 0 155px;
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  #home .iframes-tabs__service-box {
    margin: 0 0 270px;
  }
}
#home .iframes-tabs__service-link {
  padding: 0 0 5px;
  border-bottom: 2px solid #000000;
  font-family: "pt-serif", sans-serif;
  color: #000000;
  font-size: 16px;
  transition: border-bottom-color .2s ease-in-out;
}
#home .iframes-tabs__service-link:hover {
  border-bottom-color: transparent;
}
#home .iframes-tabs__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 0;
  background: #000000;
  color: #fff;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  #home .iframes-tabs__info {
    padding: 90px 0 75px;
  }
}
#home .iframes-tabs__info.hidden {
  display: none;
}
#home .iframes-tabs__info-heading {
  font-size: 35px;
  line-height: 46px;
  margin: 0 0 35px;
}
#home .iframes-tabs__info a {
  display: inline-block;
  font-size: 16px;
  line-height: normal;
  font-family: "rubik", sans-serif;
  margin: 0 0 10px;
  color: #fff;
  border-bottom: 1px solid transparent;
  transition: border-bottom-color .3s ease-in-out;
}
#home .iframes-tabs__info a:hover {
  border-bottom: 1px solid #fff;
}
#home .iframes-tabs__info a:last-of-type {
  margin: 0;
}
