.mod-process {
    width: 100%;
    height: 100%;
    padding: 100px 0;
    color: #3A416F;
    background-color: #f5f5f5;
}

.process-title {
    margin-bottom: 20px;
    font-size: 40px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 19px;
}
.process-dec {
    font-size: 18px;
    text-align: center;
    font-weight: 200;
    margin-bottom: 169px;
    opacity: 0.5;
}
.process-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    width: 1200px;
    margin: 0 auto;
}
.process-item{
    width: 234px;
    text-align: center;
    margin-right: 66px;
    transition: 0.3s all;
}
.process-item__title{
    color: #989898;
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 23px ;
}
.process-item__image{
    width: 100%;
    height: 282px;
    background: no-repeat center/cover;
  
}
.process-item:hover{
    transform: scale(1.2)
}
.process-brain{
    position: absolute;
    top: 70px;
    left: 50%;
    width: 163px;
    height: 185px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    text-align: center;
    color: #fff;
    padding-top: 58px;
}
.process-brain-inside{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/p005.png) no-repeat center/cover;
    z-index: -1;
    -webkit-animation: brain 3s linear infinite;
            animation: brain 3s linear infinite;
}

@-webkit-keyframes brain{
    0%{-webkit-transform:rotate(0deg);transform:rotate(0deg);}
 
    25%{-webkit-transform:rotate(90deg);transform:rotate(90deg);}

    50%{-webkit-transform:rotate(180deg);transform:rotate(180deg);}

    75%{-webkit-transform:rotate(270deg);transform:rotate(270deg);}

    100%{-webkit-transform:rotate(360deg);transform:rotate(360deg);}

}

@keyframes brain{
    0%{-webkit-transform:rotate(0deg);transform:rotate(0deg);}
 
    25%{-webkit-transform:rotate(90deg);transform:rotate(90deg);}

    50%{-webkit-transform:rotate(180deg);transform:rotate(180deg);}

    75%{-webkit-transform:rotate(270deg);transform:rotate(270deg);}

    100%{-webkit-transform:rotate(360deg);transform:rotate(360deg);}

}
.process-brain__title{
    font-size: 28px;
    font-weight: bold;
}
.process-brain__dec{
    font-size: 14px;
    padding-top: 9px;
    font-weight: 400;
}
@media screen and (max-height: 968px) and (min-height: 768px) {
    .mod-process {
        padding: 50px 0;
    }

    .process-title {
        margin-bottom: 10px;
    }

    .process-dec {
        margin-bottom: 85px;
    }

}

@media screen and (max-height: 768px) {
    .mod-process {
        padding: 50px 0;
    }

    .process-title {
        margin-bottom: 5px;
    }

    .process-dec {
        margin-bottom: 43px;
    }
}