
/*** Contact Start ***/
.contact .contact-img {
    position: relative;
}


.text-title{
    color: #38b6ff;
    text-align: center;
    padding-bottom: 3rem;
}
.text-subtitle{
    color: white;
    text-align: center;
    padding-bottom: 3rem;
}

.icon-text{
    color: white;
}

.contact .contact-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: linear-gradient(to right,
    rgba(0, 0, 139, 1),    /* Dark Blue */
    rgba(0, 123, 255, 1),  /* Blue */
    rgba(128, 0, 128, 1)   /* Purple */
    );

    z-index: 1;
    animation-name: image-efects;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 0.5s
}

@keyframes image-efects {
    0%  {border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;}

    25% {border-radius: 35% 65% 27% 73% / 71% 25% 75% 29%;}

    50% {border-radius: 41% 59% 45% 55% / 32% 21% 79% 68%;}

    75% {border-radius: 69% 31% 39% 61% / 70% 83% 17% 30%;}

    100% {border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;}
}

.contact .contact-img .contact-img-inner {
    position: relative;
    z-index: 9;
}
/*** Contact End ***/