
.container{
    display: flex;
    flex-direction: column;
    width: 100%;
}

.cont-all{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.contentImg{
    display: flex;
    width: 100%;
    min-height: 100vh;
    align-items: center;
}
.contentImg .imageContainer{
    position: relative;
    width: 350px;
    height: 400px;
    border-radius: 100%;
    background: linear-gradient(60deg, #5a8013,#24300c );
}

.imageContainer img{
    position: absolute;
    top: 110px;
    left: -68px;
    width: 385px;
    height: 200px;
    z-index: 1001;
}

.imageContainer video{
    position: absolute;
    top: 115px;
    left: -30px;
    width: 310px;
}

.content {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
}

.content h1{
    font-size: 5rem;
}
.content p{
    color: #858585; 
}


.content .btnfield{
    margin: 30px 0;
    display: flex;
    justify-content: center;
}

.content .btnfield a{
    color: #fff;
    padding: 15px 15px;
    background-color: #5a8013;
    margin: 0 10px;
    border: none;
    border-radius: 10px;
}

@media(max-width: 1150px){
    .content h1{
        font-size: 2rem;
    }
}

@media(max-width: 680px){
    .content h1{
        font-size: 1.5rem;
    }
    .container{
        display: flex;
        flex-direction: column;
    }
    .cont-all{
        flex-wrap: wrap;
    }
    .contentImg{
        margin: -200px 0; 
    }
}

@media(max-width: 550px){ 
    .contentImg{display: none;} 
    .content{
        padding: 10px;
    }
}