:root {
    --blue: #337CCF;
    --black: #040D12;
 }
.service-vector{
    padding: 80px 0;
}
.vector-section-heading {
    font-size: 45px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 80px;

}
.vector-section-heading  span{
    color: var(--blue);

}
.vector-row{
    display: flex;
    justify-content: center;
}
.text-circle{
        text-align: center;
        border: 1px solid;
        border-radius: 80px;
        height: 150px;
        width: 150px;
}
.text-circle p {
    width: 100px;
    margin: 48px auto;
}

.second-circle{
    margin-top: 40px;
}
.fourth-circle{
    margin-top: 40px;
}
.col-sm-3.col-circle-1{
    display: flex;
    flex-direction: column;
    align-items: end;
    position: relative;
}
.col-sm-3.col-circle-2{
    display: flex;
    flex-direction: column;
    align-items: start;
    position: relative;
}
.img-col {
    text-align: center;
    margin: auto;
}

.img-circle {
    border: 25px solid #E6E7E8;
    border-radius: 50%;
    width: 350px;
    height: 350px;
    margin: auto;
    z-index: 1;
    position: relative;
    /* align-items: center; */
}
.img-circle img
 {
    margin: auto;
    padding-top: 20px;
 }
 .second-circle::after {
    content: "";
    height: 86px;
    width: 120px;
    background: url(../../img/services/google/bottom-left.svg);
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0px;
    right: -52%;
    top: 55%;
    background-size: contain;
    z-index: 0;
}
 .first-circle::after {
    content: "";
    height: 86px;
    width: 120px;
    background: url(../../img/services/google/top-left.svg);
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0px;
    right: -52%;
    top: 20%;
    background-size: contain;
    z-index: 0;
    /* animation-name: slidein;
    animation-duration: 4s;
    animation-iteration-count: 3; */
}
 .third-circle::after {
    content: "";
    height: 86px;
    width: 120px;
    background: url(../../img/services/google/top-right.svg);
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0px;
    left: -52%;
    top: 20%;
    background-size: contain;
    z-index: 0;
}
 .fourth-circle::after {
    content: "";
    height: 86px;
    width: 120px;
    background: url(../../img/services/google/bottom-right.svg);
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0px;
    left: -52%;
    top: 55%;
    background-size: contain;
    z-index: 0;
}
.contact-section-heading
{
    margin-bottom: 30px;
}
.service-detail {
    padding-top: 30px !important;
}
@keyframes slidein {
    from {
        background-size: 0%;
    }

    to {
        background-size: 100%;

    }
  }
