@keyframes diamondRotate {
  0% {
    
  }

  100% {
    transform: rotate(405deg);
    border-color: rgb(142, 142, 233);
  }
}

@keyframes slideInDiamonds {
  from {
    transform: translateY(-100vh) scale(100%);
  }

  to {
    transform: translateY(0) scale(75%);
  }
}




@keyframes slideInLeftCtner {
  0% {
    transform: translateX(-50vw);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes slideOutLeftCtner {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50vw);
  }
}


@keyframes slideInRightCtner {
  0% {
    transform: translateX(50vw);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes slideOutRightCtner {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(50vw);
  }
}

.about {
  display: flex;
  position: relative;
  /* max-height: 500px;
  min-height: 499px; */
  height: 750px;
}

.about .left-ctner1,
.about .right-ctner1 {
  width: 40vw;
  min-height: 250px;;
  background-color: rgb(51, 51, 124);
  border-radius: 60px;
}

.left-ctner1 {
  position: absolute;
  left: -10vw;
  z-index: 1;
  padding-left: 12vw;
  padding-right: 50px;
}


.left-ctner1 h1, .right-ctner1 h1 {
  color: white;
  text-decoration: underline;
}


.left-ctner1 p, .right-ctner1 p {
  color: rgb(201, 214, 231);
  text-align: justify;
  font-size: 2vw;
}





.right-ctner1 {
  position: absolute;
  right: -10vw;
  top: 20vh;
  padding-right: 12vw;
  padding-left: 50px;
}

.right-ctner1 h1 {

}

.right-ctner p {

}



/* diamonds */

.left-diamonds-ctner {
  display: flex;
  width: 300px;
  height: 800px;
  position: absolute;
  top: -105px;
  left: 0px;
  /* transform: scale(75%); */
  background-image: url(/backgrounds/diamonds-background3.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-left: 25px;
  padding-right: 25px;
  box-shadow: 5px 5px 4px rgb(153, 182, 245),
  -5px -5px 4px rgb(153, 182, 245);
  animation: slideInDiamonds 1s ease-in-out 1s both;
}

.column {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  height: 100%;
  width: 100%;
}

.column1 {
  margin-right: 6px;
}

.column2 {
  margin-left: 6px;
  margin-right: 6px;
  margin-top: 48px;
}

.column3 {
  margin-left: 6px;
}

.diamond {
  width: 70px;
  height: 70px;
  background-color: rgb(8, 8, 145);
  border: 5px solid rgb(106, 106, 150);
  transform: rotate(45deg);
  transition: transform 0.75s ease-in-out;
}


.rotateDiamond {
  animation: diamondRotate 1s ease-in-out alternate forwards;
}


@media screen and (max-width: 1650px) {
  .left-diamonds-ctner {
    display: none;
  }
}


.slideIn-left-ctner {
  animation: slideInLeftCtner 1s ease-out 0s forwards;
}

.slideOut-left-ctner {
  animation: slideOutLeftCtner 1s ease-out 0s forwards;
}

.slideIn-right-ctner {
  animation: slideInRightCtner 1s ease-out 0s forwards;
}

.slideOut-right-ctner {
  animation: slideOutRightCtner 1s ease-out 0s forwards;
}


.delay-animation1 {
  animation-duration: 1.25s;
}


@media screen and (min-width: 1250px) {
  .left-ctner1 p {
    font-size: 30px;
  }

  .right-ctner1 p {
    font-size: 30px;
  }
}


.link-about {
  width: 10px;
  height: 10px;
  position: absolute;
  top: -50px;
}