
    body {
        max-width: 960px;
        margin: auto;
    }

    .box-wrapper {
        display: flex;
        justify-content: space-around;

        height: 100%;
        column-gap: 10px;
        width: 90%;
        margin: auto;
    }

    .box {

        width: calc(32% - 20px);

    }

    .image-box img {
        border: 2px solid #908383;
        border-radius: 20px;
    }

    .quotes-box {
        background-color: #005d69;
        padding: 20px;
        border-radius: 30px;
        position: relative;
        width: 300px;
        height: 400px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .quotes-box p {
        line-height: 1.2;
    }

    .quotes-box span {
        display: block;
    }

    .quotes-box .inverted-comma svg {
        transform: rotate(180deg);
    }

    .quotes-box::after {
        content: "";
        width: 0;
        height: 0;
        border-top: 25px solid transparent;
        border-left: 50px solid #005d69;
        border-bottom: 25px solid transparent;
        position: absolute;
        right: -46px;
        bottom: 42px;
    }


    @media (max-width: 1199px) {
        .text-center-below-md {
            text-align: center;
        }
    }

    .bottom-area {
        display: flex;
        column-gap: 30px;
        align-items: center;
        padding: 30px;
    }

    #HomeSlider.new-slider-500 {
        min-height: min(300px, 100vh) !important;
    }

    @media (max-width: 900px) {
        .text-center-below-md {
            text-align: center;
        }

        .text-box {
            width: 80%;
            margin-top: 30px;
        }

        .box-wrapper {
            flex-wrap: wrap;
        }

        .box-wrapper {
            justify-content: center;
        }

        .image-box {
            width: 300px;

        }


    }

    @media (max-width: 674px) {
        .quotes-box::after {
            right: 21%;
            bottom: -33px;
            transform: rotate(90deg);
        }

        .bottom-area {
            flex-wrap: wrap;
        }

        .text-box {
            width: 90%;

        }

        .image-box {
            
            margin-top: 40px;
        }
    }
