/**
 * Variables
 */
:root {
  /* New set */
  --primary: #FFCC18;
  --secondary: #383a68;
  --dark: #1a1b31;
  --light: #d1d8e0;
  --border: #cccccc;
  --body-bg: #ffffff;
  --text-color: #222222;
  --bold-color: #111111;
  /* Font */
  --body-font: 'Noto Sans', sans-serif;
  --heading-font: 'Noto Sans', sans-serif;
  /* Extra */
  --shadow: 0 0 8px 4px var(--light);
}

/* HTML and Body
---------------------------------------- */
body {
  font-family: var(--body-font);
  background: var(--body-bg);
  color: var(--text-color);
}

/* Regions
---------------------------------------- */
summary {
  color: var(--text-color);
}

/* Typography
---------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  color: var(--bold-color);
}

strong {
  color: var(--bold-color);
}

em {
  color: var(--primary);
}

a {
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}

a,
a:active,
li a.active {
  color: var(--primary);
}

a:hover {
  color: var(--secondary);
}

/* Typography-> code tags */
code,
kbd,
pre,
samp {
  background: var(--dark);
  color: #ffffff;
}

mark {
  background: var(--primary);
  color: #ffffff;
}

figcaption {
  background: var(--secondary);
  color: #ffffff;
}

/* Form
---------------------------------------- */
/* Form -> Button */
a.button,
.button,
button,
[type="button"],
[type="reset"],
[type="submit"] {
  background-color: var(--secondary);
  color: #ffffff;
  border: 4px solid var(--primary);
  border-radius: 8px;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

a.button:hover,
.button:hover,
button:hover,
[type="button"],
[type="reset"]:hover,
[type="submit"]:hover {
  background-color: var(--dark);
  color: var(--primary);
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
  color: var(--text-color);
  background-color: var(--light);
  border: 1px solid var(--border);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
  border: 1px solid var(--primary);
  background: #f0f0f0;
}

fieldset {
  border: 1px solid var(--border);
}

/* Form -> Label */
.form-item label,
form label {
  font-weight: 700;
  color: var(--bold-color);
}

summary {
  font-family: var(--heading-font);
  font-weight: 700;
}

/* Form -> Radio buttons */
input[type="radio"],
input[type="checkbox"] {
  border: 2px solid var(--secondary);
}

input[type="radio"]:hover,
input[type="checkbox"]:hover {
  border: 2px solid var(--primary);
}

input[type="radio"]:checked,
input[type="checkbox"]:checked {
  background-color: var(--primary);
  color: #000000;
}

input[type="checkbox"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input[type="checkbox"]::after {
  content: '\2714';
  text-align: center;
  display: none;
}

input[type="checkbox"]:checked::after {
  display: block;
}

select {
  color: var(--text-color);
  background: #eeeeee;
  border: 1px solid var(--border);
}

::-webkit-input-placeholder {
  color: var(--border);
}

:-ms-input-placeholder {
  color: var(--border);
  opacity: 1;
}

::-ms-input-placeholder {
  color: var(--border);
  opacity: 1;
}

::placeholder {
  color: var(--border);
  opacity: 1;
}

:-ms-input-placeholder {
  color: var(--border);
}

::-ms-input-placeholder {
  color: #969696;
}

:-moz-placeholder {
  color: var(--border);
}

::-moz-placeholder {
  color: var(--border);
}

/* Common HTML Elements
---------------------------------------- */
hr {
  background-color: var(--border);
}

dt {
  color: var(--bold-color);
}

blockquote {
  background: var(--light);
  -webkit-box-shadow: 2px 2px 6px var(--border);
          box-shadow: 2px 2px 6px var(--border);
  border-left: 8px solid var(--secondary);
}

/* Table
---------------------------------------- */
th {
  background: var(--secondary);
  color: #fff;
  border: 1px solid var(--header-top-bg);
}

td {
  border: 1px solid var(--border);
}

/* Selection
---------------------------------------- */
::-moz-selection {
  background: var(--primary);
  color: #fff;
  text-shadow: none;
}

::selection {
  background: var(--primary);
  color: #fff;
  text-shadow: none;
}

ul.page-tabs {
  border-bottom: 2px solid var(--secondary);
}

.page-tabs li a {
  background: #dddddd;
  color: var(--secondary);
  border-right: 2px solid var(--secondary);
}

.page-tabs li.active-page-tab a,
.page-tabs li a:hover {
  background: var(--secondary);
}

/* Filter Module */
.filter-wrapper {
  border: 1px solid var(--border);
}

/* Block edit button for admin */
/* Header Top
------------------------------- */
.header-top {
  background: var(--dark);
  color: var(--light);
}

.header-top a {
  color: var(--light);
}

.header-top a:hover,
.header-top i {
  color: var(--primary);
}

.header-contact-info {
  display: inline-block;
  padding-right: 1rem;
}

.header-contact-info:last-child {
  padding-right: 0;
}

/* Header
------------------------------- */
.header {
  background: var(--secondary);
  color: #ffffff;
}

.header-container {
  padding: 1rem 0;
}

.site-brand img {
  max-height: 50px;
  display: block;
}

.site-name {
  color: var(--primary);
  font-weight: 700;
}

.site-name a:hover {
  color: #ffffff;
}

/* Header -> Main menu */
.mobile-menu {
  border-top: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}

.mobile-menu span {
  background-color: #ffffff;
}

.menu-wrap {
  font-family: var(--heading-font);
  font-weight: 700;
}

.menu-wrap ul.menu > li {
  margin-left: 6px;
}

.menu-wrap ul.menu li > a {
  padding: 10px;
}

/* Header -> search block region */
.search-icon {
  width: 36px;
  height: 36px;
}

.search-icon img {
  max-height: 30px;
}

.search-box {
  background-color: var(--dark);
}

.search-box-content .block-title,
.search-box-content form label {
  color: #ffffff;
}

.search-box-content input[type="search"] {
  color: #ffffff;
  border-bottom: 2px solid var(--border);
}

.header-search-close {
  top: calc(50% - 25px);
  border: 3px solid var(--primary);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

/* Header -> Page header */
.page-header {
  background: var(--secondary);
  color: #ffffff;
}

.page-header a:hover {
  color: #ffffff;
}

.region-page-header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.breadcrumb {
  color: var(--light);
}

.page-header .page-title {
  color: #ffffff;
}

/*
 * Slider
 */
.slider {
  position: relative;
  background-color: var(--secondary);
  height: calc(100vh - 2rem);
  max-height: calc(100vh - 2rem);
  width: 100%;
  z-index: 20;
  overflow: hidden;
}

/* Slider -> Single slide */
.single-slide-image img {
  height: calc(100vh - 2rem);
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.single-slide-text-container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  height: 0;
  width: 100%;
  height: 100%;
}

.single-slide-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: calc(100vh - 2rem);
  color: #ffffff;
}

.slider,
.slider h1,
.slider h2,
.slider h3,
.slider h4,
.slider h5,
.slider h6 {
  color: #ffffff;
}

@media (min-width: 992px) {
  .single-slide-text {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 70%;
  }
}

/* Comments
--------------------------------------*/
#comments {
  border-top: 1px solid var(--border);
}

#comments i {
  color: var(--primary);
}

/* Comments -> comment form. */
/* Comments -> single comment */
.comment {
  -webkit-box-shadow: 3px 3px #cccccc;
          box-shadow: 3px 3px #cccccc;
}

.comment-header {
  background-color: #dcdee2;
  border-bottom: 2px solid #cccccc;
}

.comment-user-picture {
  padding: 0 1rem;
  border-right: 2px solid #cccccc;
  -ms-flex: 0 0 100px;
  -webkit-box-flex: 0;
          flex: 0 0 100px;
}

.comment-title,
.comment-title a {
  color: var(--header-bg);
  font-weight: 400;
}

.comment-reply a,
.comment-delete a,
.comment-edit a {
  padding: 5px 12px;
  color: #fff;
  background: var(--header-bg);
  border-radius: 4px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.comment-reply a:hover,
.comment-delete a:hover,
.comment-edit a:hover {
  background: var(--primary);
  color: #ffffff;
}

.sidebar .block {
  background-color: #f5f5ff;
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 2rem;
}

.sidebar .block-title {
  font-size: 2.2rem;
  text-transform: none;
}

/*
 * Footer
 */
.footer-top {
  background-color: var(--secondary);
  color: var(--light);
}

.footer-blocks,
.footer-bottom-blocks,
.footer-bottom,
.footer-social {
  background-color: var(--dark);
  color: var(--light);
}

.footer .block-title {
  position: relative;
  font-size: 1.6rem;
  color: #ffffff;
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.footer .block-title::before,
.footer .block-title::after {
  content: '';
  position: absolute;
  left: 0;
  height: 2px;
  background: var(--primary);
}

.footer .block-title::before {
  width: 30px;
  bottom: 6px;
}

.footer .block-title::after {
  width: 60px;
  bottom: 0;
}

.footer a:hover {
  color: #ffffff;
}

.footer-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-block li {
  padding: 10px 0;
  border-bottom: 1px solid #000000;
}

.footer-bottom-container {
  border-top: 2px solid #000000;
}

/* Footer -> customization */
.footer-logo {
  max-height: 100px;
  width: auto;
}

/* Components -> Admin tabs */
.page-tabs li a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* Components -> Social icons */
.footer-social {
  padding: 1rem 0;
}

.social-icons li {
  border: 2px solid #000000;
  border-radius: 6px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.social-icons li:hover {
  border: 2px solid var(--primary);
}

.social-icons i {
  padding: 10px;
}

/* Components -> Share page */
.share-node {
  position: relative;
  padding: 1rem 0;
}

ul.share-icons {
  margin: 0;
  padding: 0;
  list-style: none;
}

.share-icons li {
  display: inline-block;
  margin-right: 1rem;
}

.share-icons li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--secondary);
  width: 32px;
  height: 32px;
}

.share-icons li a:hover {
  color: var(--dark);
  color: #ffffff;
}

/* Elements -> Box */
.box,
.card {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 8px 4px var(--light);
          box-shadow: 0 0 8px 4px var(--light);
}

/* Icon Box */
.icon-box {
  font-family: var(--body-font);
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 8px 4px var(--light);
          box-shadow: 0 0 8px 4px var(--light);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.icon-box-icon {
  padding-right: 1rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.icon-box-text {
  font-family: var(--body-font);
  line-height: 1.7;
}

/*
 * Custom Shortcodes
 */
/* 
 * Buttons
 */
.link-button,
.button-link,
.button-dark {
  display: inline-block;
  border-radius: 30px;
  padding: 0.8rem 1.8rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.link-button,
.button-link {
  color: #ffffff;
  background-color: var(--secondary);
  border: 4px solid var(--primary);
}

.link-button:hover,
.button-link:hover {
  color: var(--primary);
  background-color: var(--dark);
  border: 4px solid var(--primary);
}

.button-dark {
  background-color: var(--dark);
  color: var(--primary);
  border: 4px solid var(--primary);
}

.button-dark:hover {
  color: #ffffff;
  border: 4px solid var(--primary);
}

.button-outline,
a.button-outline,
button.button-outline {
  background-color: transparent;
  color: var(--secondary);
  border: 2px solid var(--primary);
}

.button-outline:hover,
a.button-outline:hover,
button.button-outline:hover {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--secondary);
}

.button-round,
a.button-round,
button.button-round {
  border-radius: 60px;
  padding: 8px 1em;
}

/* Accordion and Toggle
================================= */
.accordion-title::after,
.toggle-title::after {
  font-size: 1.4rem;
}

.accordion-content,
.toggle-content {
  -webkit-box-shadow: 1px 1px 2px var(--border), -1px 0 2px var(--border);
          box-shadow: 1px 1px 2px var(--border), -1px 0 2px var(--border);
}

/* Text Slider
================================= */
.sliding-titles::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 2px;
  background-color: var(--secondary);
  width: 0px;
  -webkit-animation: fullborderwidth 3s linear infinite;
          animation: fullborderwidth 3s linear infinite;
}

@-webkit-keyframes fullborderwidth {
  to {
    width: 100%;
  }
}

@keyframes fullborderwidth {
  to {
    width: 100%;
  }
}

/* 
 * Features
 */
.features {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(265px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
}

.feature {
  background-color: #ffffff;
  padding: 2rem;
  -webkit-box-shadow: 0 0 8px 4px var(--light);
  -ms-box-shadow: 0 0 8px 4px var(--light);
  box-shadow: 0 0 8px 4px var(--light);
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.feature:hover {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -ms-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
}

.feature-icon {
  margin-bottom: 1.5rem;
  padding: 2rem;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-box-shadow: 0 0 10px 2px #ffffff;
          box-shadow: 0 0 10px 2px #ffffff;
}

.feature:hover .feature-icon {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 10px 2px var(--border);
          box-shadow: 0 0 10px 2px var(--border);
}

.feature .link-button {
  display: inline-block;
}

/*
 * Notice 
 */
.notice-block {
  position: relative;
  background-color: var(--primary);
  padding: 2rem;
  width: 100%;
}

.notice-block .views-field-title {
  font-family: var(--heading-font);
  font-size: 1.4rem;
  font-weight: 700;
}

.notice-block .views-field-title a {
  color: var(--dark);
}

.notice-block .views-field-title a:hover {
  color: #ffffff;
}

.notice-block .views-row {
  border-bottom: 1px solid var(--dark);
}

/* Page Loader
-------------------------------------------- */
.loader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 9999;
  overflow: hidden;
}

.loader-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.loader-icon {
  width: 72px;
  height: 72px;
  display: block;
  padding: 0px;
}

.loader-icon span {
  background: var(--primary);
  position: absolute;
  display: inline-block;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  -webkit-animation: preloader 1.8s linear infinite;
  animation: preloader 1.8s linear infinite;
}

.loader-icon span:last-child {
  animation-delay: -0.9s;
  -webkit-animation-delay: -0.9s;
}

@keyframes preloader {
  0% {
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0;
  }
}

@-webkit-keyframes preloader {
  0% {
    -webkit-transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1, 1);
    opacity: 0;
  }
}

/*
 * Sliding sidebar
 */
.sliding-sidebar-icon {
  margin-left: 20px;
  border-top: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}

.sliding-sidebar-icon span {
  height: 2px;
  width: 70%;
  background-color: var(--primary);
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.sliding-sidebar-icon:hover span {
  width: 100%;
}

.sliding-sidebar-container {
  background: var(--light);
  color: var(--text-color);
  -webkit-box-shadow: -2px 0 4px #a9a9aa;
          box-shadow: -2px 0 4px #a9a9aa;
}

/* Cookies Popup message
-------------------------------------------- */
.cookiealert {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 150;
  background: var(--dark);
  color: #ffffff;
  padding: 10px 0;
  margin: 0 !important;
  text-align: center;
  opacity: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: all 500ms ease-out;
  transition: all 500ms ease-out;
}

.cookiealert p {
  margin: 0;
}

.cookiealert.show {
  opacity: 1;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  -webkit-transition-delay: 1000ms;
          transition-delay: 1000ms;
}

/* table styles
-------------------------------------------- */
.table {
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}

/* Close Drupal System Message
-------------------------------------------- */
.message-close {
  position: absolute;
  right: 4px;
  top: 8px;
}
/*# sourceMappingURL=style.css.map */