@charset "utf-8";
/* ar */
.home .welcome-screen {
    background-color: white;
    position: relative;
    width: 100%;
    height: 100vh;
}

/* S1 */
.home .s1 {
    position: relative;
    background-color: var(--home-s1-bg);
}

    .home .s1 .content-block {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        margin: var(--v-margin-tb-xlg);
    }

        .home .s1 .content-block .title {
            flex: 1;
            flex-grow: 1;
            padding: var(--h-padding-ltr-lg);
        }

        .home .s1 .content-block .text-block {
            flex: 2;
            flex-grow: 3;
        }

/* S2 */
.home .s2 {
    position: relative;
    background-color: var(--home-s2-bg);
}

    .home .s2 .bg-img {
        position: absolute;
        opacity: var(--home-s2-bg-img-opacity);
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: bottom left;
    }

    .home .s2 .content-block {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        width: 100%;
        margin: var(--v-margin-tb-lg);
        /* background-color: maroon; */
    }

    .home .s2 .grid-block {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
        justify-content: space-between;
        align-items: flex-start;
        margin: var(--v-margin-t-md);
        /* background-color: lime; */
    }

        .home .s2 .grid-block li {
            width: calc(33.3333333% - 50px);
            text-align: center;
            margin-top: 5px;
        }

        .home .s2 .grid-block.foor-rows li {
            width: calc(25% - 50px);
        }

        .home .s2 .grid-block li a {
            font-weight: bold;
            display: inline-block;
            padding: 20px 0px;
            width: 100%;
            border-radius: 15px;
            background-color: rgba(255, 255, 255, 0.7);
        }

            .home .s2 .grid-block li a:hover {
                color: white;
                background-color: var(--cta-invertable-bg-color);
            }

/* s3 */
.home .s3 {
    position: relative;
    overflow: hidden;
    /* background-attachment: fixed; */
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
}

.home .s3 .content-block {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: var(--v-margin-tb-xlg);
    /* background-color: maroon; */
}

    .home .s3 .content-block .title {
        font-weight: bold;
        font-size: 2.8rem;
        color: var(--primary-color);
    }

        .home .s3 .content-block .title span {
            color: var(--primary-color);
        }

    .home .s3 .content-block form {
        width: 400px;
    }

.enquiry-form {
    text-align: center;
    margin: var(--v-margin-t-md);
}
/*-------------Responsive------------------*/
@media only screen and (max-width: 1200px) {
    /* s2 */
    .home .s2 .grid-block.foor-rows li {
        width: calc(25% - 25px);
    }
}

/* Medium Devices, Desktops */
@media only screen and (max-width: 992px) {
    /* s1 */
    .home .s1 .content-block {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

        .home .s1 .content-block .title {
            flex: 1;
            flex-grow: 1;
            padding: 0;
        }

        .home .s1 .content-block .text-block {
            flex: 2;
            flex-grow: 1;
            margin: var(--v-margin-t-md);
        }
    /* s2 */
    .home .s2 .grid-block li,
    .home .s2 .grid-block.foor-rows li {
        width: calc(50% - 25px);
    }

        .home .s2 .grid-block li a {
            font-size: 0.9rem;
        }
}

/* Small Devices, Tablets */
@media only screen and (max-width: 820px) {
    /* s1 */
    .home .s1 .content-block {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: var(--v-margin-tb-lg);
    }

        .home .s1 .content-block .title {
            text-align: center;
        }

        .home .s1 .content-block .text-block {
            text-align: center;
        }
    /* s2 */
    .home .s2 .content-block {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: var(--v-margin-tb-lg);
    }

    .home .s2 .grid-block li,
    .home .s2 .grid-block.foor-rows li {
        text-align: center;
        margin-top: 5px;
        width: calc(50% - 15px);
    }

    /* s3 */
    .home .s3 .content-block .title {
        font-size: 2.2rem;
    }
    /* s3 */
    .home .s3 {
        background-attachment: initial;
        background-position: center center;
    }
    /* tuhin */
    .home .welcome-screen {
        height: 78vh;
    }

        .home .welcome-screen .carousel-item {
            height: 75vh;
        }
}
/* Extra Small Devices, Phones */
@media only screen and (max-width: 480px) {
    /* s2 */
    .home .s2 .grid-block li,
    .home .s2 .grid-block.foor-rows li {
        width: 100%;
        text-align: center;
        margin-top: 5px;
    }

    .home .s2 .content-block {
        margin: var(--v-margin-tb-md);
    }

    /* s3 */
    .home .s3 .content-block .title {
        font-size: 1.8rem;
    }

    .home .s3 .content-block form {
        width: 90%;
    }
}
/* Custom, iPhone Retina */
@media only screen and (max-width: 320px) {
}
