#plata-code {
    margin-bottom: 76px;
}

.plata_main {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 32px;
}

.plata_container {
    width: 40%;
    position: relative;
    top: 50px;
    opacity: 0;
    -webkit-transition: 0.3s opacity ease-out, 0.3s top ease-out;
    transition: 0.3s opacity ease-out, 0.3s top ease-out;
}

.plata-title,
.plata-text {
    position: relative;
    top: 50px;
    opacity: 0;
    -webkit-transition: 0.3s opacity ease-out, 0.3s top ease-out;
    transition: 0.3s opacity ease-out, 0.3s top ease-out;
}

#plata.show .plata_container,
#plata.show .plata-title,
#plata.show .plata-text {
    opacity: 1;
    top: 0;
}
#plata.show .plata_box {
    opacity: 1;
    bottom: -30px;
}

#call_plata span {
    font-size: 96px;
}

#plata .plata-text {
    width: 100%;
}

#plata .plata-text p {
    font-weight: 700;
}

/* #call_plata span {
    border-radius: 50%;
    color: rgba(18,39,84, 1.0);
    background-color: #fff;
    -webkit-transition: 0.3s color ease-out, 0.3s background-color ease-out;
    transition: 0.3s color ease-out, 0.3s background-color ease-out;
}
#call_plata span:hover {
    color: #fff !important;
    background-color: rgba(18,39,84, 1.0) !important;
} */

.plata_item_wrapper {
    background-color: rgba(18,39,84, 0.7);
    width: 100%;
    height: 0;
    padding: 50% 0;
    border-radius: 50%;
    text-align: center;
    position: relative;
    box-shadow: 0px 6px 6px #888888;
    -webkit-transition: 0.3s box-shadow ease-out;
    transition: 0.3s box-shadow ease-out;
}

.plata_item_wrapper:hover {
    box-shadow: 0px 12px 12px #888888;
}

.continut_plata {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 80%;
    color: #fff;
    font-weight: 300;
}

.plata_box {
    position: absolute;
    width: 40%;
    height: 50px;
    border: 2px dashed rgba(18,39,84, 1.0);
    border-top: none;
    z-index: 50;
    bottom: -80px;
    opacity: 0;
    -webkit-transition: 0.3s opacity ease-out, 0.3s bottom ease-out;
    transition: 0.3s opacity ease-out, 0.3s bottom ease-out;
}

.plata_box > p {
    position: absolute;
    left: 50%;
    bottom: -46px;
    font-size: 64px;
    transform: translateX(-50%);
    z-index: 100;
    color: rgba(18,39,84, 1.0);
}

@media screen and (min-width: 576px) {
    .plata_container {
        width: 25%;
    }
    .plata_main {
        flex-direction: row;
    }
    .plata_box {
        width: 75%;
    }
}

@media screen and (min-width: 768px) {
    #plata .plata-text {
        width: 45%;
    }
}

@media screen and (min-width: 992px) {
    
    .plata_container {
        width: 15%;
    }
    .plata_box {
        width: 45%;
    }
}

@media screen and (min-width: 1200px) {} 