/* Base styles */
.heading {
    margin-top: 100px;
    height: 20vh;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    background: linear-gradient(48deg, rgba(131, 58, 180, 1) 0%, rgba(141, 56, 168, 1) 22%, rgba(253, 29, 29, 1) 50%, rgba(252, 176, 69, 1) 100%);
}

.heading h1 {
    text-align: center;
    color: #fff;
    padding-top: 40px;
}

.div-block {
    display: flex;
    padding: 20px;
    flex-wrap: wrap; /* Allow items to wrap in smaller screens */
}

.content {
    width: 70%;
    padding: 10px;
}

.content h2 {
    font-size: 2rem;
}

.content p {
    margin: 5px;
}

.content ul {
    padding-top: 5px;
    padding-left: 30px;
    list-style-type: square;
}

.webimage {
    width: 30%;
    padding: 20px;
}

.webimage img {
    height: 400px;
    position: relative;
    justify-content: center;
    background-image: cover;
    border-radius: 1rem 6rem 3rem 8rem;
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;  
}

.circle-svg {
    width: 400px;
    height: 400px;
    z-index: -10;
    position: absolute;
    top: 400px;
    right: 100px;
    -webkit-animation: slider 1s infinite alternate;
    animation: slider 1s infinite alternate;
}

/* Keyframes for animations */
@keyframes slider {
    0% { transform: translateX(0); }
    100% { transform: translateX(30px); }
}

@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
/* mobile view */


@media(max-width:1300px){
    .content {
        width: 100%;
        padding: 10px;
    }
    .webimage img ,.circle-svg {
       display: none;
    }
   
  }