@import url("https://fonts.googleapis.com/css2?family=Sofia+Sans:ital,wght@0,1..1000;1,1..1000&display=swap");
html {
  font-size: 20px;
}

/**
  * Reset some basic elements
  */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
hr,
dl,
dd,
ol,
ul,
figure {
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 2em;
}

/**
   * Basic styling
   */
body {
  font: 400 20px/1.5 "Sofia Sans", sans-serif;
  color: #efefef;
  background-color: #181818;
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: "kern" 1;
  -moz-font-feature-settings: "kern" 1;
  -o-font-feature-settings: "kern" 1;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  overflow-wrap: break-word;
}

/**
   * Set `margin-bottom` to maintain vertical rhythm
   */
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
ul,
ol,
dl,
figure,
.highlight {
  margin-bottom: 15px;
}

hr {
  margin-top: 30px;
  margin-bottom: 30px;
}

/**
   * `main` element
   */
main {
  display: block; /* Default value of `display` of `main` element is 'inline' in IE 11. */
}

/**
   * Images
   */
img {
  max-width: 100%;
  vertical-align: middle;
}

/**
   * Figures
   */
figure > img {
  display: block;
}

figcaption {
  font-size: 17.5px;
}

/**
   * Lists
   */
ul,
ol {
  margin-left: 30px;
}

li > ul,
li > ol {
  margin-bottom: 0;
}

/**
   * Headings
   */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  color: #ce6e0e;
}

/**
   * Links
   */
a {
  color: #0755d2;
  text-decoration: none;
}
a:visited {
  color: #bd6217;
}
a:hover {
  color: #3092e2;
  text-decoration: underline;
}
.social-media-list a:hover {
  text-decoration: none;
}
.social-media-list a:hover .username {
  text-decoration: underline;
}

.bold {
  font-weight: 700;
}

.italic {
  font-style: italic;
}

.underline {
  text-decoration: underline;
}

.left-justify {
  text-align: right;
}

.center-justify {
  text-align: center;
}

.right-justify {
  text-align: right;
}

/**
   * Blockquotes
   */
blockquote {
  color: #ce6e0e;
  border-left: 4px solid #ce6e0e;
  padding-left: 15px;
  font-size: 1.125rem;
  font-style: italic;
}
blockquote > :last-child {
  margin-bottom: 0;
}
blockquote i,
blockquote em {
  font-style: normal;
}

/**
   * Code formatting
   */
pre,
code {
  font-family: "Menlo", "Inconsolata", "Consolas", "Roboto Mono", "Ubuntu Mono", "Liberation Mono", "Courier New", monospace;
  font-size: 0.9375em;
  border: 1px solid #ce6e0e;
  border-radius: 3px;
  background-color: #181818;
}

code {
  padding: 1px 5px;
}

pre {
  padding: 8px 12px;
  overflow-x: auto;
}
pre > code {
  border: 0;
  padding-right: 0;
  padding-left: 0;
}

.highlight {
  border-radius: 3px;
  background: #181818;
}
.highlighter-rouge .highlight {
  background: #181818;
}

main {
  min-height: 100vh;
}

/**
   * Clearfix
   */
/**
   * Icons
   */
.orange {
  color: #f66a0a;
}

.grey {
  color: #828282;
}

.svg-icon {
  width: 1.25em;
  height: 1.25em;
  display: inline-block;
  fill: currentColor;
  vertical-align: text-bottom;
}

/**
   * Tables
   */
table {
  margin-bottom: 30px;
  width: 100%;
  text-align: left;
  color: #efefef;
  border-collapse: collapse;
  border: 1px solid #000;
}
table tr:nth-child(even) {
  background-color: yellow;
}
table th,
table td {
  padding: 10px 15px;
}
table th {
  background-color: #ce6e0e;
  border: 1px solid #000;
}
table td {
  border: 1px solid #000;
}
@media screen and (max-width: 800px) {
  table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
}

.large-button {
  background-color: #ce6e0e;
  display: block;
}

.large-button {
  border: #ce6e0e 3px solid;
  border-radius: 0px;
  background: #ce6e0e;
  color: #efefef;
  font-size: 26px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.large-button:hover {
  border: #bd6217 3px solid;
  background: #ea8d02;
  color: #efefef;
  text-decoration: none;
  transition: all 0.2s ease;
}

.large-button:active {
  background: transparent;
  color: #efefef;
  text-decoration: none;
}

.large-button:visited {
  color: #efefef;
}

/* Media query for phone */
@media (max-width: 767px) {
  .hero-text {
    width: calc(100% - 0.8rem);
    padding: 0 0.4rem 0 0.4rem;
  }
}
/**
   * Forms
   */
form {
  margin: 0;
}

label,
input,
textarea {
  display: block;
  margin-bottom: 10px;
  font-family: "Sofia Sans", sans-serif;
  font-size: 20px;
}

input {
  width: calc(100% - 14px);
  padding: 5px;
  background-color: transparent;
  color: #efefef;
  border: none;
  margin: 0;
  font-size: 0.7rem;
  padding: 0 0 0 5px;
  appearance: none;
  outline: none;
  transition: 0.2s all ease;
}

textarea {
  width: calc(100% - 14px);
  padding: 5px;
  background-color: transparent;
  color: #efefef;
  border: #efefef 2px solid;
  appearance: none;
  outline: none;
  transition: 0.2s all ease;
}

textarea:focus {
  border: #ce6e0e 2px solid;
  transition: 0.2s all ease;
}

label {
  color: #ce6e0e;
  margin: 0 0 0 5px;
  transition: 0.2s all ease;
}

textarea {
  height: 8rem;
  font-size: 0.8rem;
}

button {
  cursor: pointer;
  font-family: "Sofia Sans", sans-serif;
  padding: 0.5rem 0.8rem 0.5rem 0.8rem;
}

.inputfield {
  margin-bottom: 1rem;
  border-bottom: #efefef 2px solid;
  height: 2.5rem;
}

.labelfocused {
  font-size: 0.7rem;
  font-weight: 700;
  color: #ce6e0e;
}

.inputfocused {
  font-size: 1rem;
  border: none;
  transition: 0.2s all ease;
}

/* General two column layout */
.genmulcol {
  display: flex;
}

.genleftcolumn {
  padding: 0 1rem 0 0;
}

.genrightcolumn {
  padding: 0;
}

/* For desktop view */
.mulcol {
  display: flex;
}

.column {
  flex: 1;
}

.leftcol {
  float: right;
  padding: 0 1rem 0 0;
}

.rightcol {
  float: left;
  padding: 0 0 0 1rem;
}

.leftcol,
.rightcol {
  width: calc(90% - 1rem);
  max-width: calc(512px - 1rem);
}

/* Media query for phone */
@media (max-width: 767px) {
  .mulcol {
    flex-direction: column;
    width: calc(100% - 0.8rem);
    padding: 0 0.4rem 0 0.4rem;
  }
  .leftcol,
  .rightcol {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  .rightcol button {
    float: right;
  }
  #map {
    width: calc(100vw - 0.8rem) !important;
    max-width: 100% !important;
  }
}
/* Media query for tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .mulcol {
    width: 90%;
    margin: 0 auto;
  }
  .leftcol,
  .rightcol {
    width: 100%;
    padding: 0;
  }
  .leftcol {
    padding-right: 1rem;
  }
  #map {
    width: 40vw;
  }
}
#map {
  height: 60vh;
  max-width: calc(512px - 1rem);
  width: calc(45vw - 1rem);
}

header img {
  margin: 2rem auto 0 auto;
  display: block;
  height: 150px;
}

header {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.footer-inner {
  width: 90%;
  margin: 0 auto 0 auto;
  max-width: 1024px;
  text-align: center;
  font-size: 0.8rem;
}

/* Media query for phone */
@media (max-width: 767px) {
  .footer-inner {
    width: calc(100% - 0.8rem);
    padding: 0 0.4rem 0 0.4rem;
  }
}
.hero {
  display: block;
  width: 100%;
  overflow: auto;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  box-shadow: -1px -14px 11px -10px rgba(0, 0, 0, 0.69) inset;
}

.hero-text {
  display: block;
  width: 90%;
  max-width: 1024px;
  margin: 2rem auto 2rem auto;
  text-align: center;
}

.hero-text p {
  text-align: justify;
}

.hero .large-button {
  width: 15rem;
  height: 2rem;
  margin: 0.5rem auto 0.5rem auto;
}

.gallery-page {
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 2rem auto 2rem auto;
}

.gallery-page .tile {
  width: calc(50% - 1rem);
  padding: 0.5rem;
}

.gallery {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  width: 90%;
  max-width: 1024px;
  margin: 2rem auto 2rem auto;
}

.tile {
  width: calc(50% - 2rem);
  padding: 1rem;
  text-align: center;
}

.tile p {
  padding-top: 0.5rem;
}

.img-container {
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}

.img-container img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

/* Media query for phone */
@media (max-width: 767px) {
  .tile, .gallery-page .tile {
    padding: 0.4rem;
    width: 100%;
  }
  .img-container {
    aspect-ratio: 5/3;
  }
  .gallery {
    width: 100%;
  }
}
/* Media query for tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .tile, .gallery-page .tile {
    width: calc(50% - 1rem);
    padding: 0.5rem;
  }
  .img-container {
    aspect-ratio: 5/3;
  }
}
.home-inner {
  width: 90%;
  margin: 0 auto 0 auto;
  max-width: 1024px;
}

/* Media query for phone */
@media (max-width: 767px) {
  .home-inner {
    width: calc(100% - 0.8rem);
    padding: 0 0.4rem 0 0.4rem;
  }
}
.carousel {
  width: 90%;
  margin: 0 auto 0 auto;
  max-width: 1024px;
}

.carousel-card {
  background-color: #ce6e0e;
  padding: 1rem;
  border-radius: 1rem;
  flex: 0 0 calc(33.333333% - 2.5rem);
  margin-right: 0.5rem;
  height: 8rem;
  line-height: 8rem;
}

.carousel-card p {
  display: inline-block;
  vertical-align: middle;
  line-height: normal;
}

.carousel-inner {
  display: flex;
  transition: transform 0.5s ease;
  position: relative;
  width: 100%;
}

.carousel-outer {
  overflow: hidden;
}

.carousel-controls {
  margin: 1rem auto 2rem auto;
  width: fit-content;
  padding-right: 0.5rem;
}

.carousel-controls button {
  border-radius: 2rem;
  width: 3rem;
  height: 3rem;
  display: inline-block;
  box-shadow: -1px 4px 6px 0px rgba(0, 0, 0, 0.75);
}

/* Media query for tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .carousel-card {
    flex: 0 0 calc(50% - 2.5rem);
  }
}
/* Media query for phone */
@media (max-width: 767px) {
  .carousel {
    width: calc(100% - 0.8rem);
    padding: 0 0.4rem 0 0.4rem;
  }
  .carousel-card {
    flex: 0 0 calc(100% - 2.5rem);
  }
}

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