
/* history page */
.history-grid__wrapper {
    position: relative;
}
.history-grid__wrapper:before {
    position: absolute;
    left: 50%;
    margin-left: -1px;
    height: 100%;
    border-left: 2px dotted rgba(151, 151, 151, 0.88);
    content: "";
}
@media only screen and (max-width: 575px) {
    .history-grid__wrapper:before {
        left: 20px;
    }
}
.history-grid__single-wrapper {
    padding-right: 55px;
    position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .history-grid__single-wrapper {
        padding-right: 30px;
    }
}
@media only screen and (max-width: 575px) {
    .history-grid__single-wrapper {
        padding-left: 50px;
        padding-right: 15px;
        margin-top: 40px;
    }
}
.history-grid__single-wrapper:first-child {
    margin-top: 0;
}
.history-grid__single-wrapper .dot {
    width: 28px;
    height: 28px;
    border-radius: 100%;
    position: absolute;
    top: 0;
    right: -14px;
    background-color: rgba(237, 29, 38, 0.18);
}
@media only screen and (max-width: 575px) {
    .history-grid__single-wrapper .dot {
        left: 6px;
    }
}
.history-grid__single-wrapper .dot:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: rgba(237, 29, 38, 0.29);
}
.history-grid__single-wrapper .dot:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-secondry);
}
.history-grid__single-wrapper:nth-child(2n) {
    padding-left: 55px;
    padding-right: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .history-grid__single-wrapper:nth-child(2n) {
        padding-left: 30px;
    }
}
@media only screen and (max-width: 575px) {
    .history-grid__single-wrapper:nth-child(2n) {
        padding-left: 50px;
        padding-right: 15px;
    }
}
.history-grid__single-wrapper:nth-child(2n) .dot {
    top: 0;
    left: -14px;
}
@media only screen and (max-width: 575px) {
    .history-grid__single-wrapper:nth-child(2n) .dot {
        left: 6px;
    }
}
.history-grid__single-wrapper:nth-child(2n+2) {
    margin-top: 100px;
}
@media only screen and (max-width: 575px) {
    .history-grid__single-wrapper:nth-child(2n+2) {
        margin-top: 40px;
    }
}
.history-grid__single {
    position: relative;
    background: #fff;
    -webkit-box-shadow: 0 5px 40px rgba(0, 0, 0, 0.11);
    box-shadow: 0 5px 40px rgba(0, 0, 0, 0.11);
}
.history-grid__single .content-head {
    padding: 15px 20px;
    background-color: var(--color-primary);
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
}
.history-grid__single .content-body {
    padding: 20px 20px 25px;
}
.history-grid__single .content-body .image {
    margin-bottom: 25px;
}
.history-grid__single .content-body .image img {
    width: 100%;
}