section{
    min-height: 200px;
    width: 100%;
    text-align: center;
    border: 1px solid white;
    margin-top: 30px;
    border-radius: 15px;
    box-shadow: 3px 2px 10px gray;
}
.flesh{
    flex: 1;
    margin-top: 35px;
    color: white;
    font-size: 17px;
}
.text{
    flex: 1;
    color: white;
    font-size: 20px;
    margin-top:60px;
}
.section_titles{
    color: white;
    margin: 10px;
}
#section1 , #section2 , #section3 , #section4 , #section5{
    width: 100%;
    min-height: 200px;
    position: relative;
    background-image: linear-gradient(to right , #045d7a , #9baef9);
    color: white;
}
.holder1{
    display: flex;
}
img{
    width: 100%;
    height: auto;
}
.img1{
    width: 45%;
}
.bgimage{
    margin: 20px;
    flex: 1;
    animation-name: circle_rotate;
    animation-duration: 6s;
    animation-iteration-count: infinite;
}

.container_sec3{
    display: flex;
    padding: 10px;
    margin: 10px;
}
.left_sec3{
    flex: 1;
}
.right_sec3{
    flex: 3;
    margin: 10px;
    padding: 20px;
}

.container_sec4{
    display: flex;
    padding: 10px;
    margin: 10px;
}
.left_sec4{
    flex: 7;
    margin: 30px;
    padding: 40px;
}
.right_sec4{
    flex: 1;
    margin: 30px;
    padding: 40px;
}

.container_sec5{
    display: flex;
    padding: 10px;
    margin: 10px;
}
.left_sec5{
    flex: 3;
    margin: 30px;
    padding: 40px;
}
.right_sec5{
    flex: 5;
    margin: 30px;
    padding: 40px;
}

.btn-tut{
    background-color: rgba(2, 2, 1, 0);
    color: white;
    margin: 70px 20px;
    padding: 10px;
    border: 2px solid white;
    border-radius: 30px;
}

@keyframes circle_rotate{
    0%{
        filter: blur(2px);
        transform: rotate(0deg);
    }
    30%{
        transform: rotate(720deg);
        filter: blur(0px);
    }
    60%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(0deg);
    }
}

@media(max-width:480px){
    .holder1{
        display: grid;
        grid-template-columns: auto;
    }
    #section1{
        height: 400px;
    }
    .flesh{
        display: none;
    }
    .left_sec4 , .right_sec4{
        margin: 0; padding: 0;
    }
}