@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,700;1,400&display=swap");
@import url("https://cdn.materialdesignicons.com/5.4.55/css/materialdesignicons.min.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");
.btn-login:before, .btn-forgot:before, .btn-custom:before {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-size: 14px;
}

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

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

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

/* ---------------------------------- Misc ---------------------------------- */
input[type=button], input[type=submit] {
  border-radius: 0;
}

::-webkit-input-placeholder {
  color: #5e5e5e;
}

:-moz-placeholder {
  color: #5e5e5e;
  opacity: 1;
}

::-moz-placeholder {
  color: #5e5e5e;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #5e5e5e;
}

/* ---------------------------------- Form Error ---------------------------------- */
select.error, input[type=text].error, input[type=password].error, input[type=email].error, input[type=tel].error, textarea.error, button.error {
  border: solid 1px #e72121;
  border-radius: 6px 6px 0 0;
}

.errormsg {
  font-size: 14px;
  display: block;
  font-weight: normal;
  position: relative;
  color: #ffffff;
  background-color: #e72121;
  border-radius: 0 0 6px 6px;
  padding: 5px 15px;
  line-height: 20px;
  white-space: nowrap;
}
.errormsg .arrow {
  display: none;
  z-index: 1;
  position: absolute;
  top: -8px;
  left: 15px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #e72121;
}

/* ---------------------------------- Responsive items ---------------------------------- */
table {
  max-width: 100%;
  height: auto;
}

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

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

/* ---------------------------------- Fluid Youtube Video ---------------------------------- */
.vdowrap {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 25px;
  height: 0;
}
.vdowrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ---------------------------------- Main ---------------------------------- */
* {
  scroll-behavior: smooth;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}
body:after {
  content: "desktop";
  display: none;
}

@media (max-width: 992px) {
  body:after {
    content: "tablet";
  }
}
@media (max-width: 768px) {
  body:after {
    content: "tablet";
  }
}
@media (max-width: 576px) {
  body:after {
    content: "mobile";
  }
}
@media (max-width: 320px) {
  body:after {
    content: "mobile";
  }
}
.left {
  float: left;
}

.right {
  float: right;
}

.clr {
  clear: both;
}

.point {
  cursor: pointer;
}

ul, ol {
  margin: 1em 0;
  padding: 0 0 0 40px;
}

.img-responsive {
  width: 100%;
  display: block;
}

.vdo-responsive {
  width: 100%;
  display: block;
}

.img-hidden {
  visibility: hidden;
}

.anchor {
  padding-top: 40px;
  margin-top: -40px;
}

.border {
  border: solid 1px red;
}

*:focus {
  outline: none !important;
}

/* ---------------------------------- H1, H2, H3 ---------------------------------- */
h1, .h1 {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 700;
}

h2, .h2 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 400;
}

h3, .h3 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
}

h4, .h4 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

@media (max-width: 992px) {
  h1, .h1 {
    font-size: 25px;
  }
  h2, .h2 {
    font-size: 20px;
  }
  h3, .h3 {
    font-size: 18px;
  }
  h4, .h4 {
    font-size: 16px;
  }
}
/* ---------------------------------- Input ---------------------------------- */
input.focus, input:focus, input.active.focus, input.active:focus, input:active.focus, input:active:focus, input.form-control:focus {
  outline-width: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
}

/* ---------------------------------- Buttons ---------------------------------- */
.btn {
  position: relative;
}
.btn:before {
  display: none !important;
}
.btn-custom {
  margin-right: 15px;
  padding: 5px 50px 5px 40px;
}
.btn-custom:before {
  content: "\f054";
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 20px;
  height: calc(100% - 10px);
}
.btn-login:before, .btn-forgot:before {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 20px;
  height: calc(100% - 6px);
}
.btn-login:before {
  content: "\f023";
}
.btn-forgot:before {
  content: "\f054";
}
.btn:hover {
  opacity: 0.7;
  transition: all 0.3s ease;
}
.btn.focus, .btn:focus, .btn.active.focus, .btn.active:focus, .btn:active.focus, .btn:active:focus {
  outline: none !important;
  box-shadow: none;
}

/* ----------------------------------  Smart Scroll ---------------------------------- */
.smart-scroll {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 98;
}

.scrolled-down {
  transform: translateY(-100%);
  transition: all 0.3s ease-in-out;
}

.scrolled-up {
  transform: translateY(0);
  transition: all 0.3s ease-in-out;
}

@media (max-width: 576px) {
  .smart-scroll {
    position: absolute;
  }
  .noimg.smart-scroll {
    position: relative;
  }
}
/* ---------------------------------- Helper ---------------------------------- */
.helper {
  color: #b7b7b7;
  font-size: 12px;
}

/* ---------------------------------- Header ---------------------------------- */
header {
  position: absolute;
  height: 80px;
  width: 100%;
  z-index: 98;
}
header.noimg.nosmart {
  position: relative;
}
header .logo {
  height: 80px;
}
header .logo img {
  position: relative;
  max-height: 70px;
  max-width: 150px;
}
header .social .mdi {
  padding: 0 2px;
  font-size: 25px;
}
header .social .mdi:hover {
  opacity: 0.7;
}
header .btn-custom {
  margin: 0 0 0 15px;
}
header .dropdown {
  cursor: pointer;
  margin: 0 5px 0 0;
}
header .dropdown .mdi {
  font-size: 25px;
}
header .dropdown .mdi:hover {
  opacity: 0.7;
}
header nav {
  font-size: 18px;
  letter-spacing: 0;
  width: 100%;
  max-height: 39px;
  padding: 6px 0;
  margin-bottom: 3px;
  overflow-y: hidden;
}
header nav .mdi {
  font-size: 18px;
}
header nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
header nav ul li {
  display: inline-block;
  padding: 0 5px;
  cursor: pointer;
}
header nav ul li a {
  opacity: 1;
  color: #fff;
  font-size: 16px;
  z-index: 99;
  text-decoration: none;
}
header nav ul li a.focus {
  border: solid 1px;
  padding: 5px 10px;
  border-radius: 6px;
}
header nav ul li a:hover {
  opacity: 1;
  text-decoration: none;
  color: #fff;
}
header nav ul li a.current {
  opacity: 1;
  font-weight: bold;
  cursor: default;
}
header nav ul .flexMenu-popup {
  z-index: 9999;
  padding: 10px !important;
  text-align: left;
  background-color: #fff;
  border: solid 1px #000;
  margin: 0;
}
header nav ul .flexMenu-popup li {
  line-height: 30px;
  color: #000;
  white-space: nowrap;
  margin-bottom: 5px;
  display: block;
  cursor: pointer;
}
header nav ul .flexMenu-popup li a {
  color: #000 !important;
  text-decoration: none;
}
header nav ul .flexMenu-popup li a.focus {
  padding: 0;
  border-radius: 0;
}
header nav ul .flexMenu-popup li a:last-child {
  border: 0;
}
header nav ul .flexMenu-popup li a.current {
  font-weight: bold;
  cursor: default;
}

@media (max-width: 992px) {
  header .logo img {
    max-height: 50px;
    max-width: 100px;
  }
  header .social .mdi {
    padding: 0 3px;
    font-size: 22px;
  }
  header .dropdown {
    margin: 0 3px 0 0;
  }
  header .dropdown .mdi {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  header {
    padding-top: 0;
    height: 60px;
  }
  header .logo {
    height: 60px;
  }
  header .btn-custom {
    padding: 5px 15px !important;
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  header .btn-custom:before {
    display: none;
  }
  header .logo img {
    max-width: 90px;
  }
  header .social .mdi {
    padding: 0 2px;
    font-size: 28px;
  }
  header .dropdown {
    margin: 0 2px 0 0;
  }
  header .dropdown .mdi {
    font-size: 28px;
  }
}
@media (max-width: 320px) {
  header .logo img {
    max-width: 60px;
  }
  header .social .mdi {
    font-size: 20px;
  }
  header .dropdown .mdi {
    font-size: 20px;
  }
}
/* ---------------------------------- Top Media ---------------------------------- */
.topMedia {
  position: relative;
  width: 100%;
  height: 550px;
  background-repeat: no-repeat;
}
.topMedia img {
  max-height: 600px;
}
.topMedia-text {
  position: absolute;
  top: 130px;
  max-width: 70%;
  overflow: hidden;
}
.topMedia-text h1, .topMedia-text .h1 {
  font-size: 40px;
}
.topMedia-text h2, .topMedia-text .h2 {
  font-size: 18px;
}
.topMedia-text h1, .topMedia-text h2, .topMedia-text .h1, .topMedia-text .h2 {
  text-overflow: ellipsis;
}
.topMedia .buttons {
  margin-top: 40px;
}
.topMedia .buttons .btn-custom {
  margin-top: 15px;
}
.topMedia .buttons button[class*=" js-modal"]:before {
  content: "\f144";
  font-size: 18px;
}

@media (max-width: 1200px) {
  .topMedia-text {
    max-width: 90%;
  }
}
@media (max-width: 992px) {
  .topMedia-text {
    top: 130px;
    max-width: calc(100% - 30px);
  }
}
@media (max-width: 768px) {
  .topMedia-text {
    top: 90px;
  }
}
@media (max-width: 576px) {
  .topMedia {
    height: 400px;
  }
  .topMedia-text {
    width: calc(100% - 30px);
    top: 60px;
    margin: 0 15px;
    padding: 15px;
    height: calc(100% - 60px);
  }
  .topMedia-text h1, .topMedia-text .h1 {
    font-size: 24px;
  }
  .topMedia-text h2, .topMedia-text .h2 {
    font-size: 16px;
  }
  .topMedia-text .buttons {
    text-align: center;
    margin-left: 0;
    width: 100%;
    bottom: 20px;
    left: 0px;
    position: absolute;
  }
  .topMedia-text .buttons .btn-custom {
    margin: 15px 0 0 0;
  }
}
@media (max-width: 320px) {
  .topMedia-text h1, .topMedia-text .h1 {
    font-size: 20px;
  }
  .topMedia-text h2, .topMedia-text .h2 {
    font-size: 14px;
  }
  .topMedia-text .buttons .btn-custom {
    margin-top: 15px;
  }
}
/* ---------------------------------- Modal ---------------------------------- */
.modal-content {
  font-size: 14px;
}
.modal-content .close {
  position: absolute;
  opacity: 1;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  z-index: 99;
  top: -25px;
  right: -25px;
  background-color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50px;
}
.modal-content h3 {
  font-size: 20px;
}
.modal-body .price {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}
.modal-footer .btn-link {
  color: #505050;
  padding: 0;
  font-size: 14px;
}

@media (max-width: 576px) {
  .modal-content {
    font-size: 14px;
  }
  .modal-content .close {
    top: -25px;
    right: -5px;
  }
}
/* ---------------------------------- Mobile Menu ---------------------------------- */
.mobilemenu-button {
  color: #000;
  background-color: #fff;
  text-align: center;
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 70px;
  position: fixed;
  bottom: 30px;
  left: 10px;
  z-index: 99;
}
.mobilemenu-button .mdi {
  font-size: 35px;
}
.mobilemenu-button:hover {
  cursor: pointer;
}
.mobilemenu-wrapper {
  font-size: 16px !important;
  line-height: 40px !important;
  position: absolute;
  z-index: 98;
  top: 60px;
  left: 0;
  background-color: #fff;
  width: 90%;
  height: calc(100vh - 60px);
  border-right: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
}
.mobilemenu-wrapper.front {
  top: 0px;
  min-height: 100vh;
}
.mobilemenu-context {
  padding: 25px 40px !important;
}
.mobilemenu-context .logo {
  text-align: center;
  margin-bottom: 20px;
}
.mobilemenu-context .logo img {
  max-height: 50px;
  max-width: 120px;
}
.mobilemenu-context a {
  color: #000;
  display: block;
  text-decoration: none;
}
.mobilemenu-context a.current {
  font-weight: bold;
}
.mobilemenu-context .social {
  text-align: center;
}
.mobilemenu-context .social a {
  display: inline !important;
  padding: 0 5px;
  font-size: 34px;
}
.mobilemenu-context .social a:hover {
  opacity: 0.7;
}
.mobilemenu-context sub br {
  height: 5px;
}

@media (max-width: 320px) {
  .mobilemenu-context .social {
    text-align: center;
  }
  .mobilemenu-context .social a {
    font-size: 22px;
  }
}
/* ---------------------------------- Dropdown ---------------------------------- */
.dropdown {
  margin-bottom: 10px;
}
.dropdown-item:active {
  background-color: #000;
  color: #fff;
}
.dropdown-item.current {
  font-weight: 700 !important;
}

/* ---------------------------------- Pagemenu ---------------------------------- */
.pagemenu .btn-custom {
  background-color: #000;
  color: #fff;
  margin-bottom: 20px;
}
.pagemenu a {
  position: relative;
  padding-left: 20px;
  color: #000;
}
.pagemenu a.current {
  font-weight: 600;
}
.pagemenu .mdi {
  position: absolute;
  font-size: 9px;
  top: 5px;
  left: 0px;
}
.pagemenu ul {
  font-size: 16px;
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.pagemenu ul li {
  margin: 5px 0;
}
.pagemenu ul li a {
  color: #000;
}
.pagemenu ul li a:hover {
  color: #000;
}
.pagemenu ul ul {
  margin-left: 25px;
}

@media (max-width: 768px) {
  .pagemenu .btn-custom {
    font-size: 14px;
  }
}
/* ---------------------------------- Boxes ---------------------------------- */
.boxes {
  padding: 30px 0;
}
.boxes .headline {
  text-align: center;
  font-size: 25px;
  text-transform: uppercase;
}
.boxes .teaser {
  text-align: center;
  font-size: 18px;
  font-weight: 200;
}
.boxes .box {
  margin-top: 30px;
  cursor: pointer;
  position: relative;
}
.boxes .box:hover {
  opacity: 0.7;
}
.boxes .box .text {
  text-shadow: 0px 0px 10px #505050;
  position: absolute;
  text-align: center;
  padding: 0px 20px;
  width: 100%;
  top: 38%;
  color: #fff;
}
.boxes .box .text .headline {
  font-size: 31px;
  margin: 0px;
  font-weight: 600;
  text-transform: uppercase;
}
.boxes .box .text .teaser {
  font-size: 16px;
  margin: 0px;
  font-weight: 600;
  text-transform: uppercase;
}

@media (max-width: 766px) {
  .boxes {
    padding: 10px 5px 10px 5px;
  }
  .boxes .headline {
    margin-bottom: 0px;
  }
  .boxes .box {
    margin: 0px;
  }
  .boxes .box .text {
    top: 20%;
    padding: 0px 10px;
  }
  .boxes .box .text .headline {
    font-size: 20px;
  }
  .boxes .box .text .teaser {
    font-size: 16px;
  }
  .boxes .row div[class^=col] {
    padding: 5px;
  }
}
@media (max-width: 320px) {
  .boxes .box .text {
    top: 15%;
  }
  .boxes .box .text .headline {
    font-size: 18px;
  }
  .boxes .box .text .teaser {
    font-size: 14px;
  }
}
/* ---------------------------------- Kikayo Gallery ---------------------------------- */
.kikayo_gallery_item:hover {
  cursor: pointer;
  opacity: 0.7;
}

/* ---------------------------------- Document ---------------------------------- */
.document {
  padding: 30px 0;
  /* Contact Cards */
}
.document .back {
  margin-bottom: 15px;
}
.document .back a {
  color: #000;
  text-decoration: none;
}
.document a {
  color: #3544B1;
}
.document a:hover {
  color: #5C6AC3;
}
.document .image {
  position: relative;
}
.document .image .mdi {
  cursor: pointer;
  position: absolute;
  font-size: 80px;
  left: calc(50% - 40px);
  top: calc(50% - 60px);
}
.document .date {
  margin-bottom: 10px;
}
.document h2 {
  margin-bottom: 25px;
}
.document .quote {
  display: block;
  position: relative;
  max-width: 90%;
  margin: 30px auto;
  font-style: italic;
  font-weight: 300;
}
.document .quote .text {
  margin: -40px 0 0 0;
  padding: 0 0 0 50px;
}
.document .quote .text .author {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
}
.document .quote .mdi {
  font-size: 50px;
}
.document .contactcards {
  margin-top: 20px;
}
.document .contactcards-card {
  width: 100%;
  margin-bottom: 30px;
  border: solid 1px #ddd;
}
.document .contactcards-card a {
  color: #000;
}
.document .contactcards-card .mdi {
  margin-right: 10px;
  font-size: 16px;
}
.document .contactcards-card .info {
  padding: 10px 0 10px 10px;
}
.document .contactcards-card .info .name {
  font-size: 20px;
  color: #1f3e51;
}
.document .contactcards-card .info .title {
  margin: 5px 0 15px 0;
  font-size: 16px;
}
.document .contactcards-card .info .phone {
  margin-top: 5px;
}
.document .contactcards-card .info .email {
  margin-top: 5px;
}
.document .contactcards-card .social {
  width: 100%;
  margin: 15px 5px 0 0;
}
.document .contactcards-card .social .mdi {
  font-size: 21px;
  display: block;
}
.document .contactcards-card .social .mdi:hover {
  opacity: 0.7;
}

@media (max-width: 991px) {
  .document .quote {
    max-width: 100%;
  }
  .document .contactcards-card .info {
    font-size: 14px;
  }
  .document .contactcards-card .info .name {
    font-size: 16px;
  }
  .document .contactcards-card .info .title {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .document .quote {
    max-width: 100%;
  }
  .document .contactcards-card .info .name {
    font-size: 14px;
  }
  .document .contactcards-card .info .title {
    font-size: 12px;
  }
}
@media (max-width: 576px) {
  .document .contactcards-card .info {
    font-size: 16px;
  }
  .document .contactcards-card .info .name {
    font-size: 16px;
  }
  .document .contactcards-card .info .title {
    font-size: 14px;
  }
}
/* ---------------------------------- List ---------------------------------- */
.list {
  margin-bottom: 15px;
}
.list h2 {
  margin-bottom: 0px;
}
.list-item {
  margin: 15px 0;
  border: solid 1px #ddd;
  position: relative;
}
.list-item .image {
  position: relative;
}
.list-item .image .mdi {
  position: absolute;
  font-size: 80px;
  left: calc(50% - 40px);
  top: calc(50% - 60px);
}
.list-item-withbnt .text {
  padding: 10px 10px 70px 10px !important;
}
.list-item:hover {
  cursor: pointer;
  box-shadow: 0 0 10px 5px #c0c0c0;
  transition: all 0.3s ease;
}
.list-item .text {
  padding: 10px;
}
.list-item .text .headline, .list-item .text .teaser {
  overflow: hidden;
  text-overflow: ellipsis;
}
.list-item .text .headline {
  font-size: 18px;
  font-weight: bold;
  margin: 5px 0;
}
.list-item .text .btn {
  position: absolute;
  margin: 0 auto;
  bottom: 15px;
  width: 94%;
}

@media (max-width: 768px) {
  .list .h1 {
    font-size: 22px;
  }
  .list .h2 {
    font-size: 18px;
  }
}
/* ---------------------------------- Tickets ---------------------------------- */
.tickets {
  padding: 30px 0 30px 0;
}
.tickets h2 {
  margin: 0px;
}
.tickets .ticket {
  margin: 10px 0;
  font-size: 18px;
  line-height: 34px;
}
.tickets .ticket .location {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.tickets .ticket .btn-custom:before {
  content: "\f07a";
  font-size: 14px;
}

@media (max-width: 768px) {
  .tickets .ticket {
    margin: 25px 0;
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .tickets .ticket {
    margin: 25px 0;
    font-size: 14px;
  }
}
/* ---------------------------------- Banner ---------------------------------- */
.banner:hover {
  opacity: 0.7;
}

/* ---------------------------------- Newsletter ---------------------------------- */
.newsletter {
  padding: 30px 0;
}
.newsletter form {
  margin-top: 15px;
}
.newsletter form .btn-custom::before {
  content: "\f00c";
}

#frmNewsPage .btn-custom::before {
  content: "\f00c";
}

/* ---------------------------------- Page Link ---------------------------------- */
#frmSendPageLink .btn-custom::before {
  content: "\f1d8";
}

/* ---------------------------------- Footer ---------------------------------- */
footer {
  padding: 30px 0;
}
footer .logo img {
  max-width: 100px;
}
footer nav {
  font-size: 18px;
  margin-bottom: 40px;
  margin-left: 30px;
  letter-spacing: 0;
  width: 100%;
}
footer nav .mdi {
  font-size: 18px;
}
footer nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  -moz-column-count: 3;
  column-count: 3;
}
footer nav ul li {
  display: block;
  padding: 0 5px;
}
footer nav ul li a {
  opacity: 1;
  color: #fff;
  font-size: 16px;
  z-index: 99;
}
footer nav ul li a:hover {
  opacity: 1;
  text-decoration: none;
  color: #fff;
}
footer nav ul li a.current {
  opacity: 1;
  font-weight: bold;
  cursor: default;
}
footer .social {
  font-size: 25px;
}
footer .social .mdi {
  padding-left: 5px;
}
footer .social .mdi:hover {
  opacity: 0.7;
}

@media (max-width: 766px) {
  footer {
    text-align: center;
  }
  footer .social {
    text-align: center;
    margin: 20px 0;
  }
  footer .social .mdi {
    padding: 0 10px;
    font-size: 25px;
  }
}
@media (max-width: 576px) {
  footer {
    padding-bottom: 80px;
  }
  footer nav {
    margin-top: 30px;
    margin-left: 0px;
    text-align: center;
  }
  footer nav ul {
    -moz-column-count: 1;
    column-count: 1;
  }
}