/**,
*:after,
*:before{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    cursor: default;
}
html{
    width: 100%;
    height: auto;
}
body{
    width: 100%;
    height: auto;
    font-size: 16px;
    font-weight: 300;
    font-family: 'Roboto',sans-serif;
    background: rgba(30,30,30);
}
.testim{
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

*/





.alumnitalk a{text-decoration: none;display: block;color: #1f75b994; font-family: arial;font-size: 15px; line-height:15px; letter-spacing: 2px;text-align: center; margin: 0px auto 20px auto; cursor:pointer;position: relative; transition:1s;}
.alumnitalk a:hover {color: #EB268F;}




.testim .wrap{
    position: relative;
    width: 100%;
    max-width: 1020px;
    padding: 40px 70px;
    margin: auto;
}
.testim .arrow{
    display: block;
    position: absolute;
    color: #00B0F0;
    cursor: pointer;
    font-size: 2em;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s ease-in-out;
    padding: 5px;
   /* z-index: 22222222;*/
}
.testim .arrow:before{
    cursor: pointer;
}
.testim .arrow.left{
    left: 10px;
}
.testim .arrow.rightero{
    right: 10px;
}
.testim .arrow:hover{
    color: #EB268F;
}
.testim .dots{
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 12px;
    left: 0;
    display: block;
   /* z-index: 3333;*/
    height: 12px;
}
.testim .dots .dot{
    list-style-type: none;
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #777;
    margin: 0 5px;
    cursor: pointer;
    transition: all .5s ease-in-out;
    position: relative;
}
.testim .dots .dot.active,
.testim .dots .dot:hover{
background: #EB268F;
border-color: #EB268F;
}

.testim .dots .dot.active{
    animation: testim-scale .5s ease-in-out forwards;
}
.testim .cont{
    position: relative;
    overflow: hidden;
}
.testim .cont > div{
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    /*padding: 0 0 30px 0;*/
    opacity: 0;
  min-height: 300px;
}
.testim .cont > div.inactive{
    opacity: 1;
}
.testim .cont > div.active{
    
    position: relative;
    opacity: 1;
    
}
.testim .cont div .img img{
    display: block;
    width: 150px;
    height: 150px;
    margin: auto;
    border-radius: 50%;
	box-shadow: 3px 3px 6px #00000050;
    border: 3px solid #fff;
}
.testim .cont div h2{color: #1f75b9; font-size: 22px; line-height: 22px; font-weight: bold;margin: 12px auto;}
.testim .cont div h2 span {display:block; font-weight:normal;font-size:14px; line-height:14px; color:#555; margin-top:4px;}
.testim .cont div p{color: #333; font-size: 16px; line-height: 24px;  width: 100%;  margin: auto;}
.testim .cont div.active .img img{
    animation: testim-show .5s ease-in-out forwards;
}
.testim .cont div.active h2{
    animation: testim-content-in .4s ease-in-out forwards;
}
.testim .cont div.active p {
    animation: testim-content-in .5s ease-in-out forwards;
}
.testim .cont div.inactive .img img{
    animation: testim-hide .5s ease-in-out forwards;
}
.testim .cont div.inactive h2{
    animation: testim-content-out .4s ease-in-out forwards;
}
.testim .cont div.inactive p {
    animation: testim-content-out .5s ease-in-out forwards;
}

@keyframes testim-scale {
    0% {
        box-shadow: 0px 0px 0px 0px #eee;
    }
    35% {
        box-shadow: 0px 0px 10px 5px #eee;
    }
    70% {
        box-shadow: 0px 0px 10px 5px #ea830e;
    }
    100% {
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@keyframes testim-content-in {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes testim-content-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-100%);
    }
}
@keyframes testim-show {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes testim-hide {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0);
    }
}


/* Responsive */

/*@media all and (max-width: 300px) {
    body {
        font-size: 14px;
    }
}*/
@media all and (max-width: 500px) {
    .testim .arrow{
        font-size: 1.5rem;
    }
}