
:root
{
    --white : white;
    --black : rgb(0, 0, 0);
    --backblack : rgb(0, 0, 0);
    --tomato : rgb(255, 99, 71);
    --blue1 : #00aaff;
    --blue2 : #00e9fb;
    --purble1 : #ab76de;
    --purple2 :  #d56dbf;
    --pink1 : #e16bae;
    --white-transparent : rgba(255, 255, 255, 0.177);
    --gray : rgb(128, 128, 128);
}


*
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Audiowide', sans-serif;
}


::-webkit-scrollbar 
{
    width: 0px;  
}
::-webkit-scrollbar-track 
{
    background: var(--white-transparent);
}
::-webkit-scrollbar-thumb
{
    width: 5px;
    background-color:  var(--tomato);
}




.counter
{
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    z-index: 10000;
    color:tomato;
    font-size: 20vw;
}

        .over-loder
        {
            position: fixed;
            width: 100vw;
            height: 100vh;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .bar
        {
            position: relative;
            width: 100%;
            height: 100%;
            background-color: #1a1a1a;
            z-index: 1200;
            border: 20px;
        }
    
        .loader
        {
            position: fixed;
            text-align: start;
            height: 70px;
            background-color: whitesmoke;
            z-index: 2000;
        }



        
.loaderContainer 
{
    position: fixed;
    width: 100vw;
    height: 100vh;
    background:rgba(255, 255, 255, 0.266);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1500;
    backdrop-filter: blur(50px);
}

.Code-container {
    display: flex;
    gap: 10px;
    width: 330px;
    height: auto;
    overflow: hidden;
    align-items: start;
    justify-content: start;
    flex-direction: column;
}

.Code-container .rows {
    width: 0;
    overflow: hidden;
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 5px;

    animation: animate steps(4) forwards;
}

.Code-container .rows div {
    border-radius: 10px;
    height: 10px;
}

.min {
    width: 10px;
}

.half {
    width: 40px;
}

.full {
    width: 70px;
}

.orange {
    background-color: orange;
}

.green {
    background-color: greenyellow;
}

.darkblue {
    background-color: rgb(19, 117, 174);
}

.yellow {
    background-color: rgb(214, 214, 0);
}

.white {
    background-color: rgba(89, 22, 22, 0.874);
}

.Code-container .rows:nth-child(1) {
    animation-delay: 0.4s;
}
.Code-container .rows:nth-child(2) {
    animation-delay: 0.5s;
}
.Code-container .rows:nth-child(3) {
    animation-delay: 0.6s;
}
.Code-container .rows:nth-child(4) {
    animation-delay: 0.8s;
}
.Code-container .rows:nth-child(5) {
    animation-delay: 1s;
}
.Code-container .rows:nth-child(6) {
    animation-delay: 1.2s;
}

@keyframes animate {
    from {
        width: 0px;
    }
    to {
        width: 340px;
    }
}


@media (max-width:380px) 
{

    .Code-container {
        width: 250px;
    }
    
    .min {
        width: 10px;
    }
    
    .half {
        width: 25px;
    }
    
    .full {
        width: 45px;
    }
    
    
}




header
{
    z-index: 999;
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 100px;
    transition: 0.3s ease;
    color: var(--tomato);
}

.nav
{
    z-index: 999;
    position: absolute;
    width: 70%;
    top: 50%;
    left: 50%;
    background-color: var(--white-transparent);
    background: rgba(255, 255, 255, 0.23);
    border-radius: 5px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(9.6px);
    -webkit-backdrop-filter: blur(9.6px);
    transform: translate(-50%,-500%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 100px;
    transition: 0.3s ease;
    color: var(--tomato);
}


header .hedcr
{
    text-decoration: none;
    color: var(--text--main-color);
    font-size: 1.3em;
    font-weight: 700;
    text-transform: uppercase;
}

header .navigator
{
    position: relative;
}

header .navigator .items a
{
    position: relative;
    font-weight: 500;
    font-size: 1em;
    color: var(--backblack);
    text-decoration: none;
    margin-left: 30px;
    transition: 0.3s ease;
}

header .navigator .items button
{
    border: none;
    width: 40px;
    background-color: transparent;
    font-size: 15px;
    font-weight:800;
}

header .navigator .items button i
{
    color:var(--backblack);
}


header .navigator .items a::before
{
    content: '';
    position: absolute;
    width: 0;
    height:2px;
    background-color:var(--black);
    bottom: -2px;
    left: 0;
    transition: 0.4s ease;
}


header .navigator .items a:hover:before
{
    width: 100%;
}

.nav-but
{
    display: none;
}


.first-section
{
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    overflow: hidden;
}



.borders-design
{
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 30% 70% 66% 34% / 30% 33% 67% 70% ;
    background: linear-gradient(to right bottom, #e16bae, #d56dbf, #c371cf, #ab76de, #8c7deb, #6d8ef7, #469dfe, #00aaff, #00c1ff, #00d6ff, #00e9fb, #5ffbf1);
    box-shadow: inset 10px 17px 41px -4px rgba(0,0,0,0.4);
    animation-name: role;
    animation-duration: 10s;
    animation-iteration-count: infinite;
}


@keyframes role 
{
    0%
    {
        transform: translate(50px, 100px);
        
    }

    50%
    {
        transform: translate(10px, 30px);
    }

    100%
    {
        transform: translate(50px,100px);
    }
    
}

@keyframes role1
{
    0%
    {
        transform: translate(50px, 100px);
        rotate: 0deg;
        
    }

    50%
    {
        transform: translate(10px, 30px);
        rotate: 180deg;
    }

    100%
    {
        transform: translate(50px,100px);
        rotate: 0deg;
    }
    
}



.borders-design:nth-child(1)
{
    width: 100px;
    height: 100px;
    top: 100px;
    right: 100px;
    animation-duration: 10s;
}
.borders-design:nth-child(2)
{
    width: 150px;
    height: 150px;
    animation-duration: 20s;
    animation-name: role1;
}
.borders-design:nth-child(3)
{
    width: 200px;
    height: 200px;
    bottom: 100px;
    animation-duration: 15s;
}

.borders-design:nth-child(4)
{
    background: rgb(255, 252, 80);
    top: 50%;
    left: 50%;
    transform: translate(40%,-10%);
    border-radius: 60% 40% 68% 32% / 47% 56% 44% 53% ;
    animation-name: shape;
    animation-duration:15s;
    animation-iteration-count: infinite ;
}


.borders-design:nth-child(4) img
{
    position: absolute;
    left: -100px;
    top: -100px;
    width: 700px;
}

@keyframes shape {

    0%
    {
        border-radius: 60% 40% 68% 32% / 47% 56% 44% 53% ;
    }
    
    20%
    {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%  ;
    }
    40%
    {
        border-radius: 43% 57% 46% 54% / 53% 68% 32% 47%  ;
    }
    
    60%
    {
        border-radius: 61% 39% 78% 22% / 35% 45% 55% 65%  ;
    }
    80%
    {
        border-radius: 49% 51% 60% 40% / 23% 51% 49% 77%  ;
    }
    
    100%
    {
        border-radius: 60% 40% 68% 32% / 47% 56% 44% 53% ;
    }
}



.section-1
{
    position: absolute;
    width: 650px;
    height: 200px;
    top: 250px;
    left: 100px;
    transition: 1s ease;
}

h1
{
    position: relative;
    color: var(--black);
    font-size: 100px;
}

h1 span
{
    color: var(--tomato);
}

.typewriter
{
    width: 600px;
}

.typewriter h1 
{
    color: var(--tomato);
    overflow: hidden; 
    font-size: 40px;
    border-right: .15em solid rgb(255, 255, 255); 
    white-space: nowrap; 
    margin: 0 auto; 
    letter-spacing: .15em; 
    animation: 
      typing 3.5s steps(30, end),
      blink-caret .5s step-end infinite;
  }
  
  @keyframes typing {
    from { width: 0 }
    to { width: 100% }
  }
  
  @keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: rgb(81, 81, 81) }
  }


  aside
  {
      position: absolute;
      width: 30px;
      bottom: 0;
      right: -200px;
      height: 90vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-around;
      transition: 1s;
      z-index: 500;
  }
  
  aside.active
  {
      right: 10px;
  }
  
  aside a
  {
      width: 150px;
      height: 20px;
      margin: 10px;
      text-align: center;
      border-left: 5px solid;
      color: rgb(0, 0, 0);
      transform: rotate(90deg);
      text-decoration: none;
      font-family: "Major Mono Display", monospace;
  }
  
  aside a:nth-child(1)
  {
      border-color: rgb(0, 0, 0);
  }
  
  aside a:nth-child(2)
  {
      border-color: rgb(0, 68, 255);
  }
  
  aside a:nth-child(3)
  {
      border-color: rgb(158, 0, 176);
  }
  
  aside a:nth-child(4)
  {
      border-color: rgb(0, 68, 255);
  }
  

.second-section
{
    position: relative;
    width: 100vw;
    height: 100vh;  
    background-color: var(--white);
    overflow: hidden;
}

.second-section h1
{
    position: absolute;
    color: var(--tomato);
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.second-section .space
{
    height: 100%;
    right: 0;
    position: absolute;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
}

.second-section .container-back
{
    position: relative;
    width:1500px;
    height: 60px;
    z-index: 1;
    border-radius: 40px;
    right: -40px;
    animation-name: leftright;
    animation-iteration-count: infinite;
}

.second-section .container-back:nth-child(1)
{
    right: -500px;
    background-color: var(--blue1);
    animation-duration: 5s;
}


.second-section .container-back:nth-child(2)
{
    right: -400px;
    background-color: var(--blue2);
    animation-duration: 18s;
}


.second-section .container-back:nth-child(3)
{
    right: -80px;
    background-color: var(--purble1);
    animation-duration: 15s;
}


.second-section .container-back:nth-child(4)
{
    right: -800px;
    background-color: var(--purple2);
    animation-duration: 10s;
}


.second-section .container-back:nth-child(5)
{
    right: -100px;
    background-color: var(--pink1);
    animation-duration: 19s;
}

@keyframes leftright {
    0%
    {
       transform: translate(0px,0px);
    }
    50%
    {
        transform: translate(200px,0px);
    }
    100%
    {
        transform: translate(0px,0px);
    }
}

.btn
{
    text-decoration: none;
}


.container1
{
    padding: 10px;
    position: absolute;
    color: var(--black);
    width: 100%;
    height: 100%;
    background: var(--white-transparent);
    z-index: 15;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap:wrap;
    gap: 20px;
    /* align-items: center;
    justify-content: space-around;
    flex-wrap: wrap; */
}


.card
{
    position: relative;
    width: 200px;
    height: 250px;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(10px);
    border-radius: 5px;
    overflow: hidden;
    padding: 5px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    border: 1px solid black;
    gap: 5px;
    -webkit-box-shadow: 9px 10px 17px -3px rgba(0,0,0,0.67);
    -moz-box-shadow: 9px 10px 17px -3px rgba(0,0,0,0.67);
    box-shadow: 9px 10px 17px -3px rgba(0,0,0,0.67);
    perspective: 1000px;
	transform-style: preserve-3d;
}

.card .card-image
{
    position: relative;
    background-color: white;
    display: grid;
    place-items: center;
    border: 1px solid tomato;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 7px;
    perspective: 1000px;
	transform-style: preserve-3d;
}

.card .card-image img
{
    width: 50%;
    height: 50%;
}

.card .card-content
{
    position: relative;
    width: 100%;
    height: 30%;
    border-radius: 10px;
    display: grid;
    place-items: center;
    text-align: center;
    perspective: 1000px;
	transform-style: preserve-3d;
}
.card .card-content h1
{
    color: black;
    font-size: clamp(1.5rem, 1vw, 2rem);
}

/* 
.container1 .card
{
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    border-radius: 10px;
    border: none;
    width: 180px;
    height: 180px;
    background-color: var(--white-transparent);
    background: rgba(255, 255, 255, 0.23);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(9.6px);
-webkit-backdrop-filter: blur(9.6px);
    z-index: 1000;
    transition: 0.5s;
 }


.container1 .card h1
{
    position: relative;
    bottom: 10px;
    font-size: 25px;
    position: absolute;
    color: var(--black);
    transition: 0.5s ease;
    text-align: center;
}

.container1 .card .icons 
{
    position: absolute;
    width: 90px;
    height: 90px;
    z-index: 5;
    top: 10px;
    overflow: hidden;
}

.container1 .card:hover
{
    background-color: var(--white);
    box-shadow: none;
    transform: scale(1.1);

} */

.third-section
{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: 1s ease;
}

.third-section .titles .headings
{
    color: var(--tomato);
    transition: 1s ease;
}


.third-section .corls1
{
    display: grid;
    grid-auto-flow: row;
    gap: 20px;
    padding: 20px;
    margin-right: 10px;
}

.third-section .card1
{
    width: 600px;
    height: 100px;
    /* background: radial-gradient(var(--white),var(--white)); */
    background-color: rgba(128, 128, 128, 0.356);
    border-radius: 10px;
    transition: 0.5s;
    display: flex;
}

.third-section .card1 .head-container
{
    position: relative;
    display: flex;
    align-items: start;
    justify-content: space-evenly;
    height: 25%;
}

.third-section p
{
    position: relative;
    left: 20px;
    width: 80%;
    height: 50%;
    padding: 20px;
    
}

.third-section a
{
    left: 20px;
}

.third-section .card1:hover
{
    transform: scale(1.02);
}
.third-section .card1:hover h1
{
    color: var(--black);
}

.third-section .card1 h1
{
    width: 20%;
    font-size: 25px;
    color: var(--gray);
    top: 10px;
    left: 20px;
    transition: 1s ease;
}

.third-section .card1 .head-container span
{
    position: relative;
    width: 80%;
    font-size: 25px;
    color: var(--tomato);
}



.third-section .corls1 .forword
{
    bottom: 30px;
    left: 20px;
}

.third-section .corls1 .backword
{
    bottom: 30px;
    right: 20px;
}

footer
{
    position: relative;
    height: 100vh;
    background-color: var(--white);
    overflow: hidden;
}

footer svg
{
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
}

footer .details
{
    position: relative;
    padding: 40px;
    width: 100%;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    transition: 1s ease;
}

footer .details .card-title 
{
    padding: 20px;
    position: relative;
    width: 400px;
    height: 450px;
    background-color: rgba(255, 255, 255, 0.285);
    border-right:solid 2px rgba(255, 255, 255, 0.437) ;
    border-bottom:solid 2px rgba(255, 255, 255, 0.437) ;
    z-index: 10;
    border-radius: 10px;
    transition: 1s ease;
}

footer .details .card-title div
{
    display: flex;
    justify-content: start;
    padding: 20px;
    margin-top: 10px;
    transition: 1s ease;
}

footer .details .card-title div i
{
    font-size: 25px;
    transition: 1s ease;
}

footer .details .card-title div a
{
    text-decoration: none;
    color:var(--black);
    transition: 1s ease;
}
footer .details .card-title div h4{
    margin-left: 20px;
    transition: 1s ease;
}

footer #copyright
{
    position: absolute;
    bottom: 0px;
    width: 100%;
    z-index: 10;
}


 @media (max-width:1300px) 
 {

    .section-1 h1
    {
        font-size: 100px;
    }

    .section-1 .typewriter h1
    {
        font-size: 40px;
    }

    .second-section
    {
        height: 110vh;
    }

     .third-section
     {
         flex-wrap: wrap;
     }
     
     .third-section h1
     {
         font-size: 80px;
     }
     .third-section .card1
     {
         width: 600px;
         height: 100px;
     }
 
     .third-section .card1 .head-container span ,h1
     {
         font-size: 25px;
     }
 
 }
 

 @media (max-width:950px)
 {

     .container1 .card h1
     {
        font-size: 20px;
     }

     .container1 .card .icons
     {
        width: 70px;
        height: 70px;
     }

 }



 @media (max-width:800px) 
{
    .section-1
    {
        left: 10px;
    }

    .section-1 h1
    {
        font-size: 40px;
    }
    
    .section-1 .typewriter
    {
        font-size: 30px;
    }
    .borders-design:nth-child(4)
    {
        background-color: transparent;
        position: relative;
        left: 200px;
        width: 300px;
        box-shadow: none ;
    }
    .borders-design:nth-child(4) img
    {
        top: 10px;
        left:-10px;
        width: 400px;
    }
}


@media (max-width:800px) {

    header
    {
        padding: 12px 20px;
    }

    header .navigator
    {
      display: none;
    }   

    header .navigator.acitve
    {
        position: fixed;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: rgba(255, 255, 255, 0.6);
    }  

    header .navigator .items
    {
        background-color: var(--white);
        width: 300px;
        height: 400px;
        border-radius: 10px;
        margin: 20px;
        padding: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;

    }

    .nav-but
    {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        border-radius: 10px;
        transition: 0.4s ease;
        z-index: 999;
    }

    .nav-but:hover
    {
        background-color: var(--white);
    }

    .nav-but i
    {
        color:#000;
    }
    

    header .navigator .items a
    {
        font-size: 1.2em;
        margin: 20px;
    }
   

}


@media (max-width:720px) 
{
    .second-section .card
    {
        width: 160px;
        height: 200px;
    }    
}



@media (max-width:600px)
{

    footer .details
    {
        gap: 10px;
    }

    footer .details .card-title
    {
        width: 200px;
        height: 300px;
    }
    footer .details .card-title i , h3
    {
        font-size: 20px;
    }

    footer .details .card-title div
    {
        padding: 10px;
        margin-top: 0;
    }
    footer .details .card-title div i 
    {
        font-size: 18px;
    }
    footer .details .card-title div a h4
    {
        font-size: 18px;
    }

    footer svg .path
     {
        height: 400px;
    }

    .second-section .container-back
{
    position: relative;
    width:1500px;
    height: 60px;
    z-index: 1;
    border-radius: 40px;
    right: -40px;
    animation-name: leftright;
    animation-iteration-count: infinite;
}

.second-section .container-back:nth-child(1)
{
    right: -1400px;
}


.second-section .container-back:nth-child(2)
{
    right: -1300px;

}


.second-section .container-back:nth-child(3)
{
    right: -1200px;

}


.second-section .container-back:nth-child(4)
{
    right: -1250px;

}


.second-section .container-back:nth-child(5)
{
    right: -1100px;

}

.second-section{
    height: 180vh;
    align-items: start;
}


}


@media (max-width:600px) 
{
    .third-section .card1
    {
        width: 320px;
        height: 100px;
    }    

    .third-section .card1 .head-container span
    {
        font-size: 20px;
    }
    .third-section .card1 .head-container h1
    {
        font-size: 20px;
    }

}


@media (max-width:450px)
{

    .first-section .section-1
    {
        left: 20px;
        top: 150px;
    }

    .first-section .section-1 h1 
    {
        font-size: 40px;
    }
    .first-section .section-1 .typewriter h1
    {
        font-size:25px;
    }

    .borders-design:nth-child(1),.borders-design:nth-child(2),.borders-design:nth-child(3)
{
    position: absolute;
    width: 100px;
    height: 100px;
}

    .borders-design:nth-child(4)
    {
        position: absolute;
        left: -100px;
        bottom: -100px;
    }

    .third-section .titles .headings
    {
        font-size: 60px;
        transition: 1s ease;
    }

    
}  

@media (max-width:400px) 
{

    .first-section .section-1 h1
    {
     font-size: 35px;
    }     
}

@media (max-width:380px) 
{

   .borders-design:nth-child(1)
   {
    left: 0;
   }

   .borders-design:nth-child(2)
   {
    top:20px;
    right: -50px;
   }

  .first-section .section-1  .typewriter h1
   {
    font-size: 16px;
   }

   .second-section
   {
    height: 100vh;
    gap: 0px;
   }
    .second-section .container1 .card
    {
        width: 130px;
        height:130px;
    }

    .container1 .card h1 
    {
        font-size: 10px;
    }

    .container1 .card .icons
    {
        width: 50px;
        height: 50px;
    }


    .third-section .card1
    {
        width: 230px;
    }    
    
}


@media (max-width:320px) 
{


    .second-section .container1
    {
        align-items: center;
        justify-content: space-evenly;
    }
    .second-section .container1 .card
    {
        width: 100px;
        height:100px;
    }

}