body{
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgb(95, 95, 95);
    background: rgb(22, 22, 22);

    user-select: none; 
    -webkit-user-select: none;
    -moz-user-select: none; 
    -ms-user-select: none;
    overflow-x: hidden;
    overflow-y: auto; 
}

.color-crl{
    z-index: -1;
    display: flex;
    justify-content: center;
    padding-top: 230px;
}

.crl-1, .crl-2, .crl-3{
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.crl-1{
    background: rgb(0, 110, 255);
    box-shadow: 0 0 60px 40px rgb(0, 68, 255);
    position: relative;
    transition: all 0.2s;
    right: 25%;
    top: 50px;
    animation: anim-one 35s ease infinite;
}
.crl-2{
    background: rgb(153, 255, 0);
    box-shadow: 0 0 60px 40px rgb(179, 255, 58);
    position: relative;
    transition: all 0.2s;
    right: 25%;
    top: 50px;
    animation: anim-two 30s ease infinite;
}
.crl-3{
    background: rgb(255, 74, 74);
    box-shadow: 0 0 60px 40px rgb(255, 0, 0);
    position: relative;
    transition: all 0.2s;
    left: 30%;
    top: 200px;
    animation: anim-three 35s ease infinite;
}

.backgr{
    z-index: 1;
    position: absolute;
    top: -10px;
    left: -2px;
    width: 100%;
    height: 100%;
    background: transparent;
    backdrop-filter: blur(80px);
    -webkit-backdrop-filter: blur(80px);
}

@keyframes anim-one{
    0% {top: 50px; right: 25%;}
    10% {top: 250px; right: 10%;}
    20% {top: 300px; right: -10%;}
    40% {top: 200px; right: -20%;}
    65% {top: 100px; right: -30%;}
    80% {top: -100px; right: -30%;}
    100% {top: 50px; right: 25%;}
}
@keyframes anim-two{
    0% {top: 100px; right: 40%;}
    10% {top: 150px; right: 15%;}
    20% {top: 330px; right: -15%;}
    40% {top: 220px; right: -35%;}
    65% {top: 20px; right: -40%;}
    80% {top: -220px; right: -35%;}
    100% {top: 100px; right: 40%;}
}
@keyframes anim-three{
    0% {top: 200px; left: 30%;}
    10% {top: 250px; left: 10%;}
    20% {top: 300px; left: -10%;}
    40% {top: 200px; left: -30%;}
    65% {top: 10px; left: -40%;}
    80% {top: -200px; left: -30%;}
    100% {top: 200px; left: 30%;}
}


.up-menu{
    width: 90%;
    height: 7.5%;
    min-height: 70px;

   background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.28) 0%,
    rgba(255, 255, 255, 0.18) 50%,
    rgba(255, 255, 255, 0.08) 100%
  );
  backdrop-filter: blur(3px) saturate(180%);
  -webkit-backdrop-filter: blur(3px) saturate(180%);
  box-shadow: 
    0 8px 32px 0 rgba(72, 76, 138, 0.37),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1);

  border: 1px solid transparent;
  background-clip: padding-box;
  border-radius: 500px;
  z-index: 3;

    position: relative;
    left: 5.2%;
    top: 30px;

    user-select: none; 
    -webkit-user-select: none;
    -moz-user-select: none; 
    -ms-user-select: none;
}

.pt-container{
    width: 100%;
    height: 100%;
    color: aliceblue;
    display: flex;
    align-items: center;
    padding-left: 20px;
    font-weight: bold;
}

.pt-1{
  width: 15%;
  height: 70%;

  background: rgba(245, 245, 245, 0.055);

  border-left: 1px solid rgba(245, 245, 245, 0.137);
  border-top: 0.5px solid rgba(245, 245, 245, 0.137);

  background-clip: padding-box;
  border-radius: 30px;
  transition: all 0.3s;
  color: rgb(159, 209, 255);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1px 5px;
  cursor: pointer;
}
.pt-1 i {
    margin-bottom: 4px;
    font-size: 20px;
}
.pt-1 span {
    font-size: 14px;
}
.pt-1:hover{
  background: rgba(245, 245, 245, 0.103);
}
.pt-1:active{
    color: rgb(89, 175, 255);
    border-left: 1px solid rgba(245, 245, 245, 0.281);
    border-top: 0.5px solid rgba(245, 245, 245, 0.281);
    background: rgba(245, 245, 245, 0.116);
    transform: scale(1.20);
}

.pt-2{
  width: 15%;
  height: 70%;

  background: rgba(245, 245, 245, 0.055);

  border-left: 1px solid rgba(245, 245, 245, 0.137);
  border-top: 0.5px solid rgba(245, 245, 245, 0.137);
  background-clip: padding-box;
  border-radius: 30px;
  transition: all 0.3s;
  color: rgb(227, 242, 255);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1px 5px;
  margin-left: 10px;
  cursor: pointer;
}
.pt-2 i {
    margin-bottom: 4px;
    font-size: 20px;
}
.pt-2 span {
    font-size: 14px;
}
.pt-2:hover{
  background: rgba(245, 245, 245, 0.103);
}
.pt-2:active{
    color: rgb(89, 175, 255);
    border-left: 1px solid rgba(245, 245, 245, 0.281);
    border-top: 0.5px solid rgba(245, 245, 245, 0.281);
    background: rgba(245, 245, 245, 0.116);
    transform: scale(1.20);
}

.logo-s{
    margin-left: auto; 
    margin-right: 50px;
    font-size: 18px;

    transition: all 0.5s;
}
.logo-s:hover{
    background: linear-gradient(90deg, 
        #ff5d5d 0%, 
        #ff5353 33%, 
        #5395ff 66%, 
        #b1ff4c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


.main-type{
   font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
   width: 100%;
   height: 100%;
   color: rgb(240, 248, 255);
   position: absolute;
   margin-top: 70px;
}

/* Home point :--) */

.main{ 
    display: flex;
    flex-direction: row; 
    justify-content: space-between;
    align-items: center; 
    opacity: 1;
    pointer-events: auto;
    transition: all 0.3s;
    padding: 0 10%;
    gap: 40px;
}

.text-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px; 
}

.ico-sba{
    margin-left: 10%;
    margin-top: 100px;
    width: 30%;
    transition: all 0.5s;

    box-shadow: 
    0 8px 32px 0 rgba(72, 76, 138, 0.37),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    border-radius: 30%;
}
.ico-sba:hover{
    transform: scale(1.10);
}
.binfo-text{
    font-size: 240%;
    font-weight: bold;
}
.binfo-text1{
  padding-top: 10px;
  font-size: 140%;
}
.but-project{
  width: 150px;
  height: 40px;
  background: transparent;

  border-left: solid 1px rgba(248, 248, 248, 0.63);
  border-top: solid 1px rgba(248, 248, 248, 0.63);
  border-right: solid 1px rgba(248, 248, 248, 0.082);
  border-bottom: solid 1px rgba(248, 248, 248, 0.062);

  border-radius: 15px;
  margin-top: 20px;
  transition: all 0.8s;
  cursor: pointer;

  display: flex;
  justify-content: center;
  align-items: center;

    user-select: none; 
    -webkit-user-select: none;
    -moz-user-select: none; 
    -ms-user-select: none;
}
.but-project:hover{
  border-right: solid 1px rgba(248, 248, 248, 0.63);
  border-bottom: solid 1px rgba(248, 248, 248, 0.63);
  border-left: solid 1px rgba(248, 248, 248, 0.082);
  border-top: solid 1px rgba(248, 248, 248, 0.062);

  color: rgb(89, 175, 255);
}
.but-project:active{
  transition: all 0.3s;
  transform: scale(1.10);
  border-right: solid 1px rgba(248, 248, 248, 0.63);
  border-bottom: solid 1px rgba(248, 248, 248, 0.63);
  border-left: solid 1px rgba(248, 248, 248, 0.63);
  border-top: solid 1px rgba(248, 248, 248, 0.63);  
}

/* Project point :--) */

.project{
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.3s;
}

.project-container{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center; 
  gap: 50px;
  padding: 40px 20px;
  margin-left: 0;
  box-sizing: border-box;
}

.card1{
  width: 400px;
  height: 550px;
  flex-shrink: 0;

   background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.28) 0%,
    rgba(255, 255, 255, 0.18) 50%,
    rgba(255, 255, 255, 0.08) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.267);
  border-radius: 40px;
  transition: all 0.3s;
  z-index: 1;
  position: relative;
  overflow: hidden;
}
.card1:hover{
 box-shadow: 0px -2px 10px rgb(0, 119, 255);
}

.card-img1{
    z-index: 2;
    width: 100%;
    height: 25%;

    background: #629dfc80;
    border: 2px solid rgba(255, 255, 255, 0.267);
    background-image: url('../image/Frilance.png');
    background-size: cover;
    background-position: center; 

    position: relative;
    left: -2px;
    top: -3px;
}

.card-avatar1{
    z-index: 3;
    width: 30%;
    height: 21%;

    background: #5395ff;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.267);
    background-image: url('../image/savelance.jpg');
    background-size: cover;
    background-position: center;
    box-shadow: 0px -6px 10px rgb(0, 0, 0);
    transition: all 0.3s;  
    
    position: relative;
    top: -55px;
    left: 33.5%;
}
.card-avatar1:active{
    transform: scale(1.10);
}

.card-name1{
    font-size: 20px;
    display: flex;
    justify-content: center;
    position: relative;
    top: -50px;
}

.card-descr1{
    font-size: 15px;
    text-align: center;
    padding: 10px;
    position: relative;
    top: -50px;
}

.card-p1{
  width: 80%;
  height: 1px;
  background: #ffffff4d;
  position: relative;
  left: 39px;
  top: -40px;
}

.card-link1{
    width: 80%;
    height: 5%;

    background: #72d2ff42;
    margin: 15px auto; 
    border-radius: 15px;
    border-top: solid 1px rgba(245, 245, 245, 0.281);
    border-right: solid 0.1px rgba(245, 245, 245, 0.281);

    text-decoration: none;
    color: aliceblue;
    font-size: 17px;

    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;  
    transition: all 0.3s;
    top: -45px;
    gap: 10px;
    padding: 2px;
}
.card-link1:hover{
    transform: scale(1.09);
    color: rgb(159, 209, 255);
}


/* Call point :--) */

.call{
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.3s;
}


/* Media point :--) */

@media (max-width: 1000px) {
    .up-menu{
      height: 9%;
      width: 92%;
      left: 4.2%;
    }
    .pt-1{
        border-radius: 90px;
        padding: 1px 10px;
    }
    .pt-2{
        border-radius: 90px;
        padding: 1px 10px;
    }
    .main {
        flex-direction: column-reverse;
        text-align: center;
        padding: 0 5%;
        gap: 50px;
    }
    
    .ico-sba {
        width: 50%;
        aspect-ratio: 1 / 1;
        max-width: 400px;
        max-height: 400px;
        margin: 50px auto 0;
        width: 50%; 
    }

    .btext-container {
        padding-top: 70px;
        display: flex;
        flex-direction: column;
        align-items: center; 
        width: 100%;
    }
    
    .binfo-text, .binfo-text1 {
        text-align: center;
    }
}
@media (min-height: 1000px){
    .pt-1{
        border-radius: 90px;
        padding: 8px 30px;
        font-weight: 100;
    }
    .pt-1 i{
      margin-bottom: 8px;
      font-size: 30px;
    }
    .pt-1 span{
        font-size: 25px;
    }
    .pt-2{
        border-radius: 90px;
        padding: 8px 30px;
        font-weight: 100;
    }
    .pt-2 i{
      margin-bottom: 8px;
      font-size: 30px;
    }
    .pt-2 span{
        font-size: 25px;
    }
    .logo-s{
        font-size: 20px;
    }
    .but-project{
        width: 300px;
        height: 70px;
        border-radius: 25px;

        font-size: 25px;
        font-weight: bold;
    }
}

