.header {
    background-image: url('../image/modes_header.jpg');
    min-height: 450px;
}

.header .title {
    color: #fff;
    font-size: 70px;
    font-weight: 800;
}

.content {
    background-color: #15163E;
    padding: 10px 100px;
}

.content-image {
    background-image: url('../image/modes-main.png');
    background-repeat: no-repeat;
    background-size: cover;
    width: 1250px;
    height: 1000px;
}

.content .title {
    font-size: 40px;
    color: #fff;
    margin-top: 50px;
    font-weight: 400;
}

.cards {
    margin: 30px 0 -130px;
}

.content-card {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    padding: 50px 75px;
    width: 30%;
    text-align: end;
    border: 10px solid;
    border-image-slice: 1;
    border-width: 2px;
    border-image-source: linear-gradient(to bottom, #fff, #15163E);
    border-bottom: none;
}

.content-card:last-child {
    align-items: flex-start;
    text-align: start;
}

.content-card button {
    font-size: 16px;
    color: #fff;
    padding: 8px 40px;
    text-align: center;
    background: #15163E;
    border: 1px solid #fff;
}

.content p {
    color: #D5D6EC;
    font-size: 14px;
    font-weight: 300;
    margin: 25px 0;
}


.content .content-card h1 {
    color: #44CEF5;
    font-size: 25px;
    font-weight: 600;
}

@media (max-width:1024px) { 
    .content-card {
        width: 100%;
    }

    .cards {
        flex-direction: column;
        margin: 0;
    }

    .content-card:first-child {
        align-items: flex-start;
        text-align: start;
    }

    .content-image {
        background-size: contain;
    }

}

@media (max-width:768px) { 
    .content .title {
        font-size: 25px;
        margin-top: 30px;
        margin-bottom: 30px;
        font-weight: 400;
    }

    .content-card {
        width: 100%;
    }

    .cards {
        flex-direction: column;
        margin: 0;
    }

    .content-card:first-child {
        align-items: flex-start;
        text-align: start;
    }

    .content-image {
        background-size: cover;
        height: 440px;
    }

    .content {
        padding: 10px 50px;
    }

    .header .title {
        font-size: 40px;
        font-weight: 800;
    }

    .header {
        min-height: 300px;
        background-position: center center;
    }
}


@media screen and (max-width: 512px) {
    .header .title {
        font-size: 30px;
    }

    .content .title {
        font-size: 18px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .content-card {
        padding: 20px 35px;
    }

    .content .content-card h1 {
        font-size: 18px;
    }

    .content-image {
        height: 275px;
    }

    .content p {
        margin: 15px 0;
    }
}