@charset "UTF-8";

body {
    background-color: #000000;
    background-image: url('../img/bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    color: white;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    font-size: 19px;
    font-weight: 300;
    position: relative;
    height: 100vh;
}

hr {
    width: 100%;
    border-top: 1px;
    border-left: 1px;
    border-right: 1px;
    border-bottom: 1px;
    border-style: solid;
    border-color: #000000;
}

.carosel-3d {
    perspective: 1600px;
    width: 100%;
    max-width: 1000px;
    height: 350px;
    margin: 40px auto;
    position: relative;
}

.carosel-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transform-style: preserve-3d;
    transition: transform 0.9s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.carosel-item {
    position: absolute;
    width: 320px;
    height: 180px;
    left: 50%;
    top: 50%;
    margin-left: -160px;
    margin-top: -90px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    transition: all 0.7s ease;
    cursor: pointer;
}

.carosel-item img {
    width: 320px;
    height: 180px;
    object-fit: cover;
}

.carosel-item.active {
    transform: scale(1.12);
    box-shadow: 0 25px 50px rgba(0,0,0,0.7);
    z-index: 20;
}


#tm-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/bg.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  transition: all 0.3s ease;
}

#tm-bg:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#tm-wrap {
  display: flex;
  align-items: center;
  height: 100%;
  min-height: 100vh;
}

p {
  line-height: 1.9;
  letter-spacing: 1px;
}

.tm-main-content {
  display: flex;
  align-items: center;
  padding: 50px 15px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: auto;
}

.tm-site-header-col {
  display: flex;
  align-items: center;
}

.tm-site-header {
  margin: 10px;
  text-align: right;
  width: 100%;
}

.tm-nav ul {
  padding-left: 0;
  display: block;
}

.tm-nav li {
  list-style: none;
  display: inline-block;
  border: 1px solid white;
  float: left;
  margin: 10px;
}


.subscribe-btn {
  width: 400px;
  text-transform: uppercase;
  display: inline-block;
  padding: 11px 30px;
  border-radius: 7px;
  border: 1px solid #1a1a1a;
  cursor: pointer;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;

  /* Deep gradient black background */
  background: linear-gradient(
      180deg,
      #4a4a4a 0%,
      #2f2f2f 18%,
      #1c1c1c 45%,
      #0f0f0f 70%,
      #050505 100%
  );

  /* GOLD TEXT */
  
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;

  background-clip: text;
  -webkit-background-clip: text;
  color: white;

  text-align: center;
  /* Outer depth */
  box-shadow:
    0 2px 4px rgba(0,0,0,0.45),
    0 0 0 1px rgba(255,255,255,0.05) inset;
}

.subscrabe-btn {
  width: 240px;
  text-transform: uppercase;
  display: inline-block;
  padding: 11px 30px;
  border-radius: 7px;
  border: 1px solid #1a1a1a;
  cursor: pointer;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;

  /* Deep gradient black background */
  background: linear-gradient(
      180deg,
      #4a4a4a 0%,
      #2f2f2f 18%,
      #1c1c1c 45%,
      #0f0f0f 70%,
      #050505 100%
  );

  /* GOLD TEXT */
  
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;

  background-clip: text;
  -webkit-background-clip: text;
  color: white;

  text-align: center;
  /* Outer depth */
  box-shadow:
    0 2px 4px rgba(0,0,0,0.45),
    0 0 0 1px rgba(255,255,255,0.05) inset;
}

/* TOP CENTER HIGHLIGHT */
.subscribe-btn::before, .subscrabe-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 150%;
  height: 60%;
  transform: translateX(-50%);
  pointer-events: none;

  background: radial-gradient(
      ellipse at top center,
      rgba(255,255,255,0.45) 0%,
      rgba(255,255,255,0.22) 20%,
      rgba(255,255,255,0.10) 40%,
      rgba(255,255,255,0.03) 60%,
      rgba(255,255,255,0) 100%
  );

  filter: blur(6px);
  opacity: 0.85;
}

/* INNER METALLIC GLOW */
.subscribe-btn::after, .subscrabe-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background: linear-gradient(
      180deg,
      rgba(255,255,255,0.18) 0%,
      rgba(255,255,255,0.05) 25%,
      rgba(0,0,0,0.25) 75%,
      rgba(0,0,0,0.45) 100%
  );

  mix-blend-mode: soft-light;
}

/* Hover */
.subscribe-btn:hover, .subscrabe-btn:hover {
  background: linear-gradient(
      180deg,
      #4a4a4a 0%,
      #2f2f2f 18%,
      #1c1c1c 45%,
      #0f0f0f 70%,
      #050505 100%
  );
  color: #FFFFFF;
}

/* Pressed */
.subscribe-btn:active, .subscrabe-btn:active {
  background: linear-gradient(
      180deg,
      #2c2c2c 0%,
      #1a1a1a 40%,
      #000000 100%
  );

  box-shadow:
    inset 0 3px 6px rgba(0,0,0,0.65),
    0 1px 1px rgba(0,0,0,0.25);

  transform: translateY(1px);
}





.fa-3x {
  font-size: 2.5em;
}

.product {
  transition: all 0.3s ease;
}

.product:hover {
  color: #a9a9a9;
}

.tm-nav-icon {
  display: block;
  margin-bottom: 25px;
}

/* Expanding Grid Items from Codrops */
.tm-page-title {
  font-weight: 300;
}
.content {
  max-width: 370px;
}
.grid {
  display: flex;
  flex-wrap: wrap;
}
.grid__item {
  margin: 10px;
}

/* Team */
.tm-reverse-sm {
  flex-direction: row;
}

/* Our Work */
.tm-slider-img-link {
  padding-left: 10px;
  padding-right: 10px;
}


/* Footer */
footer {
  position: absolute;
  bottom: 30px;
  text-align: center;
  left: 0;
  right: 0;
}

.tm-text-highlight {
  color: white;
}
.tm-text-highlight:hover {
  color: red;
}
.tm-main-content.tm-footer-relative {
  flex-direction: column;
}
.tm-main-content.tm-footer-relative footer {
  position: relative;
  bottom: 0;
  margin-top: 50px;
}

.tm-copyright-text {
  background-color: rgba(0, 0, 0, 0.6);
  display: inline-block;
  padding: 10px 30px;
  border-radius: 12px;
}

a,
button {
  transition: all 0.3s ease;
}
a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

p:last-child {
  margin-bottom: 0;
}

@media (min-width: 900px) {
  .container {
    max-width: 900px;
  }
}

@media (min-width: 767px) and (max-width: 991px), (max-width: 440px) {
  .tm-nav-link {
    width: 145px;
    height: 145px;
  }
}

@media (max-width: 767px) {
  .container {
    max-width: 450px;
  }
  .content {
    margin-left: auto;
    margin-right: 0;
  }
  .tm-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .grid {
    justify-content: flex-end;
  }
  .tm-col-email {
    padding-left: 15px;
  }
  .tm-reverse-sm {
    flex-direction: column-reverse;
  }
}

@media (max-width: 544px) {
  .tm-main-content {
    flex-direction: column;
  }
  .details__bg {
    padding: 55px 40px;
  }
  .slick-dots li button:before {
    font-size: 15px;
  }

  footer {
    position: relative;
    bottom: 0;
  }
}

@media (max-width: 419px) {
  .tm-nav-link {
    width: 120px;
    height: 120px;
  }

  .fa-3x {
    font-size: 2.2em;
  }
}