@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');
body{
    padding: 0;
    margin: 0;
    background-color: #f9f9f9;
}

*{
    padding: 0;
    box-sizing: border-box;
    font-family: "Cairo", sans-serif;
}
.teamwork{
    width: 100%;
    height: auto;
    padding: 60px 0px;
    margin-top: 50px;
    overflow: hidden;
    background-color: #f6f6f6;
}
.teamwork h2{
    color: #000;
    font-size: 35px;
    text-align: center;
    margin: 30px 0px;
}
.teamwork .row:first-child p{
    text-align: center;
    color: #212121;
}
.teamwork .row:first-child span{
    width: 100px;
    height: 4px;
    background-color: #6d9cca;
    border: 1px solid #6d9cca;
    margin: 30px auto;
    display: block;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    position: relative;
}
.teamwork .row:first-child span::before{
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    background-color: #6419e6;
    border: 1px solid #6419e6;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    top: -230%;
    left: 0;
    animation: moveright 3s ease-in-out infinite alternate;
    -webkit-animation: moveright 3s ease-in-out infinite alternate;
}
@keyframes moveright{
    0% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    }
    100% {
        transform: translateX(95px);
        -webkit-transform: translateX(95px);
        -moz-transform: translateX(95px);
        -ms-transform: translateX(95px);
        -o-transform: translateX(95px);
    }
}
.teamwork .col-lg-4 h3{
    color: #fff;
    font-size: 25px;
    margin: 35px auto;
    text-align: center;
    background-color: #4998eb;
    background-image: -webkit-linear-gradient(160deg, #4998eb 0%, #885edb 100%);
    background-image: -moz-linear-gradient(160deg, #4998eb 0%, #885edb 100%);
    background-image: -o-linear-gradient(160deg, #4998eb 0%, #885edb 100%);
    background-image: linear-gradient(160deg, #4998eb 0%, #885edb 100%);
    padding: 20px;
}
.teamwork .box-team{
    width: 100%;
    max-width: 100%;
    height: auto;
    background-color: #fff;
    padding: 10px;
    border: 1px solid #fff;
    overflow: hidden;
    margin-top: 20px;
    border-radius: 8px;
}
.teamwork .box-team .img-box{
    overflow: hidden;
}
.teamwork .box-team img{
    max-width: 100%;
    width: 100%;
    border-radius: 8px;
    height: 300px;
}
.teamwork .box-team img.img1{
    height: 240px;
} 
.teamwork .box-team .text-box{
    text-align: center;
    padding: 10x 5px;
}
.teamwork .box-team .text-box h3{
    color: #1a1a1a;
    font-size: 17px;
    margin-top: 20px;
}
.teamwork .box-team .text-box span{
    display: block;
    font-size: 14px;
    margin: 10px 0px;
    color: #45157e;
    line-height: 28px;
}
.teamwork .box-team:hover img{
    transform: scale(1.2);
    transition: 1s ease-in-out;
}
.teamwork .box-team:hover{
    transform: translateY(-5px);
    transition: 1s ease-in-out;
}