.why-container {
  display: flex;
  justify-content:center;
  align-items: center;
}

.right-why,
.left-why {
  width: 40%;
  gap: 10px;
}
.right-why {
  width: 50%;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.right-why img {
  width: 90%;
}
.left-why h2{
    font-size: 36px;
    margin-block: 25px;
    position: relative;
    padding-bottom: 8px;
    color: var(--primaryColor);
}
.left-why h2 span{
 color: var(--blue);
}
.left-why p{
    font-size: 18px;
   font-weight: 500;
    color: var(--primaryColor);
    width: 85%;
}


@media (max-width: 1200px) {
.why-container {
 flex-direction: column;
}
.right-why,
.left-why {
  width: 90%;
  gap: 10px;
}
.left-why{
  text-align: center;
}
.left-why h2{
    font-size: 40px;
    /* width: 50%; */
    margin: 0 auto; 
    text-align: center;
}

.left-why p{
 text-align: center;
 align-items: center;
 width: 100%;
}
.why-h{
text-align: center;
align-items: center;
width: 100%;
}
}
.box {
  width: 80%;
  margin: 50px auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.item {
  text-align: center;
}

.circle {
  width: 120px;
  height: 120px;
  margin: auto;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;

  box-shadow: 0 0 20px rgba(0,0,0,0.2);


  transform: scale(0.1);
  opacity: 0;
  animation: popUp 0.1s ease forwards;
  transition: 0.1s;
}


@keyframes popUp {
  to {
    transform: scale(1);
    opacity: 1;
  }
}


.circle:hover {
  transform: scale(0.8);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}


.circle:active {
  transform: scale(0.75);
}
.circle i {
color: var(--primaryColor);
  transition: 0.3s;
}


.circle:hover i {
  color:var(--blue);
}

.item p {
  margin: 15px 0 5px;
  font-weight: bold;
}

.item span {
  color: gray;
  font-size: 14px;
}


@media (max-width: 768px) {
  .box {
    grid-template-columns: 1fr;
  }
}