@keyframes scale {
  100% {
    transform: scale(1);
  }
}

@keyframes fade-in2 {
  100% {
    opacity: 1;
  }
}

@keyframes fade-in {
  100% {
    opacity: 1;
    filter: blur(0);
  }
}

/* Fade-out Animation */
@keyframes fade-out {
  0% {
    opacity: 1;
    filter: blur(0);
  }
  100% {
    opacity: 0;
  }
}

#welcome.fade-out span {
  animation: fade-out 0.5s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.ann-body{
  background-image: url(../PIC/white3.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.apps-bg{
  background-image: url(../PIC/space.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  height: 36.6em;
  background-color:white;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  border-radius: 1rem;
}

.cb1{
  border-radius: 1rem;
  border: 1px solid transparent;
  backdrop-filter: blur(1rem);
  box-shadow: 1.3rem 1.3rem 1.3rem rgba(0, 0, 0,0.5);
  background-color: rgba(225, 225, 225, 0.1);
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.card-profile{
  position: relative;
  width: 320px;
  height: 450px;
  background: #27374D;
  border-radius: 20px;
  overflow: hidden;
}

.card-profile:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ECE5C7;
  clip-path: circle(150px at 80% 20%);
  transition: 0.5s ease-in-out;
}

.card-profile:hover:before{
  clip-path: circle(300px at 80% -20%);
}

.card-profile:after{
  content: 'Profile';
  position: absolute;
  top: 50%;
  left: 5%;
  font-size: 5em;
  font-weight: 800;
  font-style: italic;
  color: white;
  opacity: 0.1;
}

.card-profile .imgBx{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 100%;
  height: 220px;
  transition: 0.5s;
}

.card-profile:hover .imgBx{
  top: 10%;
  transform: translateY(0%);
}

.card-profile .imgBx img{
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
}

.card-profile .contentBx{
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100px;
  text-align: center;
  transition: 1s;
  z-index: 10;
}

.card-profile:hover .contentBx{
  height: 210px;
}

.cf-welcome .card-profile .contentBx .user_name{
  position: relative;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  margin: 0;
}

.cf-welcome .card-profile .contentBx .user_pos{
  position: relative;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  margin: 0;
}

.card-profile .contentBx .size, .cf-welcome .card-profile .contentBx .color {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 20px;
  transition: 0.5s;opacity: 0;
  visibility: hidden;
  padding-top: 0;
  padding-bottom: 0;
}

.cf-welcome .card-profile:hover .contentBx .size{
  opacity: 1;
  visibility: visible;
  transition-delay: 0.5s;
}

.cf-welcome .card-profile:hover .contentBx .color{
  opacity: 1;
  visibility: visible;
  transition-delay: 0.6s;
}

.cf-welcome .card-profile .contentBx .size h3, .cf-welcome .card-profile .contentBx .color h3{
  color: #fff;
  font-weight: 300;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-right: 10px;
}

.cf-welcome .card-profile .contentBx .size span{
  width: 26px;
  height: 26px;
  text-align: center;
  line-height: 26px;
  font-size: 14px;
  display: inline-block;
  color: #111;
  background: #fff;
  margin: 0 5px;
  transition: 0.5s;
  color: #111;
  border-radius: 4px;
  cursor: pointer;
}

.cf-welcome .card-profile .contentBx .size span:hover{
  background: #9bdc28;
}

.cf-welcome .card-profile .contentBx .color span{
  width: 20px;
  height: 20px;
  background: #ff0;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.cf-welcome .card-profile .contentBx a{
  display: inline-block;
  border-radius: 1rem;
  margin-top: 10px;
  text-decoration: none;
  font-weight: 600;
  opacity: 0;
  transition: 0.5s;
  margin-top: 0;
}

.cf-welcome .card-profile:hover .contentBx a{
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 0.1s;
}

.carousel .carousel-item img {
  width: 40%;
}


.SA-anim{
  margin-top: 12px;
  animation: slider1 1.2s ease forwards;
  transform: translateX(100%); /* Start off the screen to the right */
}

.ST-anim{
  margin-top: 12px;
  animation: slider2 1.2s ease forwards;
  transform: translateX(-100%);
}

@keyframes slider1 {
  from {
    letter-spacing: 2px;
    transform: translateX(100%); /* Start off the screen to the right */
  }
  to {
    letter-spacing: 0px;
    transform: translateX(0); /* Slide to the left (0% means the original position) */
  }
}

@keyframes slider2 {
  from {
    letter-spacing: 1px;
    transform: translateX(-100%); /* Start off the screen to the right */
  }
  to {
    letter-spacing: 0px;
    transform: translateX(0); /* Slide to the left (0% means the original position) */
  }
}