@charset "UTF-8";
/* Variables
---------------------------------------- */
:root {
  /* Theme Colors */
  --theme-color: #f8a82b;
  --theme-color-two: #982f58;
  --primary: #f8a82b;
  --secondary: #982f58;
  --dark: #353441;
  --light: #edeef5;
  --border: #cccccc;
  --bold-color: #111111;
  --content-bg: #f2f2f2;
  --text-color: #222222;
  --body-font: "Work Sans", sans-serif;
  --heading-font: "Work Sans", sans-serif;
  --base-font-size: 14px;
  --swiper-theme-color: var(--primary);
}

/* HTML and Body
---------------------------------------- */
html {
  font-size: var(--base-font-size);
}

body {
  font-family: var(--body-font);
  background-color: #ffffff;
  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;
  -o-transition: color 0.4s ease;
  transition: color 0.4s ease;
}

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

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

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

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

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

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

a.button:hover,
.button:hover,
button:hover,
[type=button]:hover,
[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],
input[type=tel],
textarea {
  -webkit-transition: all 0.5s ease-in-out;
  -o-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],
input[type=tel],
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,
input[type=tel]:focus,
textarea:focus {
  border: 1px solid var(--primary);
  background-color: #f0f0f0;
}

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

input[type=tel] {
  line-height: normal;
}

input[type=tel] {
  max-width: 100%;
}

input[type=tel],
textarea {
  padding: 10px;
}

input[type=tel]:focus,
textarea:focus {
  outline: 0;
}

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

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

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

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

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

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

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

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

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

dd {
  margin: 0 0 0.25rem 0;
}

blockquote {
  background-color: var(--light);
  box-shadow: 2px 2px 6px var(--border);
  border-left: 8px solid var(--secondary);
  padding: 2rem 1rem 1rem 4rem;
}

blockquote::before {
  font-family: Georgia;
  content: "“";
  color: var(--dark);
  font-size: 6em;
  position: absolute;
  left: 16px;
  top: -16px;
}

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

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

[dir] .field:not(:last-child) {
  margin-bottom: 1rem;
}

@font-face {
  font-family: "ficon";
  src: url("../fonts/ficon.ttf?ce63e9") format("truetype"), url("../fonts/ficon.woff?ce63e9") format("woff"), url("../fonts/ficon.svg?ce63e9#ficon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=ficon-], [class*=" ficon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "ficon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ficon-mail:before {
  content: "\f003";
}

.ficon-map:before {
  content: "\f041";
}

.ficon-calendar:before {
  content: "\f073";
}

.ficon-phone:before {
  content: "\f095";
}

.ficon-twitter:before {
  content: "\f099";
}

.ficon-facebook:before {
  content: "\f09a";
}

.ficon-github:before {
  content: "\f09b";
}

.ficon-linkedin:before {
  content: "\f0e1";
}

.ficon-youtube:before {
  content: "\f16a";
}

.ficon-instagram:before {
  content: "\f16d";
}

.ficon-vk:before {
  content: "\f189";
}

.ficon-whatsapp:before {
  content: "\f232";
}

.ficon-vimeo:before {
  content: "\f27d";
}

.ficon-user:before {
  content: "\f2c0";
}

.ficon-telegram:before {
  content: "\f2c6";
}

.ficon-comments:before {
  content: "\e900";
}

.ficon-add_comment:before {
  content: "\e901";
}

.ficon-tag:before {
  content: "\e902";
}

.ficon-file:before {
  content: "\e903";
}

.ficon-search:before {
  content: "\e904";
}

.ficon-tag:before {
  content: "\e902";
}

.main-wrapper {
  position: relative;
  display: block;
}

.education-for-everyone {
  padding: 4rem 0;
}

.education-for-everyone .field--name-body {
  padding: 0 10px;
}

.faculty-member-teaser {
  display: flex;
}

.faculty-member-photo {
  margin-right: 1rem;
}

.field--name-field-logo .image-field {
  margin: 0;
  width: 128px;
  height: 128px;
  object-fit: cover;
  border-radius: 50%;
}

.faculty-member-photo .image-field {
  margin: 0;
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 50%;
}

.faculty-member-name-designation a {
  border: 0;
  padding: 0;
}

.department-logo {
  float: right;
  margin-right: 1rem;
  margin-bottom: 1rem;
}

.block-content h3,
.block-content h2 {
  margin: 1rem 0;
}

.department-detail ol {
  list-style: none;
  counter-reset: steps;
}
.department-detail ol li {
  counter-increment: steps;
  margin: 1rem 0;
}
.department-detail ol li::before {
  content: counter(steps);
  margin-right: 0.5rem;
  background: var(--dark);
  color: var(--light);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  line-height: 1.2em;
}

.department-list-block .views-row {
  display: grid;
  grid-template-columns: 128px 1fr;
  grid-gap: 1rem;
}

.department-list-block .views-field-field-logo {
  grid-row: span 2;
}

.department-list-block .views-row .views-field-title {
  grid-column: 2;
  grid-row: 1;
}

.department-list-block .views-row .views-field-body {
  grid-column: 2;
  grid-row: 2;
}

.faculty-member-teaser {
  margin: 0.75rem 0;
}
.faculty-member-teaser a {
  border: 0;
  padding: 0;
}

.department-message-container blockquote {
  font-size: 0.9rem;
  font-style: italic;
}

/* Header Top
------------------------------- */
.header-top {
  background: var(--dark);
  color: var(--light);
  padding: 0;
}

.header-top-left {
  margin-bottom: 0;
}

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

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

.header-top-container {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}

.header-top-block {
  text-align: center;
}

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

.header a,
.page-header a {
  color: var(--primary);
}

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

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

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

.site-name a:hover {
  color: var(--primary);
}

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

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

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

.menu-wrap .menu ul.submenu li.expanded::after {
  content: ">";
  position: absolute;
  right: 10px;
  top: 10px;
}

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

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

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

.search-box-content .block-title,
.search-box-content form label {
  color: var(--light);
}

.search-box-content input[type=search] {
  background: url(../images/icons/search-icon.svg) top right no-repeat;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  border-bottom: 2px solid var(--border);
}

.search-box-content input[type=search]:focus {
  background: url(../images/icons/search-icon.svg) top right no-repeat;
  border: 0;
  border-bottom: 2px solid var(--border);
}

.search-box-content input[type=search]:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px var(--dark) inset;
  background-color: transparent;
  color: #ffffff;
}

.search-box-content input[type=submit] {
  border-radius: 0;
}

.header-search-close {
  border: 3px solid var(--primary);
}

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

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

.region-page-header {
  align-items: flex-start;
}

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

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

/* Department Logo */
.department-header {
  display: flex;
  flex-direction: column-reverse;
}

.department-logo-block {
  display: block;
  align-self: center;
}

.department-logo-block img {
  margin: 0;
  width: 7rem;
  height: 7rem;
  object-fit: cover;
  border-radius: 50%;
}

/* Main
---------------------------------------- */
/* Main -> Admin tabs */
ul.page-tabs {
  border-bottom: 2px solid var(--secondary);
}

.page-tabs li a {
  background: #dddddd;
  color: var(--secondary);
  border-right: 2px solid var(--secondary);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

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

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

/* Node Submitted Details */
.submitted-icons {
  color: var(--primary);
}

.node-taxonomy-container .term-title::before {
  font-family: "ficon";
  content: "\e902";
  color: var(--primary);
  padding-right: 6px;
}

/* Sidebar
---------------------------------------- */
.sidebar .block {
  background-color: #f5f5ff;
  padding: 20px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 2px var(--border);
}

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

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

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

/* Comments -> single comment */
.comment {
  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;
  flex: 0 0 100px;
}

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

.comment-reply a,
.comment-delete a,
.comment-edit a {
  padding: 5px 12px;
  color: #fff;
  background: var(--secondary);
  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;
}

/*
 * Footer
 */
.footer-top {
  color: #ffffff;
}

/* Footer -> Footer Top */
.footer-top-container {
  position: relative;
  padding: 0;
}

#block-educationisinourblood p {
  margin: 0;
}

#block-educationisinourblood img {
  mask-image: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgb(255, 255, 255) 100%);
}

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

.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 {
  color: var(--light);
}

.footer a:hover {
  color: var(--primary);
}

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

.footer-block li {
  padding: 10px 0;
  border-bottom: 1px solid var(--light);
}

.footer-bottom-container {
  border-top: 2px solid var(--light);
}

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

.footer-affiliations img {
  max-height: 64px;
  width: auto;
}

.footer-affiliations .field--name-body {
  display: flex;
  flex-direction: column;
}

.footer-affiliations .field--name-body div {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}

.footer-affiliations .field--name-body p {
  margin-bottom: 0;
  margin-left: 1rem;
}

.footer .website-copyright {
  margin: 0 auto;
}

.homepage-content .block-title {
  text-align: center;
  margin-bottom: 1rem;
}

.frontpage-main .block,
.homepage-content-bottom .block {
  margin-bottom: 5rem;
}

.region-content-home-top .block {
  padding: 4rem 0;
}

.region-content-home-top .block:nth-child(even) {
  position: relative;
  background: #f0f0f0;
}

.region-content-home-top .block:last-child {
  margin: 0;
}

#block-aalc-content {
  margin-bottom: 0;
}

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

.social-icons {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-icons li {
  display: inline-block;
  margin: 0;
}

.social-icons li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid #000000;
  border-radius: 6px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

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

/* components -> Scroll To Top */
.scrolltop {
  position: fixed;
  display: none;
  bottom: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: #000000;
  font-size: 1rem;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  z-index: 20;
  cursor: pointer;
}

.scrolltop:hover {
  background: var(--secondary);
  color: #ffffff;
}

details[open] summary ~ * {
  animation: open 0.75s ease-in-out;
}

details[close] summary ~ * {
  animation: close 0.75s ease-in-out;
}

@keyframes open {
  0% {
    opacity: 0;
    margin-left: -1rem;
  }
  100% {
    opacity: 1;
    margin-left: 0px;
  }
}
@keyframes close {
  0% {
    opacity: 1;
    margin-left: 0px;
  }
  100% {
    opacity: 0;
    margin-left: -1rem;
  }
}
/*
 * Custom Shortcodes
 */
/* Shortcodes -> Buttons */
.link-button,
.button-link,
.button-dark {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  transition: all 0.3s ease;
}

.link-button,
.button-link {
  color: var(--dark);
  background-color: var(--primary);
}

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

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

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

/* Elements -> Box */
.box {
  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);
  line-height: 1.7;
  background-color: var(--content-bg);
  box-shadow: 0 3px 6px #bbbbbb;
  display: flex;
}

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

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

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

.feature {
  background-color: #ffffff;
  padding: 1rem;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: all 0.4s linear;
  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);
  -ms-transform: translateY(-20px);
  transform: translateY(-20px);
}

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

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

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

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

.notice-block .views-row {
  padding: 1rem 0;
}

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

.notice-block .more-link a {
  color: var(--secondary);
}

.notice-block .more-link a:hover {
  color: var(--dark);
}

/*
 * Event 
 */
.event-block {
  position: relative;
  background-color: var(--secondary);
  padding: 2rem;
  width: 100%;
}

.event-block .views-row {
  color: var(--light);
  padding: 1rem 0;
}

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

.event-block .views-field-title a {
  color: var(--light);
}

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

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

.event-block .more-link a {
  color: var(--primary);
}

.event-block .more-link a:hover {
  color: var(--light);
}

.items {
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  /* Header */
  .header-top-block {
    text-align: left;
  }
  .header-top {
    padding: 0;
  }
  .site-brand img {
    max-height: 60px;
  }
  /* Header -> Page Header */
  .page-header {
    padding: 2.5rem 0 2.5rem 0;
  }
  /* Frontpage */
  .homepage-content .block-title::before {
    position: absolute;
    content: "";
    width: 40px;
    height: 2px;
    background: var(--primary);
    top: 50%;
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  .homepage-content .block-title::after {
    position: absolute;
    content: "";
    width: 40px;
    height: 2px;
    background: var(--primary);
    top: 50%;
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  .region-content-home-top .block:nth-child(odd) {
    margin-bottom: 10rem;
  }
  .region-content-home-top .block:last-child:nth-child(odd) {
    margin-bottom: 0;
  }
  .region-content-home-top .block:nth-child(even) {
    padding: 0 0 4rem 0;
  }
  .region-content-home-top .block:nth-child(even)::before {
    position: absolute;
    content: "";
    top: -10rem;
    left: 0;
    height: 10rem;
    width: 100%;
    background: #f0f0f0;
    clip-path: polygon(0 0, 100% 90%, 100% 100%, 0% 100%);
  }
  /* Department Logo */
  .department-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .field--name-field-logo .image-field {
    margin: 0;
    width: 256px;
    height: 256px;
    object-fit: cover;
    border-radius: 50%;
  }
  .department-mission-vision {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .department-vision,
  .department-mission {
    display: flex;
    flex-direction: column;
    flex: 1 1 330px;
    font-size: 0.95rem;
  }
  .department-mission ul,
  .department-vision ul {
    margin-top: auto;
  }
  .department-vision {
    margin-right: 0.5rem;
  }
  .department-mission {
    margin-left: 0.5rem;
  }
  /* Faculty Member */
  .faculty-member-detail .layout--twocol-section--25-75 {
    display: grid;
    grid-template-columns: 25% 75%;
    gap: 1rem 1rem;
  }
  .faculty-member-detail .field--name-field-image img {
    margin: 0;
    width: 256px;
    height: 256px;
    border-radius: 50%;
    object-fit: cover;
  }
  .faculty-members-block {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  /* Notice */
  .notice-block,
  .event-block {
    width: 98%;
  }
  .notice-block::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    background-color: var(--secondary);
    width: 95%;
    height: 100%;
    z-index: -1;
    transform: rotate(-5deg);
  }
  .event-block::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    background-color: var(--primary);
    width: 95%;
    height: 100%;
    z-index: -1;
    transform: rotate(5deg);
  }
  .feature {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  /* Header */
  .site-brand img {
    max-height: 80px;
  }
  /* Header -> Main menu */
  .menu-wrap .menu a {
    color: var(--dark);
    font-weight: 600;
  }
  .menu-wrap .menu a:hover {
    color: var(--secondary);
  }
  .menu-wrap .menu-item-has-children::after {
    content: "";
  }
  .menu-wrap ul.menu li {
    background-size: 100% 200%;
    transition: all 0.2s linear;
  }
  ul.main-menu li a:hover {
    color: var(--primary);
  }
  .menu-wrap .menu li i.dropdown-arrow {
    display: inline-block;
    border-right: 2px solid var(--dark);
    border-bottom: 2px solid var(--dark);
    width: 8px;
    height: 8px;
    margin: 2px;
    transform: rotate(-315deg);
  }
  .menu-wrap ul.menu ul.submenu {
    top: 36px;
    background-color: var(--dark);
  }
  .menu-wrap ul.menu ul.submenu li {
    border-bottom: 1px solid var(--primary);
  }
  .menu-wrap ul.menu ul.submenu li a {
    color: var(--light);
  }
  .menu-wrap ul.menu ul.submenu li a:hover {
    color: var(--primary);
  }
  .event-container .block-title {
    text-align: end;
    padding-right: 1rem;
  }
}
@media (min-width: 1170px) {
  /* Header */
  .site-brand img {
    max-height: 90px;
  }
}
@media (min-width: 576px) {
  .w10,
  .w20,
  .w30,
  .w40,
  .w50,
  .w60,
  .w70,
  .w80,
  .w90 {
    flex-basis: calc(50% - 5px);
  }
}
@media (min-width: 768px) {
  .section {
    padding: 5rem 0;
  }
  .width30 {
    width: 30%;
  }
  .width40 {
    width: 40%;
  }
  .width50 {
    width: 50%;
  }
  .width60 {
    width: 60%;
  }
  .width70 {
    width: 70%;
  }
  .width80 {
    width: 80%;
  }
  .width90 {
    width: 90%;
  }
  .w10 {
    flex-basis: calc(10% - 10px);
  }
  .w20 {
    flex-basis: calc(20% - 10px);
  }
  .w30 {
    flex-basis: calc(30% - 10px);
  }
  .w40 {
    flex-basis: calc(40% - 10px);
  }
  .w50 {
    flex-basis: calc(50% - 10px);
  }
  .w60 {
    flex-basis: calc(60% - 10px);
  }
  .w70 {
    flex-basis: calc(70% - 10px);
  }
  .w80 {
    flex-basis: calc(80% - 10px);
  }
  .w90 {
    flex-basis: calc(90% - 10px);
  }
  .model-active {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .call-to-action {
    flex-direction: row;
    justify-content: space-around;
  }
}
.layout--twocol-section.layout--twocol-section--50-50 {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
  /* only horizontal gap */
}

.layout--twocol-section.layout--twocol-section--50-50 > .layout__region--first,
.layout--twocol-section.layout--twocol-section--50-50 > .layout__region--second {
  flex: 0 1 calc(50% - 10px);
  /* subtract half the gap from each */
}

@media (max-width: 768px) {
  .layout--twocol-section.layout--twocol-section--50-50 {
    flex-direction: column;
  }
  .layout--twocol-section.layout--twocol-section--50-50 > .layout__region--first,
  .layout--twocol-section.layout--twocol-section--50-50 > .layout__region--second {
    width: 100%;
  }
}
.imagefield_slideshow-wrapper {
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
}

.imagefield_slideshow-wrapper img {
  width: 100%;
  height: auto;
}

.flickity-button {
  position: absolute;
}

.gallery-field-body {
  margin-top: 2rem;
}

.node-type-gallery.node-view-mode-teaser {
  border-bottom: 0;
}

.carousel {
  margin: 2rem 0;
  background: #EEE;
}

.carousel img {
  display: block;
  height: 300px;
}

@media screen and (min-width: 768px) {
  .carousel img {
    height: 600px;
  }
}
.menu li.active a.is-active {
  font-weight: bold;
}

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