* {
    padding: 0;
    margin: 0;
    font-family: 'Lato', sans-serif;
}

body {
    background: linear-gradient(to right, #00093c, #2d0b00);
}

h2 {
        font-size: 25px;
        text-align: center;
        color: aqua;
        margin-bottom: 50px;
}
    
h2::after {
        content: "";
        height: 5px;
        width: 550px;
        background-color: #ec0c0c;
        border-radius: 25px;
        display: block;
        margin: auto;
}

h2.reg:after {
        content: "";
        height: 5px;
        width: 250px;
        background-color: #ec0c0c;
        border-radius: 25px;
        display: block;
        margin: auto;
}

.mvv-container {
    max-width: 90%;
    margin: 50px auto 0;
}

.mvv-container .mvv-block {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.mvv-container .mvv-block .image {
    flex: 0 0 auto;
    width: 400px;
}

.mvv-container .mvv-block .image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.mvv-container .mvv-block .image:hover img {
    transform: scale(1.05);
}

.mvv-container .mvv-block .content {
    flex: 0 0 auto;
    width: calc(100% - 400px);
    color: #fff;
    box-sizing: border-box;
    align-self: center;
}

.mvv-container .mvv-block .content h5 {
    font-weight: 700;
    font-size: 25px;
    color: aquamarine;
    margin-bottom: 10px;
}

.mvv-container .mvv-block .content p {
    font-size: 15px;

}

.mvv-container .mvv-block .image {
    flex: 0 0 auto;
    width: 400px;
}

.reg-pic {
    display: flex;
    flex-direction: row;
}

.reg-pic img {
    width: 25%;
    height: 25%;
    border-radius: 5px;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.3);
    padding-left: 12px;
}

.reg-pic .pan img {
    width: 98%;
    height: 50%;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.3);
    padding-left: 12px;
    padding-right: 12px;
}

.reg-pic .sos-10ac img {
    width: 550px;
    height: 100%;
    border-radius: 5px;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.3);
}

@media screen and (min-width: 1024px) {
    .mvv-container .mvv-block:nth-child(odd) .image {
        order: 1;
    }

    .mvv-container .mvv-block:nth-child(even) .image {
        order: 2;
    }

    .mvv-container .mvv-block:nth-child(odd) .content {
        order: 2;
        padding-left: 30px;
    }

    .mvv-container .mvv-block:nth-child(even) .content {
        order: 1;
        padding-right: 30px;
    }

}

@media (max-width:700px) {
    h2 {
        font-size: 27px;
        margin-top: auto;
    }

    h2::after {
        width: 250px;
    }

    h2.about {
        display: none;
    }

    .mvv-container .mvv-block .image {
        display: none;

    }

    .mvv-container .mvv-block:nth-child(odd) .content {
        display: none;
    }

    .mvv-container .mvv-block:nth-child(even) .content {
        display: none;
    }

    .reg-pic {
        display: flex;
        flex-direction: column;
    }

    .reg-pic img {
        width: 100%;
        height: 100%;
    }

    .reg-pic .sos-10ac img {
        width: 100%;
        height: 100%;
    }
}