@font-face {
    font-family: 'Montserrat';
    src: url('Montserrat/static/Montserrat-Regular.ttf');
}
@font-face {
    font-family: 'Montserrat2';
    src: url('Montserrat/static/Montserrat-Light.ttf');
}
* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}
body {
    background: rgb(17, 17, 17);
    justify-content: center;
    font-family: "Montserrat";
}
::-webkit-scrollbar{
    display: none;
    scroll-behavior: smooth;
}
header {
    background: #000000;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    position: fixed;
    font-family: "Montserrat";
    animation: BannerComeDown 0.5s ease-in;
    z-index: 10000000000000000000000000000;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
}
header .logo {
    width: 10%;
    text-transform: uppercase;
}
header nav ul {
    display: flex;
}
header nav ul li a {
    display: inline-block;
    color: #ffffff;
    padding: 1px 0;
    margin: 0 15px;
    border: 3px solid transparent;
    text-transform: uppercase;
    transition: 0.2s;
    letter-spacing: 2px;
}
header nav ul li a:hover,
header nav ul li a.active {
    border-bottom-color: rgb(0, 179, 255);
}

.hamburger {
    display: none;
}
.hamburger div {
    width: 30px;
    height: 3px;
    margin: 5px 0;
    background: #ffffff;
}

.logoimg {
    width: 50px;
    margin-top: 3%;
}

body {
    /* Basic dimensions and centering */
    width: 100%;
    height: 100%;
  
    /* Dark mode colors and gradient */
    background: #000000; /* Fallback for browsers that don't support gradients */
    background: linear-gradient(
      135deg,
      #000000 25%,
      #040404 25%,
      #040404 50%,
      #000000 50%,
      #000000 75%,
      #040404 75%,
      #040404
    );
    background-size: 40px 40px;
  
    /* Animation */
    animation: move 4s linear infinite;
  }
  
  @keyframes move {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: 40px 40px;
    }
   }  

  .BannerImg{
    margin-top: 50px;
    width: 100vw;
    animation: BannerComeDown 0.5s ease-in;
  }

  @keyframes BannerComeDown {
    from{
        transform: translateY(-400px);
    }
    to{
        transform: translateY(0px);
    }
  }

 .blob{
    background-image: url(DynatrozIntroGif.gif);
    width: 400px;
    height: 300px;
    background-size: cover;
    background-position: center center;
    margin-right: 9%;
    margin-left: 0%;
    box-shadow: 0 5px 5px 5px rgba(0, 179, 255, 0.449);
    animation: blobAnim1 5s ease-in-out infinite;
    transition: all 1s ease-in-out;
    float: right;
    margin-bottom: 2%;
}
 .blob2{
    background-image: url(DynatrozWebsiteImg.png);
    width: 400px;
    height: 300px;
    background-size: cover;
    background-position: center center;
    margin-right: 9%;
    margin-left: 0%;
    box-shadow: 0 5px 5px 5px rgba(0, 179, 255, 0.449);
    animation: blobAnim1 5s ease-in-out infinite;
    transition: all 1s ease-in-out;
    float: right;
    margin-bottom: 2%;
}
 .blob3{
    background-image: url(DynatrozWebsiteImg.png);
    width: 400px;
    height: 300px;
    background-size: cover;
    background-position: center center;
    margin-right: 9%;
    margin-left: 0%;
    box-shadow: 0 5px 5px 5px rgba(0, 179, 255, 0.449);
    animation: blobAnim1 5s ease-in-out infinite;
    transition: all 1s ease-in-out;
    float: right;
    margin-bottom: 2%;
}

@keyframes blobAnim1 {
    0%, 100%{
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50%{
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}



@property --rotate {
    syntax: "<angle>";
    initial-value: 132deg;
    inherits: false;
  }
  
  :root {
    --card-height: 20vh;
    --card-width: 100vh;
  }
  
  
  .card {
    margin-top: 0%;
    margin-bottom: 7%;
    width: var(--card-width);
    height: var(--card-height);
    padding: 3px;
    position: relative;
    border-radius: 6px;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
    color: #191c29;
    letter-spacing: 2px;
    font-size: 100%;
    font-family: "Montserrat2";
    animation: CardAppear1 0.6s ease-in;
    z-index: -1;
  }

  @keyframes CardAppear1 {
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
  }

  .card h1{
    margin-left: 5%;
    margin-right: 5%;
  }
  
  .card::before {
    content: "";
    width: 101.15%;
    height: 105%;
    border-radius: 8px;
    background-image: linear-gradient(
      var(--rotate),
      #5ddcff,
      #3c67e3 43%,
      #4e00c2
    );
      position: absolute;
      z-index: -1;
      top: -2.3%;
      left: -0.5%;
      animation: spin 2.5s linear infinite;
  }
  
  .card::after {
    position: absolute;
    content: "";
    top: 0px;
    left: 0;
    right: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    margin: 0 auto;
    transform: scale(1);
    filter: blur(calc(var(--card-height) / 6));
    background-image: linear-gradient(
      var(--rotate),
      #93e8ff,
      #7295ff 43%,
      #9853ff
    );
      opacity: 1;
    transition: opacity .5s;
    animation: spin 2.5s linear infinite;
  }
  
  @keyframes spin {
    0% {
      --rotate: 0deg;
    }
    100% {
      --rotate: 360deg;
    }
  }

    .textLine1{
        font-family: "Montserrat";
        margin: 6% auto;
        text-align: center;
        font-size: 40px;
        max-width: 90%;
        position:relative;
        color: #ffffff;
        z-index: -1;

        -webkit-box-reflect: below 1px linear-gradient(transparent, #0004);
        line-height: 0.7em;
        outline: none;
        color: #fff;
        text-shadow: 0 0 10px #03bcf4,
        0 0 20px #03bcf4,
        0 0 40px #03bcf4,
        0 0 80px #03bcf4,
        0 0 160px #03bcf4;
    }

    .textLine1:before{
        content: "";
        display:block;
        width: 35%;
        height:2px;
        background: #ffffff;
        position: absolute;
        left: 0;
        top: 50%;
        z-index: -2;
    }
    .textLine1:after{
        content: "";
        display:block;
        width: 35%;
        height:2px;
        background: #ffffff;
        position: absolute;
        right: 0;
        top: 50%;
        z-index: -2;
    }

    .blog-slider {
        width: 95%;
        position: relative;
        max-width: 800px;
        margin: auto;
        background: linear-gradient(147deg, #aef0ff 0%, #d6b6ff 74%);
        box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
        padding: 25px;
        border-radius: 25px;
        height: 350px;
        transition: all 0.3s;
     }
      @media screen and (max-width: 992px) {
        .blog-slider {
          max-width: 680px;
          height: 400px;
       }
     }
      @media screen and (max-width: 768px) {
        .blog-slider {
          min-height: 500px;
          height: auto;
          margin: 180px auto;
       }
     }
      @media screen and (max-height: 500px) and (min-width: 992px) {
        .blog-slider {
          height: 350px;
       }
     }
      .blog-slider__item {
        display: flex;
        align-items: center;
     }
      @media screen and (max-width: 768px) {
        .blog-slider__item {
          flex-direction: column;
       }
     }
      .blog-slider__item.swiper-slide-active .blog-slider__img img {
        opacity: 1;
        transition-delay: 0.3s;
     }
      .blog-slider__item.swiper-slide-active .blog-slider__content > * {
        opacity: 1;
        transform: none;
     }
      .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(1) {
        transition-delay: 0.3s;
     }
      .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(2) {
        transition-delay: 0.4s;
     }
      .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(3) {
        transition-delay: 0.5s;
     }
      .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(4) {
        transition-delay: 0.6s;
     }
      .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(5) {
        transition-delay: 0.7s;
     }
      .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(6) {
        transition-delay: 0.8s;
     }
      .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(7) {
        transition-delay: 0.9s;
     }
      .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(8) {
        transition-delay: 1s;
     }
      .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(9) {
        transition-delay: 1.1s;
     }
      .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(10) {
        transition-delay: 1.2s;
     }
      .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(11) {
        transition-delay: 1.3s;
     }
      .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(12) {
        transition-delay: 1.4s;
     }
      .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(13) {
        transition-delay: 1.5s;
     }
      .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(14) {
        transition-delay: 1.6s;
     }
      .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(15) {
        transition-delay: 1.7s;
     }
      .blog-slider__img {
        width: 300px;
        flex-shrink: 0;
        height: 300px;
        background-image: linear-gradient(147deg, #00d1ff 0%, #6e00ff 74%);
        box-shadow: 4px 13px 30px 1px rgba(0, 0, 0, 0.2);
        border-radius: 20px;
        transform: translateX(-80px);
        overflow: hidden;
     }
      .blog-slider__img:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 20px;
        opacity: 0.8;
     }
      .blog-slider__img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        opacity: 0;
        border-radius: 20px;
        transition: all 0.3s;
     }
      @media screen and (max-width: 768px) {
        .blog-slider__img {
          transform: translateY(-50%);
          width: 90%;
       }
     }
      @media screen and (max-width: 576px) {
        .blog-slider__img {
          width: 95%;
       }
     }
      @media screen and (max-height: 500px) and (min-width: 992px) {
        .blog-slider__img {
          height: 270px;
       }
     }
      .blog-slider__content {
        padding-right: 25px;
     }
      @media screen and (max-width: 768px) {
        .blog-slider__content {
          margin-top: -80px;
          text-align: center;
          padding: 0 30px;
       }
     }
      @media screen and (max-width: 576px) {
        .blog-slider__content {
          padding: 0;
       }
     }
      .blog-slider__content > * {
        opacity: 0;
        transform: translateY(25px);
        transition: all 0.4s;
     }
      .blog-slider__code {
        color: #7b7992;
        margin-bottom: 15px;
        display: block;
        font-weight: 500;
     }
      .blog-slider__title {
        font-size: 24px;
        font-weight: 700;
        color: #0d0925;
        margin-bottom: 20px;
     }
      .blog-slider__text {
        color: #4e4a67;
        margin-bottom: 30px;
        line-height: 1.5em;
        font-size: large;
     }
      .blog-slider__button {
        display: inline-flex;
        background-image: linear-gradient(147deg, #00d1ff 0%, #6e00ff 74%);
        padding: 15px 35px;
        border-radius: 50px;
        color: #fff;
        box-shadow: 0px 14px 80px rgba(0, 0, 0, 0.4);
        text-decoration: none;
        font-weight: 500;
        justify-content: center;
        text-align: center;
        letter-spacing: 1px;
     }
      @media screen and (max-width: 576px) {
        .blog-slider__button {
          width: 100%;
       }
     }
      .blog-slider .swiper-container-horizontal > .swiper-pagination-bullets, .blog-slider .swiper-pagination-custom, .blog-slider .swiper-pagination-fraction {
        bottom: 10px;
        left: 0;
        width: 100%;
     }
      .blog-slider__pagination {
        position: absolute;
        z-index: 21;
        right: 20px;
        width: 11px !important;
        text-align: center;
        left: auto !important;
        top: 50%;
        bottom: auto !important;
        transform: translateY(-50%);
     }
      @media screen and (max-width: 768px) {
        .blog-slider__pagination {
          transform: translateX(-50%);
          left: 50% !important;
          top: 205px;
          width: 100% !important;
          display: flex;
          justify-content: center;
          align-items: center;
       }
     }
      .blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 8px 0;
     }
      @media screen and (max-width: 768px) {
        .blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
          margin: 0 5px;
       }
     }
      .blog-slider__pagination .swiper-pagination-bullet {
        width: 11px;
        height: 11px;
        display: block;
        border-radius: 10px;
        background: #062744;
        opacity: 0.2;
        transition: all 0.3s;
     }
      .blog-slider__pagination .swiper-pagination-bullet-active {
        opacity: 1;
        background: #6e00ff;
        height: 30px;
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
     }
      @media screen and (max-width: 768px) {
        .blog-slider__pagination .swiper-pagination-bullet-active {
          height: 11px;
          width: 30px;
       }
     }
     .box {
      position: relative;
      width: 450px;
      height: 300px;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: 0.5s;
      z-index: 1;
     }
     
     .box::before {
      content: ' ';
      position: absolute;
      top: 0;
      width: 50%;
      height: 100%;
      text-decoration: none;
      background: #fff;
      border-radius: 8px;
      transform: skewX(15deg);
      transition: 0.5s;
     }
     
     .box::after {
      content: '';
      position: absolute;
      top: 0;
      left: 50;
      width: 50%;
      height: 100%;
      background: #fff;
      border-radius: 8px;
      transform: skewX(15deg);
      transition: 0.5s;
      filter: blur(30px);
     }
     
     .box:hover:before,
     .box:hover:after {
      transform: skewX(0deg) scaleX(1.3);
     }
     
     .box:before,
     .box:after {
      background: linear-gradient(315deg, #ffbc00, #ff0058)
     }
     
     .box span {
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 5;
      pointer-events: none;
     }
     
     .box span::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 0;
      height: 0;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      opacity: 0;
      transition: 0.1s;
      animation: animate 2s ease-in-out infinite;
      box-shadow: 0 5px 15px rgba(0,0,0,0.08)
     }
     
     .box span::before {
      top: -40px;
      left: 40px;
      width: 50px;
      height: 50px;
      opacity: 1;
     }
     
     .box span::after {
      content: '';
      position: absolute;
      bottom: 0;
      right: 0;
      width: 100%;
      height: 100%;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      opacity: 0;
      transition: 0.5s;
      box-shadow: 0 5px 15px rgba(0,0,0,0.08);
      animation-delay: -1s;
     }
     
     .box span:after {
      bottom: -40px;
      right: 40px;
      width: 50px;
      height: 50px;
      opacity: 1;
     }
     
     .box .content {
      position: relative;
      width: 2000px;
      height: 250px;
      padding: 20px 20px;
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      border-radius: 8px;
      z-index: 1;
      transform: 0.5s;
      color: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
     }
     
     .box .content h2 {
      color: #fff;
      margin-bottom: 10px;
      letter-spacing: 1.3px;
      line-height: 25px;
      font-size: 18px;
     }

    .terminal-loader {
      border: 0.1em solid #333;
      background-color: #1a1a1a;
      color: #0f0;
      font-family: "Courier New", Courier, monospace;
      font-size: 1em;
      padding: 1.5em 1em;
      width: 80vw;
      margin: 50px auto;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      border-radius: 4px;
      position: relative;
      overflow: hidden;
      box-sizing: border-box;
      height: 275px;
    }
    
    .terminal-header {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1.5em;
      background-color: #333;
      border-top-left-radius: 4px;
      border-top-right-radius: 4px;
      padding: 0 0.4em;
      box-sizing: border-box;
    }
    
    .terminal-controls {
      float: right;
    }
    
    .control {
      display: inline-block;
      width: 0.6em;
      height: 0.6em;
      margin-left: 0.4em;
      border-radius: 50%;
      background-color: #777;
    }
    
    .control.close {
      background-color: #e33;
    }
    
    .control.minimize {
      background-color: #ee0;
    }
    
    .control.maximize {
      background-color: #0b0;
    }
    
    .terminal-title {
      float: left;
      line-height: 1.5em;
      color: #eee;
    }
    
    .text {
      display: inline-block;
      white-space: nowrap;
      overflow: hidden;
      margin-top: 1em;
    }

    .Type1 {
      position: relative;
      overflow: hidden;
      border-right: 3px solid;
      width: 0px;
      animation: typewriter 2s steps(10)  infinite alternate , blink 0.5s steps(10) infinite;
    }
    
    .Type1-text {
      font-size: 400%;
      font-weight: 700;
      background: linear-gradient(to right,#00d1ff, #6e00ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      letter-spacing: 3px;
    }
    
    @keyframes typewriter {
      0% {
        width: 0px;
      }
    
      100% {
        width: 400px;
      }
    }
    
    @keyframes blink {
      0% {
        border-right-color: rgba(255,255,255,.75);
        ;
      }
    
      100% {
        border-right-color: transparent;
      }
    }
    .txt1{
      color: white;
    }
    .cardd {
      position: relative;
      width: 300px;
      height: 93px;
      background-color: #000;
      display: flex;
      flex-direction: column;
      justify-content: end;
      padding: 12px;
      gap: 12px;
      border-radius: 8px;
      cursor: pointer;
      line-height: 20px;
      letter-spacing: 1.5px;
      margin-top: 5%;
      color: white;
    }
    
    .cardd::before {
      content: '';
      position: absolute;
      inset: 0;
      left: -5px;
      margin: auto;
      width: 310px;
      height: 100px;
      border-radius: 10px;
      background: linear-gradient(-45deg, #e81cff 0%, #40c9ff 100% );
      z-index: -10;
      pointer-events: none;
      transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    
    .cardd::after {
      content: "";
      z-index: -1;
      position: absolute;
      inset: 0;
      background: linear-gradient(-45deg, #fc00ff 0%, #00dbde 100% );
      transform: translate3d(0, 0, 0) scale(0.95);
      filter: blur(20px);
    }
    
    .cardd p:not(.heading) {
      font-size: 14px;
      color: #fff;
    }
    
    .cardd p:last-child {
      color: #e81cff;
      font-weight: 600;
    }
    
    .cardd:hover::after {
      filter: blur(50px);
    }
    
    .cardd:hover::before {
      transform: rotate(180deg);
    }
    
.container2 {
  position: relative;
  width: 70%;
  height: 200px;
  transition: 200ms;
  margin-top: 4%;
}

#card2 {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  transition: 700ms;
  background: linear-gradient(147deg, #00d1ff 0%, #6e00ff 74%);
}

.subtitle {
  transform: translateY(160px);
  color: rgb(134, 110, 221);
  text-align: center;
  width: 100%;
}

.title2 {
  opacity: 1;
  transition-duration: 300ms;
  transition-timing-function: ease-in-out-out;
  transition-delay: 100ms;
  position: absolute;
  font-weight: bold;
  color: white;
  margin-left: 8%;
  margin-right: 8%;
  font-size: 110%;
  letter-spacing: 1.2px;
  line-height: 25px;
}

#prompt {
  bottom: 8px;
  left: 12px;
  z-index: 20;
  font-size: 20px;
  font-weight: bold;
  transition: 300ms ease-in-out-out;
  position: absolute;
  max-width: 110px;
  color: rgb(255, 255, 255);
}

.tracker {
  position: absolute;
  z-index: 200;
  width: 100%;
  height: 100%;
}

.tracker:hover {
  cursor: pointer;
}

.tracker:hover ~ #card2 #prompt {
  opacity: 0;
}

.tracker:hover ~ #card2 {
  transition: 300ms;
  filter: brightness(1.1);
}

.container22:hover #card2::before {
  transition: 200ms;
  content: '';
  opacity: 80%;
}

.canvas {
  perspective: 800px;
  inset: 0;
  z-index: 200;
  position: absolute;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
  gap: 0px 0px;
  grid-template-areas: "tr-1 tr-2 tr-3 tr-4 tr-5"
    "tr-6 tr-7 tr-8 tr-9 tr-10"
    "tr-11 tr-12 tr-13 tr-14 tr-15"
    "tr-16 tr-17 tr-18 tr-19 tr-20"
    "tr-21 tr-22 tr-23 tr-24 tr-25";
}


.tr-1 {
  grid-area: tr-1;
}

.tr-2 {
  grid-area: tr-2;
}

.tr-3 {
  grid-area: tr-3;
}

.tr-4 {
  grid-area: tr-4;
}

.tr-5 {
  grid-area: tr-5;
}

.tr-6 {
  grid-area: tr-6;
}

.tr-7 {
  grid-area: tr-7;
}

.tr-8 {
  grid-area: tr-8;
}

.tr-9 {
  grid-area: tr-9;
}

.tr-10 {
  grid-area: tr-10;
}

.tr-11 {
  grid-area: tr-11;
}

.tr-12 {
  grid-area: tr-12;
}

.tr-13 {
  grid-area: tr-13;
}

.tr-14 {
  grid-area: tr-14;
}

.tr-15 {
  grid-area: tr-15;
}

.tr-16 {
  grid-area: tr-16;
}

.tr-17 {
  grid-area: tr-17;
}

.tr-18 {
  grid-area: tr-18;
}

.tr-19 {
  grid-area: tr-19;
}

.tr-20 {
  grid-area: tr-20;
}

.tr-21 {
  grid-area: tr-21;
}

.tr-22 {
  grid-area: tr-22;
}

.tr-23 {
  grid-area: tr-23;
}

.tr-24 {
  grid-area: tr-24;
}

.tr-25 {
  grid-area: tr-25;
}

.tr-1:hover ~ #card2 {
  transition: 125ms ease-in-out;
  transform: rotateX(20deg) rotateY(-10deg) rotateZ(0deg);
}

.tr-2:hover ~ #card2 {
  transition: 125ms ease-in-out;
  transform: rotateX(20deg) rotateY(-5deg) rotateZ(0deg);
}

.tr-3:hover ~ #card2 {
  transition: 125ms ease-in-out;
  transform: rotateX(20deg) rotateY(0deg) rotateZ(0deg);
}

.tr-4:hover ~ #card2 {
  transition: 125ms ease-in-out;
  transform: rotateX(20deg) rotateY(5deg) rotateZ(0deg);
}

.tr-5:hover ~ #card2 {
  transition: 125ms ease-in-out;
  transform: rotateX(20deg) rotateY(10deg) rotateZ(0deg);
}

.tr-6:hover ~ #card2 {
  transition: 125ms ease-in-out;
  transform: rotateX(10deg) rotateY(-10deg) rotateZ(0deg);
}

.tr-7:hover ~ #card2 {
  transition: 125ms ease-in-out;
  transform: rotateX(10deg) rotateY(-5deg) rotateZ(0deg);
}

.tr-8:hover ~ #card2 {
  transition: 125ms ease-in-out;
  transform: rotateX(10deg) rotateY(0deg) rotateZ(0deg);
}

.tr-9:hover ~ #card2 {
  transition: 125ms ease-in-out;
  transform: rotateX(10deg) rotateY(5deg) rotateZ(0deg);
}

.tr-10:hover ~ #card2 {
  transition: 125ms ease-in-out;
  transform: rotateX(10deg) rotateY(10deg) rotateZ(0deg);
}

.tr-11:hover ~ #card2 {
  transition: 125ms ease-in-out;
  transform: rotateX(0deg) rotateY(-10deg) rotateZ(0deg);
}

.tr-12:hover ~ #card2 {
  transition: 125ms ease-in-out;
  transform: rotateX(0deg) rotateY(-5deg) rotateZ(0deg);
}

.tr-13:hover ~ #card2 {
  transition: 125ms ease-in-out;
  transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
}

.tr-14:hover ~ #card2 {
  transition: 125ms ease-in-out;
  transform: rotateX(0deg) rotateY(5deg) rotateZ(0deg);
}

.tr-15:hover ~ #card2 {
  transition: 125ms ease-in-out;
  transform: rotateX(0deg) rotateY(10deg) rotateZ(0deg);
}

.tr-16:hover ~ #card2 {
  transition: 125ms ease-in-out;
  transform: rotateX(-10deg) rotateY(-10deg) rotateZ(0deg);
}

.tr-17:hover ~ #card2 {
  transition: 125ms ease-in-out;
  transform: rotateX(-10deg) rotateY(-5deg) rotateZ(0deg);
}

.tr-18:hover ~ #card2 {
  transition: 125ms ease-in-out;
  transform: rotateX(-10deg) rotateY(0deg) rotateZ(0deg);
}

.tr-19:hover ~ #card2 {
  transition: 125ms ease-in-out;
  transform: rotateX(-10deg) rotateY(5deg) rotateZ(0deg);
}

.tr-20:hover ~ #card2 {
  transition: 125ms ease-in-out;
  transform: rotateX(-10deg) rotateY(10deg) rotateZ(0deg);
}

.tr-21:hover ~ #card2 {
  transition: 125ms ease-in-out;
  transform: rotateX(-20deg) rotateY(-10deg) rotateZ(0deg);
}

.tr-22:hover ~ #card2 {
  transition: 125ms ease-in-out;
  transform: rotateX(-20deg) rotateY(-5deg) rotateZ(0deg);
}

.tr-23:hover ~ #card2 {
  transition: 125ms ease-in-out;
  transform: rotateX(-20deg) rotateY(0deg) rotateZ(0deg);
}

.tr-24:hover ~ #card2 {
  transition: 125ms ease-in-out;
  transform: rotateX(-20deg) rotateY(5deg) rotateZ(0deg);
}

.tr-25:hover ~ #card2 {
  transition: 125ms ease-in-out;
  transform: rotateX(-20deg) rotateY(10deg) rotateZ(0deg);
}

.noselect {
  -webkit-touch-callout: none;
   /* iOS Safari */
  -webkit-user-select: none;
   /* Safari */
   /* 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 */
}

.scroller {
  max-width: 80%;
  margin-top: 2%;
}

.scroller__inner {
  padding-block: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.scroller[data-animated="true"] {
  overflow: hidden;
  -webkit-mask: linear-gradient(
    90deg,
    transparent,
    white 20%,
    white 80%,
    transparent
  );
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller[data-animated="true"] .scroller__inner {
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 40s)
    var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="right"] {
  --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
  --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
  --_animation-duration: 20s;
}

.scroller[data-speed="slow"] {
  --_animation-duration: 60s;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}

/* general styles */

:root {
  --clr-neutral-100: hsl(0, 0%, 100%);
  --clr-primary-100: hsl(205, 15%, 58%);
  --clr-primary-400: hsl(0, 0%, 100%);
  --clr-primary-800: hsl(217, 33%, 17%);
  --clr-primary-900: hsl(218, 33%, 9%);
}

.tag-list {
  margin: 0;
  padding-inline: 0;
  list-style: none;
}

.tag-list li {
  padding: 1rem;
  background: var(--clr-primary-400);
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem -0.25rem var(--clr-primary-900);
}
footer{
  position: relative;
  width: 100%;
  background: #3586ff;
  min-height: 100px;
  padding: 20px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 12%;
}
.social_icon, .menu{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  flex-wrap: wrap;
}
f.social_icon li, .menu li{
  list-style: none;
}
.social_icon li a{
  font-size: 2em;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
}
.social_icon li a:hover{
  transform: translateY(-10px);
}
footer .menu li a{
  font-size: 1.2em;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  text-decoration: none;
  opacity: 0.75;
}
footer .menu li a:hover{
  opacity: 1;
}
footer p{
  color: #fff;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 1.1em;
}
footer .wave{
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url(WaveFooter.png);
  background-size: 1000px 100px;
}
footer .wave#wave1{
  z-index: 1000;
  opacity: 1;
  bottom: 0;
  animation: animateWave 4s linear infinite;
}
@keyframes animateWave{
  0%{
    background-position-x: 1000px;
  }
  100%{
    background-position-x: 0px;
  }
}
footer .wave#wave2{
  z-index: 999;
  opacity: 0.5;
  bottom: 10px;
  animation: animateWave2 4s linear infinite;
}
@keyframes animateWave2{
  0%{
    background-position-x: 0px;
  }
  100%{
    background-position-x: 1000px;
  }
}
footer .wave#wave3{
  z-index: 998;
  opacity: 0.2;
  bottom: 15px;
  animation: animateWave3 3s linear infinite;
}
@keyframes animateWave3{
  0%{
    background-position-x: 1000px;
  }
  100%{
    background-position-x: 0px;
  }
}
footer .wave#wave4{
  z-index: 997;
  opacity: 0.7;
  bottom: 20px;
  animation: animateWave3 3s linear infinite;
}
@keyframes animateWave4{
  0%{
    background-position-x: 1000px;
  }
  100%{
    background-position-x: 0px;
  }
}

.notification {
  margin-top: 7%;
  margin-bottom: 10%;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  position: relative;
  width: 80%;
  height: 4.5rem;
  background: #29292c;
  border-radius: 1rem;
  overflow: hidden;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 16px;
  --gradient: linear-gradient(to bottom, #2eadff, #3d83ff, #7e61ff);
  --color: #32a6ff
}

.notification:before {
  position: absolute;
  content: "";
  inset: 0.0625rem;
  border-radius: 0.9375rem;
  background: #18181b;
  z-index: 2
}

.notification:after {
  position: absolute;
  content: "";
  width: 0.25rem;
  inset: 0.65rem auto 0.65rem 0.5rem;
  border-radius: 0.125rem;
  background: var(--gradient);
  transition: transform 300ms ease;
  z-index: 4;
}

.notification:hover:after {
  transform: translateX(0.15rem)
}

.notititle {
  color: var(--color);
  padding: 0.65rem 0.25rem 0.4rem 1.25rem;
  font-weight: 500;
  font-size: 1.1rem;
  transition: transform 300ms ease;
  z-index: 5;
}

.notification:hover .notititle {
  transform: translateX(0.15rem)
}

.notibody {
  color: #99999d;
  padding: 0 1.25rem;
  transition: transform 300ms ease;
  z-index: 5;
}

.notification:hover .notibody {
  transform: translateX(0.25rem)
}

.notiglow,
.notiborderglow {
  position: absolute;
  width: 20rem;
  height: 20rem;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle closest-side at center, white, transparent);
  opacity: 0;
  transition: opacity 300ms ease;
}

.notiglow {
  z-index: 3;
}

.notiborderglow {
  z-index: 1;
}

.notification:hover .notiglow {
  opacity: 0.1
}

.notification:hover .notiborderglow {
  opacity: 0.1
}

.note {
  color: var(--color);
  position: fixed;
  top: 80%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 0.9rem;
  width: 75%;
}
.cardd1 {
  position: relative;
  width: 80%;
  color: white;
  height: 260px;
  background: #1a1a1a;
  border-radius: 14px;
}

.bg {
  position: absolute;
  z-index: -1;
  inset: -4px;
  border-radius: 16px;
  overflow: hidden;
}

.uwu {
  filter: blur(8px);
  transition: filter 0.3s;
}

.bg::before {
  content: '';
  position: absolute;
  aspect-ratio: 1/1;
  top: 50%;
  left: 50%;
  min-width: 150%;
  min-height: 150%;
  background-image: conic-gradient(
    hsl(0, 100%, 50%),
    hsl(30, 100%, 50%),
    hsl(60, 100%, 50%),
    hsl(90, 100%, 50%),
    hsl(120, 100%, 50%),
    hsl(150, 100%, 50%),
    hsl(180, 100%, 50%),
    hsl(210, 100%, 50%),
    hsl(240, 100%, 60%),
    hsl(270, 100%, 50%),
    hsl(300, 100%, 50%),
    hsl(330, 100%, 50%),
    hsl(360, 100%, 50%)
  );
  animation: speeen 4s linear infinite;
  transform-origin: 0% 0%;
  transform: rotate(0deg) translate(-50%, -50%);
}

@keyframes speeen {
  from {
    transform: rotate(0deg) translate(-50%, -50%);
  }

  to {
    transform: rotate(360deg) translate(-50%, -50%);
  }
}

.contenttt {
  position: relative;
  padding: 14px 16px;
}
.contenttt div {
  text-align: center;
}

.h11 {
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 1em;
  margin-right: 1em;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 1.2px;
}
.page {
  position: relative;
  box-sizing: border-box;
  max-width: 90%;
  font-family: cursive;
  font-size: 20px;
  border-radius: 10px;
  background: #fff;
  background-image: linear-gradient(#f5f5f0 1.1rem, #ccc 1.2rem);
  background-size: 100% 1.2rem;
  line-height: 1.4em;
  padding: 1.4rem 0.5rem 0.3rem 4.5rem;
  margin-top: 4%;
}

.page::before,
.page::after {
  position: absolute;
  content: "";
  bottom: 10px;
  width: 40%;
  height: 10px;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.7);
  z-index: -1;
  transition: all 0.3s ease;
}

.page::before {
  left: 15px;
  transform: skew(-5deg) rotate(-5deg);
}

.page::after {
  right: 15px;
  transform: skew(5deg) rotate(5deg);
}

.page:hover::before,
.page:hover::after {
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}

.margin {
  position: absolute;
  border-left: 1px solid #d88;
  height: 100%;
  left: 3.3rem;
  top: 0;
}

.page p {
  margin: 0;
  text-indent: 1rem;
  padding-bottom: 1.2rem;
  color: black;
  line-height: 23px;
}
.profilee {
  width: 250px;
  height: 280px;
  background: rgb(39, 39, 39);
  border-radius: 12px;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.123);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition-duration: .5s;
  margin-top: 4%;
  margin-bottom: 5%;
}

.profileImage {
  background: linear-gradient(to right,rgb(54, 54, 54),rgb(32, 32, 32));
  margin-top: 20px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.329);
}

.textContainer {
  width: 100%;
  text-align: left;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.name {
  font-size: 0.9em;
  font-weight: 600;
  color: white;
  letter-spacing: 0.5px;
}

.profile {
  font-size: 0.84em;
  color: rgb(194, 194, 194);
  letter-spacing: 0.2px;
}

.card:hover {
  background-color: rgb(43, 43, 43);
  transition-duration: .5s;
}
.btn-conteiner {
  display: flex;
  justify-content: center;
  --color-text: #ffffff;
  --color-background: #6e00ff;
  --color-shadow: #00000080;
  margin-top: 4%;
}

.btn-content {
  display: flex;
  align-items: center;
  padding: 5px 30px;
  text-decoration: none;
  font-size: 30px;
  color: var(--color-text);
  background: var(--color-background);
  transition: 1s;
  border-radius: 100px;
  box-shadow: 0 0 0.2em 0 var(--color-background);
}

.btn-content:hover, .btn-content:focus {
  transition: 0.5s;
  -webkit-animation: btn-content 1s;
  animation: btn-content 1s;
  outline: 0.1em solid transparent;
  outline-offset: 0.2em;
  box-shadow: 0 0 0.4em 0 var(--color-background);
}

.btn-content .icon-arrow {
  transition: 0.5s;
  margin-right: 0px;
  transform: scale(0.6);
}

.btn-content:hover .icon-arrow {
  transition: 0.5s;
  margin-right: 25px;
}

.icon-arrow {
  width: 20px;
  margin-left: 15px;
  position: relative;
  top: 6%;
}
  
/* SVG */
#arrow-icon-one {
  transition: 0.4s;
  transform: translateX(-60%);
}

#arrow-icon-two {
  transition: 0.5s;
  transform: translateX(-30%);
}

.btn-content:hover #arrow-icon-three {
  animation: color_anim 1s infinite 0.2s;
}

.btn-content:hover #arrow-icon-one {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.6s;
}

.btn-content:hover #arrow-icon-two {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.4s;
}

/* SVG animations */
@keyframes color_anim {
  0% {
    fill: white;
  }

  50% {
    fill: var(--color-background);
  }

  100% {
    fill: white;
  }
}

/* Button animations */
@-webkit-keyframes btn-content {
  0% {
    outline: 0.2em solid var(--color-background);
    outline-offset: 0;
  }
}

@keyframes btn-content {
  0% {
    outline: 0.2em solid var(--color-background);
    outline-offset: 0;
  }
}
.form {
  display: flex;
  flex-direction: column;
  align-self: center;
  font-family: inherit;
  gap: 10px;
  padding-inline: 2em;
  padding-bottom: 0.4em;
  background-color: #171717;
  border-radius: 20px;
}

.form-heading {
  text-align: center;
  margin: 2em;
  color: #00d1ff;
  font-size: 1.2em;
  background-color: transparent;
  align-self: center;
}

.form-field {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  border-radius: 10px;
  padding: 0.6em;
  border: none;
  outline: none;
  color: white;
  background-color: #171717;
  box-shadow: inset 2px 5px 10px rgb(5, 5, 5);
}

.input-field {
  background: none;
  border: none;
  outline: none;
  width: 100%;
  color: #ccd6f6;
  padding-inline: 1em;
}

.sendMessage-btn {
  cursor: pointer;
  margin-bottom: 3em;
  padding: 1em;
  border-radius: 10px;
  border: none;
  outline: none;
  background-color: transparent;
  color: #00d1ff;
  font-weight: bold;
  outline: 1px solid #00d1ff;
  transition: all ease-in-out 0.3s;
}

.sendMessage-btn:hover {
  transition: all ease-in-out 0.3s;
  background-color: #00d1ff;
  color: #000;
  cursor: pointer;
  box-shadow: inset 2px 5px 10px rgb(5, 5, 5);
}

.form-card1 {
  background-image: linear-gradient(147deg, #00d1ff 0%, #6e00ff 74%);
  border-radius: 22px;
  transition: all 0.3s;
}

.form-card1:hover {
  box-shadow: 0px 0px 30px 1px rgba(100, 255, 218, 0.3);
}

.form-card2 {
  border-radius: 0;
  transition: all 0.2s;
}

.form-card2:hover {
  transform: scale(0.98);
  border-radius: 20px;
}









    
    
    
    
    
    
    
    
    
    
    

      
    


  








































 @media only screen and (max-width: 900px) {
    header {
        padding: 0 30px;
        z-index: 10000000000000000000000000000000000;
    }

    header nav{
        z-index: 10000000000000000000000000000;
    }

}
@media only screen and (max-width: 700px) {

  .container2{
    width: 90%;
    height: 310px;
    transition: 200ms;
    margin-top: 10%;
  }
  .title2{
    font-size: 90%;
    letter-spacing: 1px;
    line-height: 20px;
  }
    header{
      z-index: 10000000000000000000000000000;
      background: rgb(0, 0, 0);
    }
    .hamburger {
        display: block;
    }
    header nav {
        position: absolute;
        width: 100%;
        left: -100%;
        top: 69px;
        width: 100%;
        background: #000000;
        padding: 30px;
        transition: 0.3s;
        background: rgba(0, 0, 0, 0.837);
        z-index: 10000000000000000000000000000;
    }
    header #nav_check:checked ~ nav {
        left: 0;
        z-index: 10000000000000000000000000000;
    }
    header nav ul {
        display: block;
        z-index: 10000000000000000000000000000;
    }
    header nav ul li a {
        margin: 10px 0;
        z-index: 10000000000000000000000000000;
    }
    .blob{
        margin-left: 10%;
        float: none;
        margin-bottom: 7%;
        width: 80vw;
        margin-top: 10%;
        height: 220px;
    }
    .card{
        width: 60vw;
        height: 100px;
        font-size: 50%;
    }
    .box{
        width: 80%;
        margin-top: 15%;
        margin-bottom: 15%;
    }
    .BannerImg{
        margin-top: 70px;
    }
    .textLine1{
        font-size: 100%;
    }

    .box .content h2{
      letter-spacing: 1.3px;
      line-height: 20px;
      font-size: 12px;
    }
    footer{
      margin-top: 30%;
    }
    .notification{
      height: 6.8rem;
      margin-bottom: 35%;
    }
    .h11{
      font-size: 80%;
    }
    .page{
      margin-top: 10%;
    }
    .profilee{
      margin-top: 10%;
      margin-bottom: 35%;
    }
    .btn-conteiner{
      margin-top: 12%;
      margin-bottom: 10%;
    }
    
}
