
.banner{
    border: solid red 2px;
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 1200px;
    width: 90%;
}

.arrow{
    background-color: #ffffff;
    border-radius: 20px;
    padding: 10px;
    opacity: 0.7;
}
.arrow:hover{
    cursor: pointer;
    opacity: 1;
}
.landing{
    margin: 10px 0px 10px 0px;
    width: 1200px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    overflow-x: hidden;
}
.landing .landing-item{
    min-width: 1200px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    transition: 1.2s ease-in-out;
}
.landing .left img{
    margin: 0px 50px 0px 50px;
    height: 250px;
}
.landing .right{
    font-family: 'Poppins';
}
.landing .right h1{
    font-weight: 500;
}
.landing .right button{
    padding: 10px 20px 10px 20px;
    border-radius: 25px;
    color: #ffffff;
    background-color: #ff6f00;
    border: #ff6f00 2px solid;
    font-family: 'Poppins';
    transition: 0.3s ease;
}
.landing .right button:hover{
    background-color: #ffffff;
    color: black;
    cursor: pointer;
}


.balls{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: 1200px;
    margin: 50px 0px 50px 0px;
}
.balls .ball{
    border-radius: 100%;
    padding: 20px;
    background-color: #ffffff;
    border: #3a3a3a 3px solid;
    transition: 0.3s ease;
}
.balls .section{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.balls .section:hover{
    cursor: pointer;
}
.ball:hover{
    background-color: #3a3a3a;
    cursor: pointer;
}
.ball img{
    height: 60px;
}

.testimonial{
    margin: 40px 0px 70px 0px;
    width: 1200px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    
}
.testimonial .right img{
    margin: 0px 50px 0px 70px;
}
.testimonial .left{
    font-family: 'Poppins';
}
.testimonial .left h3{
    font-weight: 500;
    font-family: 'Courier New', monospace;
}

@media only screen and (max-width: 1200px) {
    .hr hr{
        width: 90%;
    }
    .landing{
        width: 100%;
    }
    .balls{
        width: 100%;
    }
    .testimonial{
        width: 100%;
    }
    .testimonial p{
        padding: 20px;
    }
}
