:root {
  --app-container: #eaefff;
  --main-color: #253b80;
  --secondary-color: #ffffff;
  --black-color: #000000;
  --white-color: #ffffff;
  --Paragraph: #646568;
  --orange: #f90;
  --Heading: #2b2b2c;
}

section.work_section {
  width: 100%;
  background-size: cover;
  background-position: center;
  padding: 60px 0px;
  color: var(--white-color);
  text-align: center;
  position: relative;
}

.work_title {
  margin-bottom: 15px;
}

.work_row {
  display: flex;
  justify-content: center;
  padding: 35px 0px;
}

.work_col {
  flex-grow: 1;
  flex-basis: min-content;
  align-items: center;
  display: flex;
  margin-bottom: 45px;
  justify-content: center;
}

.circle-ani {
  background: url(/images/circle-border.png);
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  margin-top: 24px;
}

.circle-ani::before {
  position: absolute;
  content: url(../images/landing/circle.svg);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.circle-line {
  border: 0px solid;
  border-radius: 100%;
  height: 65vh;
}

#move1 {
  animation-name: animation1;
  animation-duration: 14.8s;
  animation-delay: 3.5s;
  animation-iteration-count: infinite;
}

@keyframes animation1 {
  0% {
    left: 45%;
    top: -4%;
  }

  20% {
    left: 4%;
    top: 28%;
  }

  40% {
    left: 16%;
    top: 80%;
  }

  60% {
    left: 74%;
    top: 80%;
  }

  80% {
    left: 87%;
    top: 28%;
  }

  100% {
    left: 45%;
    top: -4%;
  }
}

#move2 {
  animation-name: animation2;
  animation-duration: 14.8s;
  animation-delay: 3.5s;
  animation-iteration-count: infinite;
}

@keyframes animation2 {
  0% {
    left: 87%;
    top: 28%;
  }

  20% {
    left: 45%;
    top: -4%;
  }

  40% {
    left: 4%;
    top: 28%;
  }

  60% {
    left: 16%;
    top: 80%;
  }

  80% {
    left: 74%;
    top: 80%;
  }

  100% {
    left: 87%;
    top: 28%;
  }
}

#move3 {
  animation-name: animation3;
  animation-duration: 14.8s;
  animation-delay: 3.5s;
  animation-iteration-count: infinite;
}

@keyframes animation3 {
  0% {
    left: 74%;
    top: 80%;
  }

  20% {
    left: 87%;
    top: 28%;
  }

  40% {
    left: 45%;
    top: -4%;
  }

  60% {
    left: 4%;
    top: 28%;
  }

  80% {
    left: 16%;
    top: 80%;
  }

  100% {
    left: 74%;
    top: 80%;
  }
}

#move4 {
  animation-name: animation4;
  animation-duration: 14.8s;
  animation-delay: 3.5s;
  animation-iteration-count: infinite;
}

@keyframes animation4 {
  0% {
    left: 16%;
    top: 80%;
  }

  20% {
    left: 74%;
    top: 80%;
  }

  40% {
    left: 87%;
    top: 28%;
  }

  60% {
    left: 45%;
    top: -4%;
  }

  80% {
    left: 4%;
    top: 28%;
  }

  100% {
    left: 16%;
    top: 80%;
  }
}

#move5 {
  animation-name: animation5;
  animation-duration: 14.8s;
  animation-delay: 3.5s;
  animation-iteration-count: infinite;
}

@keyframes animation5 {
  0% {
    left: 4%;
    top: 28%;
  }

  20% {
    left: 16%;
    top: 80%;
  }

  40% {
    left: 74%;
    top: 80%;
  }

  60% {
    left: 87%;
    top: 28%;
  }

  80% {
    left: 45%;
    top: -4%;
  }

  100% {
    left: 4%;
    top: 28%;
  }
}

img.icon {
  background-position: center;
  animation: fadeIn ease 4s;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

img.icon1.img-fluid {
  margin-top: 35%;
  margin-left: 0px;
  animation: fadeIn ease 4s;
}

img.icon2.img-fluid {
  margin-top: 33%;
  margin-left: 1%;
  animation: fadeIn ease 4s;
}

img.icon3.img-fluid {
  margin-top: 29%;
  margin-left: 0%;
  animation: fadeIn ease 4s;
}

img.icon4.img-fluid {
  margin: 29% 0% 0% 0%;
  animation: fadeIn ease 4s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.num {
  background-color: #0d183b;
  width: 53px;
  height: 53px;
  border-radius: 100px;
  position: absolute;
  top: -4%;
  left: 45%;
  animation: fadeIn ease 2s;
}

.activeShow {
  box-shadow: 2px -2px 17px 0px #3a72e4, 0 6px 28px 0 #3a72e4;
}

.activeShow .col {
  background-color: #0b40aa;
}

.col {
  font-size: 18px;
  border-radius: 100px;
  padding: 5px;
  width: 35px;
  margin-top: 8px;
  z-index: 1;
}

.num1 {
  background-color: #0d183b;
  width: 53px;
  height: 53px;
  border-radius: 100px;
  position: absolute;
  top: 28%;
  left: 87%;
  animation: fadeIn ease 2s;
}

.num2 {
  background-color: #0d183b;
  width: 53px;
  height: 53px;
  border-radius: 100px;
  position: absolute;
  top: 80%;
  left: 74%;
  animation: fadeIn ease 2s;
}

.num3 {
  background-color: #0d183b;
  width: 53px;
  height: 53px;
  border-radius: 100px;
  position: absolute;
  top: 80%;
  left: 16%;
  animation: fadeIn ease 2s;
}

.num4 {
  background-color: #0d183b;
  width: 53px;
  height: 53px;
  border-radius: 100px;
  position: absolute;
  top: 28%;
  left: 4%;
  animation: fadeIn ease 2s;
}

.htw-info {
  display: flex;
  justify-content: start;
}

.htw-info h4 {
  margin-left: 80px;
  margin-top: 6px;
  color: #000925a6;
  opacity: 0.5;
}

span.step {
  color: #0f296b;
  text-align: justify;
}

span.step h5 {
  margin-left: 9%;
  margin-top: 10px;
  color: #0b40aa;
}

.p-info {
  width: 100%;
  border-top: 1px solid #0f296b;
  border-bottom: 1px solid #0f296b;
  border-left: 1px solid #0f296b;
  padding: 15px 0px;
  border-radius: 25px 0px 0px 25px;
  position: relative;
}

.p-info::before {
  content: "";
  position: absolute;
  top: 24px;
  left: -8px;
  width: 15px;
  height: 70%;
  background: #0f296b;
  border-radius: 10px;
}

.p-info h4 {
  text-align: justify;
  padding-top: 17px;
  padding-left: 44px;
  color: #000925;
}

.p-info p {
  margin: 12px 0px 10px 44px;
  text-align: justify;
  font-size: 14px;
  color: #000925a3;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fade-in-text {
  animation: fadeIn 12s;
}

.work_details {
  width: 200px;
  height: 290px;
  border-radius: 16px;
  padding: 5px;
  border: 1px solid #fff;
  background: var(
    --Linear,
    linear-gradient(
      180deg,
      rgba(43, 146, 242, 0.36) 0%,
      rgba(40, 40, 41, 0) 100%
    )
  );
  align-items: center;
  display: grid;
  justify-content: center;
  text-align: center;
  position: relative;
  transition: 0.5s ease;
  cursor: pointer;
}

.work_details:hover {
  box-shadow: 0px 0px 5px var(--white-color);
  transform: scale(1.1);
}

.work_star {
  position: relative;
  display: inline-block;
  color: #0b40aa;
}

.work_star::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 63px;
  top: 0;
  right: -70px;
  background: url(../images/landing/work_star.png);
}

@media (max-width: 1024px) {
  .htw-info h4 {
    font-size: 20px;
  }

  .work_details {
    width: 200px;
  }

  .num .num1 .num2 .num3 .num4 {
    display: none;
  }

  .p-info p {
    text-align: justify;
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  .p-info p {
    margin: 12px 0px 10px 44px !important;
    text-align: justify;
    font-size: 14px;
  }

  .circle-line {
    border: 0px solid;
    border-radius: 100%;
    height: 95vh !important;
  }
}

@media (max-width: 769px) {
}

@media (min-width: 992px) {
}

@media (max-width: 767px) {
}

@media (max-width: 576px) {
  .work_star::before {
    content: none;
  }

  .circle-line {
    height: 65vh !important;
  }
}

@media (max-width: 475px) {
  .circle-line {
    height: 60vh !important;
  }

  img.icon {
    width: 145px;
  }

  .p-info h4 {
    text-align: left !important;
  }

  .htw-info h4 {
    text-align: left;
    margin-left: 30px;
  }
}

@media (max-width: 376px) {
}

@media (max-width: 356px) {
  .circle-line {
    height: 55vh !important;
  }
}
