/* --------------------

--- Variables

-------------------- */
/* --------------------

--- Mixins

-------------------- */
/*------------------------------------------
	1. Mixins --- Media Query Management
------------------------------------------*/
/*------------------------------------------
	2. center vertically and/or horizontally an absolute positioned element
------------------------------------------*/
/*------------------------------------------
    3. antialiasing mode font rendering
------------------------------------------*/
/*------------------------------------------
	  4. Click Effect
------------------------------------------*/
/* --------------------

--- Reset

-------------------- */
h1,
h2,
h3,
h4,
h5 {
  color: white; }

/* Standard syntax */
::selection {
  background: white;
  /* Highlight background color */
  color: black;
  /* Text color when selected */ }

/* For older versions of Firefox */
::-moz-selection {
  background: white;
  color: black; }

/* Styles for the entire scrollbar */
::-webkit-scrollbar {
  width: 5px;
  /* for vertical scrollbar */
  height: 5px;
  /* for horizontal scrollbar */ }

/* Styles for the scrollbar track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
  background: black; }

/* Styles for the scrollbar thumb (draggable part) */
::-webkit-scrollbar-thumb {
  background: white;
  border-radius: 5px; }

/* Styles for the thumb on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; }

/* --------------------

--- Layout

-------------------- */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1; }

body {
  background: #0e0e0e; }
  body.preload {
    overflow: hidden; }

@media (min-width: 1140px) {
  .ty-container .ty-row {
    width: 80vw;
    margin: 0 auto; } }

.ty-btn {
  background: white;
  color: #0e0e0e !important;
  text-decoration: none;
  font-weight: bold;
  padding: .5rem 1rem;
  border-radius: 20px; }
  .ty-btn:active {
    transform: scale(0.9); }
  .ty-btn i {
    margin-right: 5px; }
  .ty-btn.ty-outline-btn {
    border: 1px solid white;
    background: none;
    color: white !important; }

header {
  display: none; }

/* --------------------

--- Footer

-------------------- */
footer {
  text-align: center;
  padding: 1rem; }
  footer p {
    margin-bottom: 0;
    display: inline-block; }
  footer a {
    color: #404040 !important; }

/* --------------------

--- Footer

-------------------- */
.ty-whatsapp-cta {
  position: fixed;
  z-index: 999;
  bottom: 1rem;
  right: 1rem; }
  .ty-whatsapp-cta a {
    color: white !important;
    text-decoration: none;
    padding: .5rem;
    font-size: xx-large;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #25D366;
    border-radius: 100%;
    box-shadow: 0 0 20px #25d366; }
    .ty-whatsapp-cta a i {
      position: relative;
      top: -1px; }

.loader {
  width: 48px;
  height: 48px;
  border: 5px solid rgba(255, 255, 255, 0.5);
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite; }

@keyframes rotation {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
/* --------------------

--- Landing Temp Hero Banner

-------------------- */
.ty-landing-hero-banner {
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  position: relative; }
  @media (min-width: 768px) {
    .ty-landing-hero-banner {
      height: 80vh; } }
  @media (min-width: 1140px) {
    .ty-landing-hero-banner {
      height: 90vh; } }
  .ty-landing-hero-banner .ty-bkg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; }
    .ty-landing-hero-banner .ty-bkg::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      display: block;
      background: rgba(0, 0, 0, 0.8); }
    .ty-landing-hero-banner .ty-bkg img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .ty-landing-hero-banner .ty-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2; }
    .ty-landing-hero-banner .ty-content h1 {
      font-size: 4rem; }
    .ty-landing-hero-banner .ty-content .ty-title {
      margin-bottom: 1rem;
      width: 100%;
      text-align: center; }
      .ty-landing-hero-banner .ty-content .ty-title img {
        width: 80vw;
        max-width: 1000px;
        margin-bottom: 1rem; }
      .ty-landing-hero-banner .ty-content .ty-title h2 {
        text-align: center;
        font-weight: normal;
        letter-spacing: .7vw;
        padding: 0 1rem;
        display: inline-block;
        width: 100%;
        margin-bottom: 1rem; }
      .ty-landing-hero-banner .ty-content .ty-title h3 {
        padding: 1rem 0;
        text-transform: uppercase; }

/* --------------------

--- Landing Temp CTA

-------------------- */
.ty-landing-temp-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  padding: 0 1rem; }
  .ty-landing-temp-cta a {
    color: white; }
    .ty-landing-temp-cta a.social {
      font-size: x-large; }

/* --------------------

--- Landing Temp ABOUT

-------------------- */
.ty-landing-about {
  padding: 1rem; }
  @media (min-width: 768px) {
    .ty-landing-about {
      display: flex;
      gap: 10px;
      padding: 1rem 0; } }
  .ty-landing-about .ty-img-block {
    display: none; }
    @media (min-width: 768px) {
      .ty-landing-about .ty-img-block {
        display: block;
        width: calc( 33.33% - 10px ); } }
    .ty-landing-about .ty-img-block img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  @media (min-width: 768px) {
    .ty-landing-about .ty-content {
      padding: 0 2rem;
      width: calc( 33.33% - 10px ); } }
  @media (min-width: 1140px) {
    .ty-landing-about .ty-content {
      padding: 3rem; } }
  .ty-landing-about .ty-content .ty-sticky {
    position: sticky;
    top: 2rem; }
  .ty-landing-about h4 {
    text-align: center;
    color: gray;
    margin-bottom: 1rem;
    font-weight: normal;
    display: inline-block;
    width: 100%; }
  .ty-landing-about p {
    color: white;
    text-align: center;
    font-weight: 100;
    font-size: clamp(1.5rem, 1.5vw, 2rem); }

/* --------------------

--- Landing Temp CTA

-------------------- */
.ty-landing-temp-services {
  padding: 1rem; }
  @media (min-width: 1140px) {
    .ty-landing-temp-services {
      margin-bottom: 2vw; } }
  .ty-landing-temp-services .ty-row {
    display: flex;
    flex-direction: column;
    align-items: center; }
  .ty-landing-temp-services h3 {
    text-transform: uppercase;
    font-weight: normal;
    text-align: center;
    font-size: x-large;
    padding: 5rem 0;
    display: inline-block;
    max-width: 1000px; }
  .ty-landing-temp-services h4 {
    text-align: center;
    color: gray;
    margin-bottom: 1rem;
    font-weight: normal;
    display: inline-block;
    width: 100%; }
  .ty-landing-temp-services ul {
    list-style: none;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1rem;
    max-width: 1000px; }
    @media (min-width: 768px) {
      .ty-landing-temp-services ul {
        padding: 2vw 0; } }
    .ty-landing-temp-services ul li {
      color: white;
      font-weight: bold;
      text-transform: uppercase;
      font-size: xx-large; }
      @media (min-width: 1140px) {
        .ty-landing-temp-services ul li {
          font-size: 3vw; } }

/* --------------------

--- Landing Photo Gallery

-------------------- */
.ty-landing-temp-photo-gallery {
  display: flex;
  flex-wrap: wrap; }
  .ty-landing-temp-photo-gallery .ty-temp-photo-gallery-list-item {
    width: 50%; }
    @media (min-width: 768px) {
      .ty-landing-temp-photo-gallery .ty-temp-photo-gallery-list-item {
        width: 33.33%; } }
    @media (min-width: 960px) {
      .ty-landing-temp-photo-gallery .ty-temp-photo-gallery-list-item {
        width: 16.66%; } }
    .ty-landing-temp-photo-gallery .ty-temp-photo-gallery-list-item a {
      aspect-ratio: 1;
      display: block;
      overflow: hidden;
      border: 3px solid black;
      position: relative; }
      .ty-landing-temp-photo-gallery .ty-temp-photo-gallery-list-item a img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: relative;
        z-index: 2; }
      .ty-landing-temp-photo-gallery .ty-temp-photo-gallery-list-item a .ty-loader {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1; }

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