﻿.disabled{
    pointer-events: none;
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}
.platform-system-container{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 0px;
    margin-top: 5%;
}
.platform-system-container .card{
    position: relative;
    max-width: 300px;
    height: 180px;
    background: #fff;
    margin: 30px 25px;
    padding: 20px 15px;
    display: flex ;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 5px 202px rgba(40, 30, 30, 0.26);
    transition: 0.5s ease-in-out;
    border-radius: 10px;
}

.platform-system-container .card .time{
    position: absolute;
    top: 135px;
    margin-left: 200px;
    visibility: visible;
    color: #03a9f4;
}
.platform-system-container .card span{
    position: absolute;
    top: 125px;
    width: 200px;
    height: 30px;
    left: -10px;
    background: #03a9f4;
    border-radius: 30px;
    border-bottom-left-radius: 0;
}
.platform-system-container .card span::before{
    content: '';
    position: absolute;
    top: 30px;
    width: 10px;
    height: 14px;
    background: #0483bf;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    z-index: 2;
}
.platform-system-container .card span::after{
    content: '';
    position: absolute;
    top: 30px;
    width: 10px;
    height: 5px;
    background: #16a4e7;
    z-index: 1;
}
.platform-system-container .card span p{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin-top: 5px;
}

/*hover*/
.platform-system-container .card{
    height: 520px;
}

.platform-system-container .card .imgBx{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 260px;
    height: 150px;
    top: -60px;
    z-index: 1;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}
.platform-system-container .card .imgBx img{
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;

}

.platform-system-container .card .content{
    position: relative;
    margin-top: -140px;
    padding: 45px 0px;
    text-align: center;
    color: #111;
    margin-left: 0;
    margin-right: 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out;
    height: 100%;
    visibility: visible;
    opacity: 1;
    margin-top: -40px;
    transition-delay: 0.3s;
}

.platform-system-container .card h2{
    margin-top: 10px;
}

.platform-system-container .card p{
    text-align: justify;
}
.platform-system-container .card .content p{
    height: 80%;
    font-size: 12px;
}


.platform-system-container .social {
    position: absolute;
    width: 100%;
}
.social_icons{
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 5px;
}

.social_icons li{
    list-style: none;
    display: flex;
    justify-content: center;
    flex: 1;
    margin-buttom: 5px;
}
.social_icons li a{
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #294d69;
    border-radius: 50%;
    font-size: 1.5em;
    color: #fff;
    text-decoration: none;
    transition: 0.5s;
}
/*hover*/
.social_icons li a:hover{
    transform: rotate(360deg);
    background: #03a9f4;
}