/*
Theme Name: BeiruTech
Theme URI: https://gitlab.com/247studios/beirutech
Author: 247studios Inc.
Author URI: https://247studios.ca/
Description: Codebase for https://www.beirutech.com
Version: 1.0
License: UNLICENSED
Text Domain: beirutech
*/
.btn-reset, .bt-carrousel-tap-button-prev, .bt-carrousel-tap-button-next {
  display: inline-block;
  border: none;
  padding: 0;
  margin: 0;
  text-decoration: none;
  background: transparent;
  color: inherit;
  font-family: sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

#menu-bt-navigation {
  margin: 0;
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 26px;
  padding-right: 58px;
  box-sizing: border-box;
  list-style: none;
  display: flex;
}

.menu-bt-navigation-container {
  z-index: 1;
}

.menu-bt-navigation__label {
  font-family: sans-serif;
  margin-bottom: 4px;
}

.menu-bt-navigation-listitem {
  padding-left: 6px;
  padding-right: 6px;
}
.menu-bt-navigation-listitem:first-child {
  padding-left: 0;
}
.menu-bt-navigation-listitem:last-child {
  padding-right: 0;
}

.menu-bt-navigation-anchor {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  color: #505050;
  text-decoration: none;
  text-transform: lowercase;
  font-size: 0.75rem;
}
.menu-bt-navigation-anchor-without-caption .menu-bt-navigation-image-wrapper {
  display: inline-block;
  position: relative;
  line-height: 0;
}
.menu-bt-navigation-anchor-with-caption .menu-bt-navigation-image-wrapper {
  display: inline-block;
  position: relative;
  line-height: 0;
  padding: 6px;
  margin-bottom: 4px;
  border-radius: 50%;
  border: 3px solid;
  border-color: #e4524f;
  background-color: white;
}
.menu-bt-navigation-anchor-with-caption .menu-bt-navigation-image-wrapper .overlay {
  position: absolute;
  top: -3px;
  left: -3px;
}
.menu-bt-navigation-anchor.current_page_item .menu-bt-navigation-image-wrapper {
  border-color: #f4b9b8;
  background-color: white;
}

.menu-bt-navigation-image-with-caption {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.menu-bt-navigation-image-without-caption {
  max-height: 52px;
  width: auto;
}

.menu-bt-navigation-anchor-with-caption.current-menu-item .menu-bt-navigation-image-wrapper .overlay, .menu-bt-navigation-anchor-with-caption.current-menu-item .menu-bt-navigation-image-wrapper .overlay * {
  box-sizing: border-box;
}

.menu-bt-navigation-anchor-with-caption.current-menu-item .menu-bt-navigation-image-wrapper .overlay {
  width: 40px;
  height: 40px;
}

.menu-bt-navigation-anchor-with-caption.current-menu-item .menu-bt-navigation-image-wrapper .overlay .pie {
  width: 50%;
  height: 100%;
  transform-origin: 100% 50%;
  position: absolute;
  background: transparent;
  border: 3px solid #e4524f;
}

.menu-bt-navigation-anchor-with-caption.current-menu-item .menu-bt-navigation-image-wrapper .overlay .spinner {
  border-radius: 100% 0 0 100%/50% 0 0 50%;
  z-index: 200;
  border-right: none;
  animation: rota 1s linear infinite;
}

.menu-bt-navigation-anchor-with-caption.current-menu-item .menu-bt-navigation-image-wrapper .overlay .filler {
  border-radius: 0 100% 100% 0/0 50% 50% 0;
  left: 50%;
  opacity: 0;
  z-index: 100;
  animation: opa 1s steps(1, end) infinite reverse;
  border-left: none;
}

.menu-bt-navigation-anchor-with-caption.current-menu-item .menu-bt-navigation-image-wrapper .overlay .mask {
  width: 50%;
  height: 100%;
  position: absolute;
  background: inherit;
  opacity: 1;
  z-index: 300;
  animation: opa 1s steps(1, end) infinite;
  border-radius: 100% 0 0 100%/50% 0 0 50%;
  border: 3px solid #f4b9b8;
  border-right: none;
}

.menu-bt-navigation-anchor-with-caption.current-menu-item .menu-bt-navigation-image-wrapper .overlay .spinner,
.menu-bt-navigation-anchor-with-caption.current-menu-item .menu-bt-navigation-image-wrapper .overlay .filler,
.menu-bt-navigation-anchor-with-caption.current-menu-item .menu-bt-navigation-image-wrapper .overlay .mask {
  animation-play-state: paused;
}

@keyframes rota {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes opa {
  0% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}
@media screen and (min-width: 1000px) {
  #menu-bt-navigation {
    transition: width 150ms ease-in-out;
    padding: 20px 30px 30px;
    flex-direction: column;
    align-items: center;
    max-width: 250px;
    overflow: hidden;
    width: 145px;
    position: sticky;
    top: 0;
  }
  #menu-bt-navigation:hover {
    width: 250px;
  }

  .menu-bt-navigation-container {
    box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.3);
    position: sticky;
    height: 100%;
    top: 0;
  }
  .menu-bt-navigation-anchor {
    justify-content: flex-start;
    flex-direction: row;
  }
  .menu-bt-navigation-listitem {
    transition: transform 150ms ease-in-out;
    transform: translateX(20px);
    margin-top: 15px;
    overflow: hidden;
    width: 100%;
    padding: 0;
  }
  .menu-bt-navigation-listitem:first-child {
    transform: translateX(0px);
    margin-bottom: 20px;
  }
  #menu-bt-navigation:hover .menu-bt-navigation-listitem {
    transform: translateX(0px);
  }
  .menu-bt-navigation__label {
    transition: opacity 150ms ease-in-out;
    margin-bottom: 5px;
    font-size: 15px;
    padding: 0 13px;
    opacity: 0;
  }
  #menu-bt-navigation:hover .menu-bt-navigation__label {
    opacity: 1;
  }
}
.menu-bt-floating-action-buttons-container {
  position: fixed;
  bottom: 0;
  right: 0;
}

#menu-bt-floating-action-buttons {
  padding: 14px;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column-reverse;
}

.menu-bt-floating-action-buttons-anchor {
  transition: opacity 300ms ease-in-out, transform 300ms ease-in-out;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  color: #505050;
  text-decoration: none;
  text-transform: lowercase;
  font-size: 0.75rem;
  font-family: sans-serif;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 4px solid #e4524f;
  background: white;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
  padding: 8px;
  cursor: pointer;
}
.menu-bt-floating-action-buttons-anchor--hide {
  opacity: 0;
  transform: translateY(200%);
}

.menu-bt-floating-action-buttons-image {
  max-height: 28px;
  width: auto;
}

.bt-carrousel-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background-color: #ababab;
}
@media screen and (min-width: 1000px) {
  .bt-carrousel-progress {
    top: auto;
    bottom: 0;
    height: 12px;
  }
}

.bt-carrousel-progress-value {
  background-color: #505050;
  transition: width linear;
  width: 0;
  height: 100%;
}

.bt-carrousel-dots {
  position: absolute;
  bottom: 49px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  max-width: 220px;
  flex-wrap: wrap;
  margin: auto;
}

.bt-carrousel-dots-item {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: white;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  margin: 5px;
  appearance: none;
}
.bt-carrousel-dots-item:checked {
  background-color: #ababab;
}

.bt-carrousel-tap-label {
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.bt-carrousel-tap-label {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  font-size: 0.75rem;
  text-transform: lowercase;
  text-align: center;
}

.bt-carrousel-tap-button-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
}
.bt-carrousel-tap-button-prev, .bt-carrousel-tap-button-next {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.bt-carrousel-tap-button-prev {
  flex-grow: 1;
}
.bt-carrousel-tap-button-next {
  flex-grow: 3;
}

.bt-carrousel {
  position: relative;
  min-height: 84px;
  height: 100%;
}

.bt-carrousel-slides {
  position: relative;
}

.bt-story {
  font-size: 1.1em;
  font-size: 16px;
  font-family: sans-serif;
}
.bt-story[data-theme=red] {
  color: white;
  background-color: #e4524f;
}
.bt-story[data-theme=blue] {
  color: #505050;
  background-color: #88cccc;
}
.bt-story h1, .bt-story h2, .bt-story h3, .bt-story h4, .bt-story h5, .bt-story h6, .bt-story p {
  font-weight: 300;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.2;
}
.bt-story code {
  font-family: inherit;
  font-size: inherit;
  background-color: white;
  color: #e4524f;
  padding-left: 4px;
  padding-right: 4px;
}

.bt-story-slide {
  height: calc(100vh - 98px);
  padding: 50px 25px;
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100%;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.bt-page {
  position: relative;
  font-size: 1.1em;
  font-size: 16px;
  font-family: sans-serif;
}
.bt-page[data-theme=red] {
  color: white;
  background-color: #e4524f;
}
.bt-page[data-theme=blue] {
  color: #505050;
  background-color: #88cccc;
}
.bt-page h1, .bt-page h2, .bt-page h3, .bt-page h4, .bt-page h5, .bt-page h6, .bt-page p {
  font-weight: 300;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.2;
}
.bt-page code {
  font-family: inherit;
  font-size: inherit;
  background-color: white;
  color: #e4524f;
  padding-left: 4px;
  padding-right: 4px;
}

.bt-page-content {
  padding: 50px 25px;
  box-sizing: border-box;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.bt-post {
  position: relative;
  font-size: 1.1em;
  padding: 0 24px;
  margin: 12px 0;
  font-size: 16px;
  font-family: sans-serif;
}
.bt-post[data-theme=red] {
  color: white;
  background-color: #e4524f;
}
.bt-post[data-theme=blue] {
  color: #505050;
  background-color: #88cccc;
}
.bt-post h1, .bt-post h2, .bt-post h3, .bt-post h4, .bt-post h5, .bt-post h6, .bt-post p {
  font-weight: 300;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.2;
}
.bt-post code {
  font-family: inherit;
  font-size: inherit;
  background-color: white;
  color: #e4524f;
  padding-left: 4px;
  padding-right: 4px;
}
.bt-post__line {
  margin-bottom: 12px;
}

.bt-post-content {
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.bt-post-image {
  max-width: 100%;
  height: auto;
  margin: auto;
}

.bt-post-category {
  font-size: 1em;
  text-transform: uppercase;
  color: white;
  background-color: #e4524f;
  padding: 4px 8px;
  display: inline-block;
  text-decoration: none;
  margin-bottom: 16px;
}

.bt-post-title {
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #505050;
  margin-bottom: 16px;
}
.bt-post-title a {
  text-decoration: none;
  font-size: inherit;
  color: inherit;
  font-family: inherit;
}

.bt-post-excerpt {
  font-size: 0.8rem;
  margin-bottom: 32px;
}
.bt-post-excerpt a {
  text-decoration: none;
  font-size: inherit;
  color: inherit;
  font-family: inherit;
}

.bt-post-readmore {
  color: #e4524f;
  font-size: 0.8rem;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 8px;
}
.bt-post-readmore-icon {
  height: 14px;
  vertical-align: middle;
  margin-right: 8px;
}
.bt-post-readmore-row {
  margin-bottom: 48px;
}

.bt-post-summary {
  padding: 0 24px;
  margin: 12px 0;
  font-size: 16px;
  font-family: sans-serif;
}
.bt-post-summary[data-theme=red] {
  color: white;
  background-color: #e4524f;
}
.bt-post-summary[data-theme=blue] {
  color: #505050;
  background-color: #88cccc;
}
.bt-post-summary h1, .bt-post-summary h2, .bt-post-summary h3, .bt-post-summary h4, .bt-post-summary h5, .bt-post-summary h6, .bt-post-summary p {
  font-weight: 300;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.2;
}
.bt-post-summary code {
  font-family: inherit;
  font-size: inherit;
  background-color: white;
  color: #e4524f;
  padding-left: 4px;
  padding-right: 4px;
}

.bt-contact {
  padding: 0 32px;
  margin-top: 32px;
  max-width: 640px;
  width: 100%;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}
.bt-contact-title {
  font-family: sans-serif;
  font-size: 1.4rem;
  font-weight: normal;
  text-transform: uppercase;
  color: white;
  background-color: #e4524f;
  padding: 4px 8px;
  display: inline-block;
  text-decoration: none;
}
.bt-contact label {
  font-weight: bold;
  font-size: 1.2rem;
  font-family: sans-serif;
  display: block;
  margin-top: 12px;
  color: #505050;
}
.bt-contact input,
.bt-contact textarea {
  margin-top: 6px;
  font-size: 0.8rem;
  font-family: sans-serif;
  display: block;
  width: 100%;
  border: none;
  color: #505050;
  border-bottom: 3px solid #ababab;
  resize: vertical;
  padding: 6px 4px;
}
.bt-contact .grecaptcha-badge {
  display: none !important;
}

.bt-contact-response {
  color: #e4524f;
}

.bt-blog {
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .bt-blog {
    max-width: 1000px;
    display: flex;
  }
  .bt-blog #bt-post-image-carrousel {
    flex-grow: 5;
    width: 0;
  }
  .bt-blog #bt-post-summary-carrousel {
    flex-grow: 3;
    width: 0;
  }
}

html,
body {
  font-size: 16px;
  padding: 0;
  margin: 0;
  height: 100%;
}

*:not(.user-selectable) {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
     supported by Chrome, Edge, Opera and Firefox */
  touch-action: manipulation;
}

@media screen and (min-width: 1000px) {
  body {
    grid-template-columns: min-content auto;
    display: grid;
  }

  main {
    flex-grow: 1;
  }
}

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