.first_row {
    padding-top: 60px;
    height: 500px;
}

.row {
    width: 100%;
}

.row_pad {
    padding: 40px 20px;
}

.row_padding{
    width: 100%;
    height: 100%;
    max-width: 1280px;
}

.c_image {
    width: 60%;
    height: 100%;
    opacity: 0;
    animation: myimg 0.5s ease-in-out forwards 0.5s;
}

@keyframes myimg {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

img {
    width: 100%;
    height: 100%;
    padding: 30px;
    object-fit: contain;
}

.img_steve {
    border-radius: 30%;
    filter: drop-shadow(8px 8px 10px #333);
}

.c_text {
    color: #ccc;
    width: 40%;
    height: 100%;
    font-size: 40px;
    font-weight: bold;
    text-align: left;
    opacity: 0;
    animation: myimg 0.5s ease-in-out forwards 0.8s;
}

.what {
    width: 100%;
}

.who {
    color: #963;
    margin: 20px;
    font-size: 25px;
    width: 100%;
}

.where{
    margin-bottom: 35px;
    font-size: 20px;
    font-weight: normal;
    width: 100%;
}

.title{
    width: 100%;
    font-weight: bold;
    font-size: 30px;
    padding: 30px;
}

.title_text{
    text-align: left;
    justify-content: left;
}

.title_icon{
    font-size: 3em;
}

.link_button{
    background-color: #80808040;
    border: 2px solid #963;
    color: #963;
    border-radius: 10px;
    margin-top: 40px;
    padding: 10px 30px;
}

.mybreak{
    margin: 20px 0px;
}

.link_button:hover{
    background-color: #80808080;
}

@media screen and (max-width : 768px) {

    .first_row {
        padding-bottom: 25px;
        height: 600px;
    }

    .row_padding {
        flex-direction: column;
    }

    .c_image {
        height: 70%;
        width: 100%;
    }

    .c_text {
        height: 30%;
        width: 100%;
        margin: 20px;
        font-size: 30px;
        text-align: center;
    }

    .title_text{
        text-align: center;
        justify-content: center;
        font-size: 20px;
    }

    .title_icon{
        font-size: 2em;
    }

    .cleft{
        text-align: left;
        justify-content: left;
    }
}