.watch-grid {
    display: grid;
    grid-template-columns:  1fr 1fr;
    justify-items: center;
    position: relative;
    bottom: 120px;
    max-width: 900px;
}

.watch-grid a{
    display: grid;
    justify-items: center;
    max-width: 250px;
}

.watch-grid-clock {
    position: relative;
}

.watch-list {
    padding: 40px;
    position: absolute;
    top: 0;
    display: grid;
    justify-items: center;
    grid-gap: 10px;
}

.watch-list h2{
    display: grid;
    align-items: center;
}
    

.watch-grid h2{
   color: #01BBD1;
   text-shadow: 0px 0px 10px rgba(1, 187, 209, 0.5);
   max-width: 150px;
   font-weight: 700;
   text-align: center;
   line-height: 1.1em;
   height: 65px;
   z-index: 10;
}


.watch-grid li{
    color: #A4A4A4;
    max-width: 150px;
    font-weight: 400;
    position: relative;
}

.watch-grid li:before{
    content: url(/img/sect.svg);
    position: absolute;
    right: 90px;
    top: -5px;
}

.growth {
    font-size: 1.75rem;
}

.img-watch-icon {
 position: absolute;
 right: 30px;
 top: 30px;
 z-index: 0;
}

@media only screen and (min-width: 484px) and (max-width: 920px) {
    .watch-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around
    }
}


@media only screen and (max-width: 483px) {
    .watch-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        grid-gap: 10px;
    }
}