﻿
.bookReasons {
    padding: 40px 0 60px;
    background-position: center 65%;
    background-size: cover;
    position: relative;
}

.bookReasons::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.25);
    z-index: 0;
}


.bookReasons .container {
    margin-bottom: 0;
    position: relative; 
    z-index: 2;
}

    .bookReasons h2 {
        color: #fff;
        text-align: center;
        margin-bottom: 30px;
    }

    .bookReasons .reasonElement {
        height: 70px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        margin-bottom: 20px;
    }

        .bookReasons .reasonElement img {
            height: 70px;
            width: 70px;
        }

        .bookReasons .reasonElement p {
            margin-left: 20px;
            margin-bottom: 0px;
            font-size: 18px;
            color: #fff;
            font-weight: 700;
        }


@media screen and (min-width:768px) {
}


@media screen and (min-width:1024px) {
    .bookReasons {
        padding: 50px 0 80px;
    }

        .bookReasons h2 {
            margin-bottom: 50px;
        }
}

@media screen and (max-width: 500px) {
    .bookReasons {
        height: 800px;
    }
        .bookReasons::after {
          width:100%;
            height: 800px;
          } 
        .bookReasons h2{
           /* min-height:350px;*/
        }
}