/* box model*/
* { 
  -moz-box-sizing: border-box; 
  box-sizing: border-box; 
  box-sizing: border-box;
}

/* scale */
@keyframes scale {
    0%   { transform: scale(1.0); }
    100% { transform: scale(1.2); }
}
@-moz-keyframes scale {
    0%   { transform: scale(1.0); }
    100% { transform: scale(1.2); }
}
@-ms-keyframes scale {
    0%   { transform: scale(1.0); }
    100% { transform: scale(1.2); }
}
@keyframes scale {
    0%   { transform: scale(1.0); }
    100% { transform: scale(1.2); }
}

/* globals */
.wrapper {
    position: relative;
    background-color: #E5DFDF;
    margin: 40px auto 0 auto;
    height: 480px;
    width: 320px;
}
.circle {
    /* Draw circles */
    border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.animated {
    /* Smoother animations */
    transform: translateZ(0); 
}

/* tower */
.tower {
    display:inline-block;
    width: 2rem;
    height: 3.5rem;
    margin: -10px 0 0 0;
}
.tower .signal {
    position: absolute;
    top: 0px;
    left: 50%;
    margin: 0 0 0 -15px;
}
.tower .signal .rings {
    width: 30px;
    height: 30px;
    border: 6px double #f1c40f;
    
}

.weare:hover .rings{
    animation: scale 1s infinite linear;
}

.tower .dot {
    margin: 10px auto 0 auto;
    width: 10px;
    height: 10px;
    background-color: #F2F0F0;
}
.tower .triangle {
    margin: -5px auto 0 auto;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 40px solid #F2F0F0;
}