.container{
    padding-top: 10% !important;
}

.container-gstm{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
}

.image{
    width: 100%;
}

.image > .image-service-gstm{
    width: 100%;    
}

.bordered-gstm{
    border: 7px solid #5fa3ce !important;
    border-radius: 10px;
}

.text-gstm-title{
    text-align: center;
    margin-top: 1em;
    color: #293f61;
    font-size: 2em;
}

.fades{
    animation: fade 1s linear;
}

@keyframes fade{
    0%{
        opacity: 0;
    }
    50%{
        opacity: 0.5;
    }
    100%{
        opacity: 1;
    }
}



.text-gstm-bold{
    font-weight: 600 !important;
}

.p-gstm{
    color: #2d2d2d;
}

@media (max-width:800px){
    .container-gstm{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 550px){
    .container{
        padding-top: 15% !important;
    }
    .container-gstm{
        display: flex;
        flex-direction: column;
    }
}
/* Single Page Service Styles*/