/*******************Reset Css****************/
/* ----------------------------------------------------------------------------
------------------------------------------------------------------------------- */

.container-max {
    margin: 0 auto;
    max-width: 1600px;
    padding-left: 15px;
    padding-right: 15px;
}

body {
    font-weight: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
}

p,
ul li {
    font-family: 'Syke';
    font-weight: 300;
    font-size: 18px;
}

h1,
.h1 {
    font-size: 80px;
    margin-bottom: 30px;
    font-family: 'Syke';
    font-weight: 300;
}

h2,
.h2 {
    font-size: 60px;
    margin-bottom: 40px;
    font-family: 'Syke';
    font-weight: 400;
}

h3,
.h3 {
    font-size: 36px;
    margin-bottom: 20px;
    font-family: 'Syke';
    font-weight: 400;
}

h4,
.h4 {
    font-size: 32px;
    margin-bottom: 20px;
    font-family: 'Syke';
    font-weight: bold;
}

h5,
.h5 {
    font-size: 24px;
    margin-bottom: 15px;
    font-family: 'Syke';
    font-weight: bold;
}

h6,
.h6 {
    font-size: 20px;
    margin-bottom: 10px;
    font-family: 'Syke';
    font-weight: 700;
}

.mainH {
    font-size: 160px;
}

.bigH {
    font-size: 96px;
    margin-bottom: 50px;
    font-weight: bold;
}

.whiteBox {
    * {
        color: var(--white);
    }
}

.skyBox {
    * {
        color: var(--sky);
    }
}

.sdgList {
    li {
        width: 120px;

        &:not(:last-child) {
            margin-right: 10px;
            margin-bottom: 10px;
        }

        img {
            width: 100%;
        }
    }
}

.brBtm_1 {
    border-bottom: 1px solid #fff;
}

.eachIconH {
    .eachIconH_inn {
        padding-top: 20px;
        padding-left: 20px;
        position: relative;

        &::before {
            top: 0;
            left: 0;
            height: 2px;
            content: '';
            width: 80px;
            position: absolute;
            background-color: #939598;
        }

        &:after {
            top: -5px;
            left: 80px;
            height: 14px;
            width: 14px;
            content: '';
            border-radius: 50%;
            position: absolute;
            background-color: #939598;
        }

        .numMain {
            font-size: 40px;
            line-height: 1;
            font-weight: 400;
            margin-bottom: 10px;
            display: flex;
            align-items: flex-end;
            gap: 5px;

            span {
                font-size: 20px;
                font-weight: 400;
            }

            .rupee {
                font-size: 28px;
            }
        }

        .numText {
            font-size: 18px;
            font-weight: 400;
        }

        .notiText {
            display: flex;
            font-size: 14px;
        }

        .counterText {
            padding-top: 10px;
            line-height: 0.8;
        }
    }
}


.z_1 {
    z-index: 1;
}

.arHead_title {
    justify-content: space-between;
    align-items: flex-end;

    h2 {
        font-weight: 400;
    }
}

.sticky {
    position: sticky !important;
    top: 80px;
}

.bg_green_box {
    background-size: cover;
    background-position: 0 0;
    background-repeat: no-repeat;
    border-radius: 0 20px 20px 0;
    background-image: url(../images/greenBg-of-text.jpg);

    .rel {
        padding-top: 20px;

        &:before {
            top: 0;
            left: 0;
            content: '';
            height: 5px;
            width: 150px;
            position: absolute;
            background-color: var(--skyLt_2);
        }
    }
}


/* box shadow */
.boxShadow {
    padding: 10px;
    border-radius: 0px;
    box-shadow: 0 0 10px #00844952;
}

/* image Box */
.imgBox {
    width: 100%;
    height: auto;

    figure {
        width: 100%;
        display: block;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    a[data-fancybox] {
        position: relative;
        display: block;
        width: 100%;
        height: 100%;

        &:after {
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
            content: "";
            transition: 0.6s;
            border-radius: 0px;
            position: absolute;
            transform: scale(0);
            background: #00844941;
        }

        &:hover {
            /* padding: 10px; */

            &:after {
                transform: scale(1);
            }
        }
    }
}

/* table */
.tableWrap {
    .tableInner {
        table {
            width: 100%;

            th,
            td {
                padding: 10px;
            }

            th {
                font-family: 'Syke';
                font-weight: bold;

                &.br_btm_2 {
                    border-bottom: 2px solid var(--finBlue);
                }
            }

            td {
                border-bottom: 2px solid #a2a4aa;
            }
        }
    }
}

.fixed_layout {
    table-layout: fixed;
}

.arHead {
    .arHeadT {
        font-size: 60px;
        font-family: 'Syke';
        font-weight: normal;
    }

    p {
        font-size: 24px;
    }
}

/* Common List */
.customList {
    li {
        position: relative;
        padding-left: 30px;

        &:not(:last-child) {
            margin-bottom: 12px;
        }

        &::before {
            content: '';
            position: absolute;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            left: 0;
            top: 8px;
            background-size: contain;
            background-repeat: no-repeat;
            background-image: url(../images/listBg_gr.png);
        }

        ul {
            li {
                &::before {
                    background-image: url(../images/listBg_2.png);
                }
            }
        }
    }

    &.splList {
        li {
            &::before {
                background-image: url(../images/listBg_2.png);
            }
        }
    }
}

.commonList {
    li {
        padding-left: 0px;
        position: relative;

        &:not(:last-child) {
            margin-bottom: 12px;
        }

        span {
            display: inline-block;

            &.span {
                width: 14px;
                height: 14px;
                margin-right: 10px;

                &.circleBg {
                    padding-left: 10px;
                    border-radius: 50%;
                    background-color: #b2d235;
                }

                &.squareBg {
                    padding-left: 10px;
                    border-radius: 0%;
                    background-color: #008449;
                }
            }
        }

        &.df {
            align-items: flex-start;
            flex-wrap: wrap;

            .span {
                top: 6px;
                margin-right: 0;
                position: relative;
            }

            .fz_14 {
                padding-left: 10px;
                width: calc((100% - 14px));
            }
        }
    }
}

/* QuoteBox */
.quoteBox {
    padding-top: 50px;
    margin-bottom: 30px;

    .quoteBoxInn {
        position: relative;
        padding: 20px 20px 0 0;

        p {
            font-size: 28px;
            font-family: 'Syke';
            font-weight: normal;
            text-align: justify;
        }

        &:before,
        &:after {
            content: '';
            position: absolute;
            background-size: contain;
            background-repeat: no-repeat;
        }

        &:before {
            top: -48px;
            left: 0;
            width: 64px;
            height: 54px;
            background-image: url(../images/quoteOpen.png);
        }

        &:after {
            top: 0px;
            right: 0;
            height: 5px;
            width: calc(100% - 75px);
            background-color: #84bbe0;
        }
    }

}



.grad_greenH {
    background: #008449;
    background: linear-gradient(90deg, rgba(0, 132, 73, 1) 0%, rgba(231, 229, 25, 1) 100%);
}

.grad_paleV {
    background: #e7e618;
    background: linear-gradient(180deg, #f6f5a9 0%, #f6f5a900 100%);
}

.grad_paleV_2 {
    background: #e7e618;
    background: linear-gradient(180deg, #fafacf 0%, #fafacf00 100%);
}

.grad_paleH_1 {
    background: #d3e4d8;
    background: linear-gradient(180deg, #d3e4d8 0%, #fafad1 100%);
}

/* Responsive */
@media (max-width: 1600px) {
    .customList {
        li {
            padding-left: 25px;

            &::before {
                width: 14px;
                height: 14px;
                top: 5px;
            }
        }
    }
}

@media screen and (max-width: 1536px) {

    body{
        font-size: 16px;
    }

    p,
    ul li {
        font-size: 16px;
    }

    .tableWrap {
        .tableInner {
            table {

                th,
                td {
                    font-size: 14px;
                }
            }
        }
    }
}


@media screen and (max-width: 1366px) {

    h1,
    .h1 {
        font-size: 60px;
    }

    h2,
    .h2 {
        font-size: 40px;
    }

    h3,
    .h3 {
        font-size: 30px;
    }

    h4,
    .h4 {
        font-size: 28px;
    }

    h5,
    .h5 {
        font-size: 20px;
    }

    h6,
    .h6 {
        font-size: 18px;
    }

    body{
        font-size: 14px;
    }

    p,
    ul li {
        font-size: 14px;
    }

    .arHead {
        p {
            font-size: 20px;
        }
    }

    .fz_16{
        font-size: 14px !important;
    }
}


/* ---- utility replacing an inline border-radius (CSP: no inline styles) ---- */
.rad_20_i {
    border-radius: 20px !important;
}
