@import url('https://fonts.googleapis.com/css2?family=Freehand&display=swap');

@font-face {
  font-family: "Allison_Script";
  src:
    url("media/Allison_Script.otf") format('opentype');
}

/*Colors*/
:root {
  --first-color: #161616;
  --second-color: #ffffff;
  --text-color: #6dddff;
  --white-color: #FFF;
  --red-color: rgb(214, 9, 9);
}

:root {
  --body-font:'Raleway', sans-serif;
  --h2-font-size: 1.25rem;
  --big-font-size: 3rem;
  --normal-font-size: 0.93rem;
  --smaller-font-size: 0.75rem;
}

@media screen and (min-width: 768px) {
  :root {
    --h2-font-size: 2rem;
    --big-font-size: 6rem;
    --normal-font-size: 1rem;
    --smaller-font-size: 0.813rem;
  }
}

/*z index*/
:root {
  --z-back: -10;
  --z-normal: 1;
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
}

/*----- BASE -----*/
*, ::before, ::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0 0 0 0;
  /* background: url("media/circle.png") no-repeat;
  background-size: contain; */
  /* background-repeat: repeat-y; */
  font-family: var(--body-font);
  background-color: var(--first-color);
  color: var(--second-color);
  font-weight: 700;
 
  overflow-x: hidden;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  /* top: 0%; */
  z-index: 9999;
  background: #1a1b1b;
  overflow-x: hidden;
}

.tribal {
  background: url("media/Tstar.png") no-repeat center center;
  background-size: contain;
  background-color: #161616;
  overflow-x: hidden;
}

.tribal p {
  position: relative;
  top: 50%;
  font-style: italic;
  font-size: 1rem;
  text-align: center;
  font-family:'Courier New', Courier, monospace;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: -9px 0px 19px #ec6409, 9px 0px 19px #0ba6ee;
  overflow-x: hidden;
}

.top-triangel {
  position: absolute;
  background: url('media/U2.png') no-repeat;
  background-size: contain;
  opacity: 0.1;
  width: 200px;
  height: 600px;
  z-index: -1;
}

.bottom-triangel {
  position: absolute;
  bottom: 0%;
  right: 0%;
  background: url('media/U2.png') no-repeat;
  background-size: contain;
  opacity: 0.1;
  width: 100px;
  height: 600px;
  z-index: -1;
}

.first {
  /* top: 0; */
  left: 0;
}

.second {
  /* top: 33.3; */
  left: 33.3%;
}

.third {
  /* top: 66.6%; */
  left: 66.6%;
}

h1, h2, h3, h4 {
  margin: 0;

}

h2 {
  text-align: center;
  padding-bottom: 4rem;
}

h6 {
  font-size: 1em;
}

a {
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

#logo {
  position: absolute;
  top: 120px;
  left: 10%;
  z-index: 101;
}

@media screen and (max-device-width: 949px) {
  #logo {
    left: 50%;
    transform: translate(-50%, -50%); 
  }
}

@media screen and (orientation: landscape) {
  #logo {
    left: 25%;
    transform: translate(-50%, -50%); 
  }
}

/*----- LAYOUT -----*/
.bd-grid {
  max-width: 1200px;
  margin-left: 1rem;
  margin-right: 1rem;
}

.l-header {
  width: 100%;
  position: fixed;
  top: 10;
  left: 0;
  z-index: var(--z-modal);
  background-color: #2b2b2b9a;
}

/*----- PAGES -----*/
.nav {
  height: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  
}

@media screen and (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    color: #303030;
    background-color: #000000ec;
    backdrop-filter: sepia(90%);
    width: 85%;
    height: 100vh;
    padding: .75rem;
    z-index: var(--z-modal);
    font-weight: 900;
    -webkit-transition: .5s;
    transition: .5s;
  }
}

.nav__close {
  text-align: right;
}

.nav__close-icon {
  font-size: 1.5rem;
  cursor: pointer;
}

.nav__list {
  text-align: center;
  padding-top: 2.5rem;
  
}

.nav__item {
  margin-bottom: 2.5rem;
}

.nav__link {
  padding: .5rem;
  color: #fff;
  text-transform: uppercase;
  border-bottom: solid #c9ebff 0.100px;
  box-shadow: 0px -10px 15px -16px #0ea2c7 inset;
}

.nav__link:hover {
  color: #fff;
  border-bottom: solid #04aaf7 1pt;
  box-shadow: 0px -10px 17px -16px #1bc1f3 inset;
  text-shadow: 0 0px 4px #FFF, 5px 0px 10px rgb(94, 178, 247), 16px 0px 20px #017fa5, 20px 0px 40px rgb(207, 236, 255);
  transition-duration: 200ms;
  
}

.nav__logo {
  padding: .5rem;
  padding-left: 18px;
  border-left: solid #c9ebff 1px;
  box-shadow: 15px 0px 15px -16px #0ea2c7 inset;
  font-size: var(--normal-font-size);
  font-weight: 900;
  color: var(--text-color);
}

.nav__logo:hover {
  color: #fff;
  border-left: solid #04aaf7 1px;
  box-shadow: 15px 0px 15px -16px #1bc1f3 inset;
  text-shadow: 0 0px 4px #FFF, 5px 0px 10px rgb(94, 178, 247), 16px 0px 20px #017fa5, 20px 0px 40px rgb(207, 236, 255);
  transition-duration: 200ms;
}

.nav__toggle {
  font-size: 1.5rem;
  cursor: pointer;
  color: #1bc1f3;
}

/*Aparecer menu*/
.show {
  right: -5%;
}

/*Cerrar menu*/
.hidden {
  right: -100%;
}

/*Home*/
.l-main {
  height: calc(100vh - 3rem);
}

.home {
  position: relative;
  height: 100vh;
  width: 100%;
  /* background: url("media/3color2.png") center no-repeat;
  background-size: contain; */
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4fr;
      grid-template-columns: 1fr 4fr;
  -ms-flex-line-pack: end;
      align-content: flex-end;
  z-index: var(--z-normal);
}

.home__title {
  position: absolute;
  top: 10%;
  left: 15%;
  /* font-size: var(--big-font-size); */
  /* font-family: 'Roboto', sans-serif; */
  font-family: "Allison_Script";
  /* text-transform: uppercase; */
  font-size: 100px;
  font-weight: 800;
  transform: rotate(-10deg);
  text-shadow: 2px 0px 5px #04acdf, -2px 0px 5px rgba(241, 103, 16, 0.92);
  z-index: var(--z-fixed);
}

@media screen and (max-device-width: 949px) {
  .home__title {
    top: 14%;
    left: 12%;
    font-size: 55px;
  }
}

.home__name {
  position: absolute;;
  top: 22%;
  left: 15%;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  /* font-size: 50px; */
  /* font-size: var(--big-font-size); */
  font-weight: 100;
  transform: rotate(-10deg);
  z-index: var(--z-fixed);
}

@media screen and (max-device-width: 949px) {
  .home__name {
    top: 19%;
    left: 20%;
  }
}

.home__img {
  position: absolute;
  top: 20%;
  left: 35%;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  width: 55vmin;
  height: 75vmin;
  font-family: 'Freehand', cursive;
  z-index: var(--z-tooltip);
}

@media screen and (max-device-width: 949px) {
  .home__img {
    top: 22%;
    
  }
}

@media screen and (max-device-width: 949px) and (orientation: portrait) {
  .home__img {
    top: 35%;
    
  }
}

.master {
  position: absolute;
  width: 100%;
  left: 10px;
  bottom: 30%;
  font-size: 24px;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
  text-transform: uppercase;
  opacity: 0;
  overflow: hidden;
  
}

@media screen and (max-device-width: 949px) {
  .master {
    letter-spacing: 2px;
    font-size: 14px;
  }
}

.master .one {
  
}

.master .two {
  font-weight: 800;
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: rgb(255, 255, 255);
  color: transparent;
  
  
}

@media screen and (max-device-width: 949px) {
  .master .two {
    -webkit-text-stroke-width: 0.7px;
  }
}

.master .three {
  letter-spacing: 1.9px;
	font-size: 68%;
  -webkit-text-stroke-width: 1.2px;
  -webkit-text-stroke-color: #6dddff;
  color: transparent;
  background: rgb(255,255,255);
  background: linear-gradient(270deg, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 75%);
  
}

@media screen and (max-device-width: 949px) {
  .master .three {
    font-size: 48%;
    letter-spacing: 4.3px;
    
  }
}

.page-title {
  position: relative;
  max-width: 1200px;
  padding: 8rem 0 8rem 1rem;
  /* margin-top: 7rem; */
}

.page-title h1 {
  font-weight: 800;
  color: #fff;
  letter-spacing: 5px;
 
}

.page-title h3 {
  font-weight: 800;
  letter-spacing: 5px;
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: #6dddff;
  color: transparent;
  background: linear-gradient(270deg, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 75%);
}

.home__img:hover .master {
  left: 0;
  opacity: 1;
  /* transform: translate3d(-110px, 0, 0); */
  -webkit-transition-delay: 0.05s;
	transition-delay: 0.05s;
	-webkit-transition-duration: 0.2s;
	transition-duration: 0.2s;
  transform: translate3d(-110px, 0, 0) perspective(100px) rotateY(10deg);
  
  padding: .2rem;
  /* text-shadow: 0 0px 4px #FFF, 5px 0px 10px rgb(94, 178, 247), 16px 0px 20px #017fa5, 0px 0px 0px rgb(207, 236, 255); */

}

@media screen and (max-device-width: 949px) {
  .home__img:hover .master {
    left: 35px;
  }
}


.home__social {
  position: absolute;
  /* -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl; */
  /* -webkit-transform: rotate(180deg);
          transform: rotate(180deg); */
  bottom: 0rem;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.home__social-link {
  padding-bottom: 1rem;
  color: var(--text-color);
  font-size: 32px;
}

.home__social-link:hover {
  color: #fff;
  text-shadow: -2px 0px 14px #FFF, 5px 0px 10px rgb(94, 178, 247), 16px 0px 20px #017fa5, 0px 0px 40px rgb(207, 236, 255);
  transition-duration: 200ms;
}

/* .subtitle {
  position: absolute;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  padding-top: 2rem;
  padding-right: .5rem;
  right: 20px;
  bottom: 20%;
  transform: rotate(-90deg);
  font-weight: 900;
} */

.home__button {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 1rem;
  background-color: var(--text-color);
  color: var(--first-color);
}

.home__button-icon {
  padding-left: 4.25rem;
}

/*----- MEDIA QUERIES -----*/
@media screen and (min-width: 768px) {
  body {
    margin: 0;
  }
  .l-main {
    height: 100vh;
  }
  .nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 0;
    
  }
  .nav__item {
    margin-left: 3rem;
    margin-bottom: 0;
  }
  .nav__toggle, .nav__close {
    display: none;
  }
  .nav__link {
    text-transform: initial;
    color: var(--text-color);
  }
  .home {
    -ms-grid-columns: 4fr 1fr;
        grid-template-columns: 4fr 1fr;
  }
  /* .home__title {
    top: 16%;
    left: 23%;
  } */
  /* .home__img {
    width: 359px;
    height: 539px;
    top: 18%;
    left: 43%;
  } */
  .home__social {
    padding-top: 5rem;
    
  }
  .home__social-link {
    padding-bottom: 3rem;
  }
  .home__subtitle {
    padding-top: 18rem;
    padding-right: 8rem;
  }
}

@media screen and (min-width: 1200px) {
  .bd-grid {
    margin-left: auto;
    margin-right: auto;
  }
}

main {
  margin-bottom: 3rem;
}

section {
  /* padding: 6rem 0rem; */
}

.section-heading {
  position: relative;
  padding: 1rem;

}

.grid-box {
  position: relative;
  font-size: 1em;
  height: 100vmin;
  width: auto;
  margin: 20px auto;
  
}

.grid-text {
  position: relative;
  float: left;
  height: 100%;
  width: 100%;
  display: grid;
  padding: 15px 30px;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  border-left: solid #a1cbdf 1px;
  box-shadow: 15px 0px 15px -16px #1bc1f3 inset;
}

.grid {
  position: relative;
  height: 60vmin;
  width: auto;
  filter: drop-shadow(0 7px 15px rgba(0, 110, 255, 0.5));
  background: url("media/9.jpg") no-repeat;
  background-size: contain;
}

@media screen and (max-width: 767px) {
  .grid {
    
  }
 }

@media screen and (max-width: 767px) {
  .grid {
   
  }
}

@media screen and (max-width: 580px) {
  .grid {
  
  }
}


.shaped {
  height: 280px;
  width: 280px;
  background:  url("media/3.jpg") center center no-repeat;
  background-size: cover;
  float: right;
  shape-outside: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
  shape-margin: 20px;
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
  
}

.icon {
  position: relative;
  width: 70px;
  padding: 1rem;
  margin: .5rem 1rem;
  background-color: #fff;
  border-radius: 20%;
  float: left;
}

.text {
  padding: 1rem;
}

/* //// LINE SLIDER //// */

.line-slider-box {
  width: min(1200px, 90vw);
  margin: auto;
  padding: 3rem 0;
}

.line-slider {
  width: 100%;
  height: var(--height);
  
  overflow: hidden;
  mask-image: linear-gradient(
      to right,
      transparent,
      #000 10% 90%,
      transparent
  );
}

.line-slider .pic-list{
  display: flex;
  width: 100%;
  min-width: calc(var(--width) * var(--quantity));
  position: relative;
  
}

.line-slider .pic-list .pic-item{
  width: var(--width);
  height: var(--height);
  position: absolute;
  background-color:#a1cbdf;
  left: 100%;
  animation: autoRun 10s linear infinite;
  transition: filter 0.5s;
  animation-delay: calc( (10s / var(--quantity)) * (var(--position) - 1) )!important;
}

.line-slider .pic-list .pic-item img{
  width: 100%;
}
@keyframes autoRun{
  from{
      left: 100%;
  }to{
      left: calc(var(--width) * -1);
  }
}

.line-slider:hover .pic-item{
  animation-play-state: paused!important;
  filter: grayscale(1);
}

.line-slider .pic-item:hover{
  filter: grayscale(0);
}

.line-slider[reverse="true"] .pic-item{
  animation: reversePlay 10s linear infinite;
}

@keyframes reversePlay{
  from{
      left: calc(var(--width) * -1);
  }to{
      left: 100%;
  }
}




section.gallery {
  margin-top: 2rem;
  
}

section.gallery .slider .slide img {
  padding: 1rem;
  width: 500px;
  height: auto;
  /* border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%; */
  object-fit: cover;
  margin-bottom: 2rem;
  
}

section.gallery .slider .slide {
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 0 4rem;
}

@media only screen and (max-width: 500px) {
  section.gallery .slider .slide {
    padding: 0 1rem;
  }
}

section.gallery .slider .slide p {
  font-family: 'Lato', sans-serif;
  color: #fff;
  margin-bottom: 2rem;
}

section.gallery .slider .slide span {
  font-size: 0.8rem;
}

section.gallery .slider-dots .dots {
  list-style-type: none;
  display: flex!important;
  justify-content: center;
}

section.gallery .slider-dots {
  margin-top: 1rem;
}

.slider-dots {
  position: relative;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

section.gallery .slider-dots button {
  font-size: 0;
  width: 10px;
  height: 10px;
  margin-right: 0.3rem;
  border: none;
  outline: none;
  background: #fff;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  cursor: pointer;
}

section.gallery .dots li.slick-active button {
  background: #6dddff;
  height: 10px;
  width: 30px;
}

.contacts {
  position: relative;
  margin-top: 50px;
  /* padding: 1rem; */
  color: #fff;
  /* text-align: center; */
  /* display: inline-block; */
  
}

#contacts {
  text-align: center;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-gap: 3rem;
  padding: 1rem;
  border-bottom: solid #6dddff 1pt;
  box-shadow: 0px -17px 17px -20px #6dddff inset;
}

#icon-contacts {
  width: 20px;
  height: 20px;
}

@media screen and (max-width: 500px) {
  #contacts {
    font-size: 10px;
  }
}

#shop-link {
  color: #fff;
}

.footer, a {
  text-align: center;
  color: #6dddff;
  padding: 1rem 0;
}

.footer {
  padding: 3rem 0 5rem 0;
}
