@media screen and (min-width: 1120px){
    .top-section{
        display: flex; 
        flex-direction: row;
        justify-content: space-around; 
        align-items:center;
        padding-left: 5%; 
        padding-right: 5%; 
        width: 80%; 
        min-width: 560px; 
        min-height: 560px;
    }

    .white-box{
        width:300px ;
	    text-align: center;
        margin-bottom: 30px !important;
        padding: 20px !important;
	    background: #fff;
    }
}

@media screen and (max-width: 1120px){
    .top-section-1{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
    .top-section{
        display: flex; 
        flex-direction: column;
        justify-content: center; 
        align-items:center;
        padding-left: 5%; 
        padding-right: 5%; 
        width: 80%; 
        min-width: 560px; 
        min-height: 560px;
    }

    .white-box{
        width:100% ;
	    text-align: center;
        margin-bottom: 30px !important;
        padding: 20px !important;
	    background: #fff;
    }
}

.kitty_png{
	-webkit-animation: scale-up-center 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: scale-up-center 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

@-webkit-keyframes scale-up-center {
    0% {
      -webkit-transform: scale(0.5);
              transform: scale(0.5);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
  }
  @keyframes scale-up-center {
    0% {
      -webkit-transform: scale(0.5);
              transform: scale(0.5);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
  }
  