.info-box svg,
.info-box svg rect{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  fill: transparent;

}
.info-box svg rect{
  stroke: #0093ff;
  stroke-width: 4;
  stroke-dasharray: 50%;
  animation: animate 10s linear infinite;
}

@keyframes animate
{
  0%{
    stroke-dashoffset: 0%;
  }
  100%{
    stroke-dashoffset: 100%;
  }
}
.info-box p{
  text-align: center;
  font-family: 'Sevillana', cursive;
}
.info-box a{
  font-family: Monotype Corsiva;
}
#infobox{
  transform: rotate(-4deg) skew(25deg) scale(.7);
  
}
#infobox:hover :nth-child(4){
  transform: translate(5px, -5px);
}
#infobox:hover :nth-child(3){
  transform: translate(5px, -5px);
}
#infobox:hover :nth-child(2){
  transform: translate(5px, -5px);
}
#infobox:hover :nth-child(1){
  transform: translate(5px, -5px);
}
#infobox p {
  font-family: Monotype Corsiva;
font-style: italic;
text-align: center;
}
#infobox p:nth-child(1){
  animation: animate1 20s  linear infinite;
  
}

@keyframes animate1 {
 0%{
  font-style: normal;
  font-family: Arial, Helvetica, sans-serif;
 }
 15%{
  font-family: Monotype Corsiva;
 }
 25%{
  font-style: italic;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
 }
 35%{
  font-family: French Script MT;
 }
 50%{
  font-family: Verdana, Geneva, Tahoma, sans-serif;
 }
 65%{
  font-family: Gigi;
 }
 75%{
 font-style: italic;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
 }
 80%{
  font-style: oblique;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
 }
 90%{
  font-family: 'Courier New', Courier, monospace;
 }
  100%{
    font-style: oblique;
  }
  
}
#msg h3{
    font-family: Gigi;
}
#msg p{
    text-align: center;
    font-family: Monotype Corsiva;
}
.ltech span{
    font-family: Monotype Corsiva;  
}
.pfl h3{
  font-family: Monotype Corsiva;
}
.ftr{
  text-align: center;

}
/*autocomplete form input css*/
* { box-sizing: border-box; }
.autocomplete {
  /*the container must be positioned relative:*/
  position: relative;
  display: inline-block;
}
input {
  border: 1px solid transparent;
  background-color: #f1f1f1;
  padding: 10px;
  font-size: 16px;
}
input[type=text] {
  background-color: #f1f1f1;
  width: 100%;
}
input[type=submit] {
  background-color: DodgerBlue;
  color: #fff;
}
.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}
.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}
.autocomplete-items div:hover {
  /*when hovering an item:*/
  background-color: #e9e9e9;
}
.autocomplete-active {
  /*when navigating through the items using the arrow keys:*/
  background-color: DodgerBlue !important;
  color: #ffffff;
}
