@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  /* border: 1px solid red; */
}
.AboutUs-Container {
  /* border: 1px solid red; */
  width: 100%;
  height: auto;
  margin-top: 94px;
  overflow: hidden;
  display: flex;
  /* justify-content: center; */
  align-items: center;
  flex-direction: column;
}
.About-Us-Name {
  margin-top: 30px;
  margin-left: 4%;
  text-align: start;
  margin-right: auto;
  font-size: 51px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.AboutUs-Info-Block {
  /* border: 1px solid black; */
  width: 82%;
  height: fit-content;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.AboutUs-Info-Block-Parts {
  /* border: 1px solid red; */
  width: 100%;
  padding: 2%;
  display: flex;
  /* height: auto; */
  flex-direction: column;
  align-items: start;
  justify-content: center;
  flex: 1 1 400px;
  height: 350px;
  gap: 4%;
  border-radius: 5px;
  margin: 18px 0px;
  border-radius: 5px;
}
.AboutUs-Info-Block-Parts-Right-Side {
  border-color: 1px solid red;
}
.AboutUs-Right-Side-Name {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 22px;
  /* margin-left: 4%; */
}
.OurObjective-Name {
  margin-top: 3%;
  margin-left: 9%;
  margin: 9px auto 24px 13.8%;
  font-size: 20px;
  font-family: Roboto, sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #000000c7;
}
.AboutUs-Right-Side-Information {
  color: #151515b8;
  text-align: start;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  width: 80%;
  /* margin-left: 4%; */
}

.flip-card {
  background-color: transparent;
  width: 100%;
  height: 100%;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  /* box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2); */
  animation-name: example;
  animation-duration: 2s;

  animation: mymove 5s infinite;
}

.flip-card:hover .flip-card-inner {
  transform: rotateX(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border: 1px solid #5bbcf3;
  border-radius: 10px;
}

.flip-card-front {
  /* background-color: #bbb; */
  color: black;
}

.flip-card-back {
  width: 100%;
  height: 305px;
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  transform: rotateY(180deg);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 6%;
}
.Rotate-Vision-Logo {
  rotate: 20deg;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*  
@keyframes mymove {
    50% {transform: rotatex(180deg);}
  } */
