.veteran {
    padding: 70px 0 150px;
    position: relative;
    background-color: #FFF;
    z-index: 1;
}

.veteran .container {
    position: relative;
    z-index: 1;
}

.veteran:before,
.veteran:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 200px;
    background-color: inherit;
    -webkit-transform: skewY(5deg);
            transform: skewY(5deg);
}

.veteran:before {
    top: -100px;
}

.veteran:after {
    bottom: -100px;
}

.veteran__container {
    position: relative;
    padding-right: 200px;
}

.veteran__troop {
    position: absolute;
    bottom: -150px;
    right: 0;
    width: 550px;
    overflow: hidden;
    z-index: 2;
}

.veteran__troop img {
    width: 100%;
    height: auto;
    position: relative;
    left: 50px;
}

.veteran p strong,
.veteran p a {
    color: #971515;
}

.veteran p a {
    padding: 3px;
    box-shadow: inset 0 0 #971515;
    transition: box-shadow 0.3s ease-in-out,
                color 0.3s ease-in-out;
}

.veteran p a:hover {
    color: #FFF;
    box-shadow: inset 0 -100px #971515;
}

.veteran__upper {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.veteran__upper__icon {
    width: 120px;
    margin-right: 20px;
}

.veteran__upper__icon img {
    width: 100%;
    height: auto;
}

.veteran__description p:not(:last-child) {
    margin-bottom: 20px;
}

/*
* Responsive
*/

@media (min-width: 1025px) {
    .veteran__description p {
        font-size: 17px;
        margin-top: 15px;
        line-height: 1.4;
    }
}

@media (max-width: 1025px) {
    .veteran {
        padding: 0 0 10px;
    }

    .veteran .container {
        position: relative;
        z-index: 1;
    }

    .veteran__skew {
        height: 160px;
    }

    .veteran__skew--top {
        top: -150px;
    }

    .veteran__skew--bottom {
        bottom: -150px;
    }

    .veteran__troop {
        width: 394px;
        bottom: -40px;
    }

    .veteran__container {
        padding-right: 200px;
    }

    .veteran__troop img {
        left:  180px;
    }

    .veteran__upper__icon {
        width: 57px;
        margin-right: 0;
        align-self: flex-end;
    }

    .veteran__upper__title h3 {
        text-transform: uppercase;
        letter-spacing: 0.03em;
    }
}

@media (max-width: 600px) {
    .veteran {
        padding: 50px 0;
    }

    .veteran__skew {
        display: none;
    }

    .veteran .container {
        z-index: 3;
    }

    .veteran__upper {
        flex-direction: column;
        justify-content: flex-start;
		align-items: flex-start;
    }

    .veteran__upper__icon {
        align-self: flex-start;
        margin-bottom: 10px;
    }

    .veteran__container {
        padding-right: 0;
        position: relative;
        z-index: 1;
    }

    .veteran__troop {
        width: 140px;
        top: 0;
        bottom: auto;
    }

    .veteran__troop img {
        left: 30px;
    }

    .veteran:before,
    .veteran:after {
        display: none;
    }
}