*{
    padding: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
}

body {
    background: #0A0C1B;

    padding-top: 150px;
}

.container {
    width: 70%;
    height: 320px;
    margin: auto;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;


}

.container1{
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;

    justify-content: space-between;
    align-items: left;

    background-color: #1C1938;
    padding: 30px 60px;

    border-radius: 5px 0 0 5px;
}

.container1 h1 {
    font-size: 35px;
    font-weight: 600;

    color: #ffffff;
}

.container1 h1 span {
    color: purple;
}

.container1 p {
    font-size: 16px;
    font-weight: 400;
    color: grey;
}

.container1 .end {
    width: 90%;
    height: 35px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;

}

.end1, 
.end2,
.end3 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#en h3{
    font-size: 25px;
    font-weight: 600;
    color:#ffffff;
}

#en h6{
    font-size: 12px;
    font-weight: 300;
    color: grey;
    text-transform: uppercase;
}

.container2 {
    width: 50%;
    height: 100%;

    background-image: url(./images/image-header-desktop.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #A25CD0;
    background-blend-mode: multiply;

    border-radius: 0 5px 5px 0;
}


@media (max-width:769px){
        body {
            padding-top: 10px;
        }
        .container{
            width: 100% !important;
            height: 100vh;
            flex-direction: column-reverse;
        }

        .container1 {
            height: 50% !important;
            padding: 30px 35px;
            border-radius: 0 0 8px 8px;
        }

        .container1 h1{
            font-size: 25px;
            text-align: center !important;
        }

        .container1 p{
            text-align: center;
        }
        .container1 .end {
            width: 100%;
        }
        .container2 {
            height: 35% !important;
            border-radius: 8px 8px 0 0;

        }
}

@media (max-width:575px){
    .container1 {
        width: 80%;
        height: 55% !important;
        padding: 30px 20px;
    }

    .container1 h1 {
        font-size: 33px !important;
    }

    .container1 p {
        font-size: 16.5px;
    }
    .container1 .end {
        width: 25% !important;
        height: 180px !important;
        flex-direction: column !important;
        margin: 0 auto;
    }

    .container2 {
        width: 80%;
    }
}

@media (max-width:378px){
    body {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }
    .container1 {
        height: 65% !important;
        padding: 30px 20px 10px 20px;
    }

    .container1 h1 {
        font-size: 29px !important;
    }
}