/* Copyright (c) 2025 by Den (https://codepen.io/DedaloD/pen/QwWYedd) */

@import url("https://fonts.cdnfonts.com/css/devil-breeze");
@import url("https://fonts.cdnfonts.com/css/poppins");
@import url("https://fonts.cdnfonts.com/css/bimbo");
@import url("https://chiase.online/index_files/font.css");

body {
  margin: 0;
  font-family: "Montserrat",Vintage,SFURhythm,Schoolbook,Sanelma, sans-serif;
  background-color: #1b1b1b;
  color: #eef8ce;
  font-family: "Poppins", sans-serif;
  font-family: "Vintage", sans-serif;
  font-size: 14px;
  background-image: url(./index_files/bg.avif),
    repeating-linear-gradient(
      to right,
      transparent 0 500px,
      #73814b33 500px 501px
    );
  background-size: 100%;
}
*::-webkit-scrollbar {
  width: 0;
}

* {
  padding: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
}
.section {
    width: 100%;
    min-height: 60vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-fit {
  width: min(1200px, 90vw);
  margin: auto;
min-height: 65vh;
  position: relative;
  padding-block: 10em;
}
.section .content .title {
    font-family: "devil breeze";
    font-size: 28px;
    font-weight: bold;
}
header {
padding-top: 7px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10px;
    backdrop-filter: blur(10px);
    z-index: 100;
    background-color: #1b1b1b21;
    background-image: repeating-linear-gradient(to right, transparent 0 500px, #eee1 500px 501px);
  );
}
img.is-white-logo.img-responsive.big-logo {
    filter: contrast(0) brightness(153%);
    height: 50px;
}
header .content-fit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: unset !important;
  padding-block: unset !important;
}
header .content-fit nav ul {
  display: flex;
  gap: 2em;
  font-size: 7px;
}

#banner .title {
  color: #d1ff48;
  font-size: 11em;
  font-family: "devil breeze";
  font-weight: bold;
  position: relative;
  overflow: visible;
  text-align: center;
}
#banner .title::before {
  content: attr(data-before);
  position: absolute;
  z-index: -1;
  color: oklch(0.78 0.17 80.01 / 0.19);
  mask: linear-gradient(
    to bottom,
    #000 -80%,
    oklch(0 0 0/0),
    #000,
    oklch(0 0 0/0) 200%
  );
  transform: scaleY(-1) translateY(-0.44lh);
}
.section .content-fit .title1 {
    font-family: "Vintage";
    font-size: 28px;
    font-weight: bold;
    color: #b53232;
    text-align: center;
}
.section .decorate {
  position: fixed;
  z-index: -100;
  pointer-events: none;
}
#intro .content-fit {
  display: flex;
  gap: 30%;
  justify-content: space-between;
  align-items: center;
}
.section .number {
  font-family: "devil breeze";
  font-size: 8em;
  font-weight: bold;
}
.section .content-fit .title {
  font-family: "Vintage";
  font-size: 28px;
  font-weight: bold;
}
#description .content-fit {
  padding-right: 30%;
}
#description .number {
  font-size: 8em;
}
#description .title {
  font-size: 28px;
  font-weight: 500;
}
#contact .content-fit {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
#contact table {
    width: min(410px, 90vw);
    padding-top: 2em;
    font-size: 24px;
    margin: auto;
    font-family: Schoolbook;
    color: #c7c6c6;
}
#contact table td {
  padding-block: 0.5em;
  border-bottom: 1px dashed #445022;
}
#contact table td:nth-child(1) {
  text-align: left;
  font-weight: 500;
}
#contact table td:nth-child(2) {
  text-align: right;
  font-weight: 200;
}
#contact .sign {
    font-size: 3em;
    margin-top: 80px;
    font-family: 'Devil Breeze';
}
#container3D {
  position: fixed;
  inset: 0;
  /* background-color: red; */
  z-index: 100;
  pointer-events: none;
}
@media screen and (max-width: 1023px) {
  #banner .title {
    font-size: 5em;
  }
  #intro .content-fit {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  #banner .title {
    font-size: 3em;
  }
  #intro .content-fit {
    flex-direction: column;
  }


  #description .content-fit {
    padding-right: 0;
  }
  #contact table {
    font-size: 1em;
  }
  #contact .sign {
    font-size: 2em;
  }
  #container3D {
    position: sticky;
  }
}


        .box {
padding: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: #001e2d;
    box-sizing: border-box;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
    border: 2px solid rgba(0, 0, 0, .5);
        }

        .box:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, .1);
            transition: 0.5s;
            pointer-events: none;
        }

        .box:hover:before {
            left: -50%;
            transform: skewX(-5deg)
        }

        .box .content {
            position: absolute;
            top: 15px;
            left: 15px;
            right: 15px;
            bottom: 15px;
            border: 2px solid #ffeb3b;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 10px rgba(0, 0, 0, .5);
        }

        .box .content h1 {
            color: #fff;
            font-size: 30px;
            margin: 0 0 10px;
            padding: 0;
        }

        .box .content p {
            color: #fff;
            
        }
        .box span{
           position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: block;
            box-sizing: border-box;
        }
        .box span:nth-child(1){
            transform: rotate(0deg);
        }
        .box span:nth-child(2){
            transform: rotate(90deg);
        }
        .box span:nth-child(3){
            transform: rotate(180deg);
        }
        .box span:nth-child(4){
            transform: rotate(270deg);
        }
        .box span:nth-child(2):before{
            animation-delay: -2s;
        }
         .box span:nth-child(4):before{
            animation-delay: -2s;
        }
        .box span:before{
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            background: #0093ff;
            animation: animate 4s linear infinite;
        }
        @keyframes animate{
            0%{
                transform: scaleX(0);
                transform-origin: left;
            }
            50%{
                transform: scaleX(1);
                transform-origin: left;
            }
            50.1%{
                transform: scaleX(1);
                transform-origin: right;
            }
            100%{
                transform: scaleX(0);
                transform-origin: right;
            }
        }
.created a{ color: #fff;
  position: absoulute;
  top: 50px;
  left: 50px;
  text-decoration: none; 
  font-size: 60px; 
}

div#contact {
    margin-bottom: 15em;
}

p.contentmin {
    font-size: 30px;
    font-style: normal;
    font-synthesis-small-caps: initial;
        color: #28edd4;
    overflow: visible;
    text-shadow: -2px 2px 3px #1a1a1aed;
    font-family: Sanelma;
}