.thank-sec{
  margin: 50px 0px;
}
.thank-sec img {
  width: 13%;
}

section.thank-sec .row {
  display: flex;
  justify-content: center;
  text-align: center;
}
section.thank-sec p {
  text-align: center;
  font-weight: 500;
  font-size: 19px;
}
.thank-sec h2 {
  font-style: inherit;
  text-transform: capitalize;
  font-size: 80px;
  font-family: serif;
  margin-top: 25px;
  font-weight: 900;
}
.zoom-in-zoom-out {
margin: 24px;
width: 50px;
height: 50px;
background: green;
animation: zoom-in-zoom-out 2s ease-out infinite;
}

@keyframes zoom-in-zoom-out {
0% {
  transform: scale(1, 1);
}
50% {
  transform: scale(1.5, 1.5);
}
100% {
  transform: scale(1, 1);
}
}
section.thank-sec p a {
  color: green;
  font-family: 'Poppins';
}
section.thank-sec p a i {
  font-weight: 800;
  font-size: 21px;
}
.thank-sec h2 {
  font-style: inherit;
  text-transform: capitalize;
  font-size: 80px;
  font-family: serif;
  margin-top: 25px;
}
.zoom-in-zoom-out1 {
animation: zoom-in-zoom-out 2s ease-out infinite;
}

@keyframes zoom-in-zoom-out1 {
0% {
  transform: scale(1, 1);
}
50% {
  transform: scale(1.5, 1.5);
}
100% {
  transform: scale(1, 1);
}
}