
.container6 {
  padding: 64px;
}

.row4:after {
  content: "";
  display: table;
  clear: both
}

.column-66 {
  float: left;
  width: 66.66666%;
  padding: 20px;
  overflow: hidden;
  animation: animate 3s;
}

.column-33 {
  float: left;
  width: 33.33333%;
  padding: 20px;
  overflow: hidden;
  animation: animate 5s;
}

.large-font {
  font-size: 25px;
}

.xlarge-font {
  font-size: 30px
}


.column-33 img {
  display: block;
  height: auto;
  max-width: 100%;
}

@media screen and (max-width: 1000px) {
  .column-66,
  .column-33 {
    width: 100%;
    text-align: center;
  }
  .column-33 img {
    margin: auto;
  }
}

 @keyframes animate {
            0% {
                width: 0px;
                height: 0px;
            }
            30% {
                width: 50px;
                height: 0px;
            }
            60% {
                width: 50px;
                height: 80px;
            }
        }

        .blink {
            animation: blinker 1.5s linear infinite;
            color: black;
            font-family: sans-serif;
        }
        @keyframes blinker {
            50% {
                opacity: 0;
            }
        }