/* Minification failed. Returning unminified contents.
(3149,27): run-time error CSS1038: Expected hex color, found '#ffff'
(7585,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(9183,44): run-time error CSS1019: Unexpected token, found ' '
(9183,44): run-time error CSS1019: Unexpected token, found ' '
(9183,44): run-time error CSS1042: Expected function, found ' '
(9183,44): run-time error CSS1062: Expected semicolon or closing curly-brace, found ' '
(10160,33): run-time error CSS1038: Expected hex color, found '#2626'
 */
/* @font-face {
    font-family: 'calibri-bold';
    src: url('/Content/css/fonts/Calibri-Bold.eot');
    src: url('/Content/css/fonts/Calibri-Bold.eot?#iefix') format('embedded-opentype'), url('/Content/css/fonts/Calibri-Bold.woff2') format('woff2'), url('/Content/css/fonts/Calibri-Bold.woff') format('woff'), url('/Content/css/fonts/Calibri-Bold.ttf') format('truetype'), url('/Content/css/fonts/Calibri-Bold.svg#Calibri-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'calibri';
    src: url('/Content/css/fonts/Calibri.eot');
    src: url('/Content/css/fonts/Calibri.eot?#iefix') format('embedded-opentype'), url('/Content/css/fonts/Calibri.woff2') format('woff2'), url('/Content/css/fonts/Calibri.woff') format('woff'), url('/Content/css/fonts/Calibri.ttf') format('truetype'), url('/Content/css/fonts/Calibri.svg#Calibri') format('svg');
    font-weight: normal;
    font-style: normal;
} */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');

/*Reset CSS*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -ms-font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    outline: none;
}

input, select, option {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    outline: none;
    background: #000;
}

    select::-ms-expand {
        display: none;
    }

    input[type=number] {
        -moz-appearance: textfield;
    }

        input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

::-webkit-input-placeholder {
    opacity: 1 !important;
}

::-moz-placeholder {
    opacity: 1 !important;
}

:-ms-input-placeholder {
    opacity: 1 !important;
}

:-moz-placeholder {
    opacity: 1 !important;
}

input:focus, textarea:focus, select:focus {
    background-color: transparent;
}

body {
    font-family: 'Poppins';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    border: none;
    outline: none;
    text-decoration: none;
}

html, body {
    height: 100%;
}
/*Reset CSS*/

.loaderwrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #243746;
    z-index: 999
}

    .loaderwrapper .loaderband {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        text-align: center;
        width: 100%;
    }

        .loaderwrapper .loaderband > span {
            display: inline-block;
            margin: 0 auto;
            padding: 6px 6px 8px 6px;
            /*background-color: #ef4023;*/
            width: 100%;
        }

            .loaderwrapper .loaderband > span img {
                max-width: 130px;
            }

.loadercontainer {
    display: inline-block;
    position: relative;
    width: 100%;
    margin-top: 40px;
}

    .loadercontainer .dots {
        display: inline-block;
        position: relative;
        vertical-align: middle;
    }

        .loadercontainer .dots:not(:last-child) {
            margin-right: 9px;
        }

        .loadercontainer .dots:before, .dots:after {
            content: "";
            display: inline-block;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            position: absolute;
        }

        .loadercontainer .dots:nth-child(1):before {
            -webkit-transform: translateY(-200%);
            transform: translateY(-200%);
            -webkit-animation: animBefore 1s linear infinite;
            animation: animBefore 1s linear infinite;
            -webkit-animation-delay: -0.9s;
            animation-delay: -0.9s;
            background-color: #F00;
        }

        .loadercontainer .dots:nth-child(1):after {
            -webkit-transform: translateY(200%);
            transform: translateY(200%);
            -webkit-animation: animAfter 1s linear infinite;
            animation: animAfter 1s linear infinite;
            -webkit-animation-delay: -0.9s;
            animation-delay: -0.9s;
            background-color: #777;
        }

        .loadercontainer .dots:nth-child(2):before {
            -webkit-transform: translateY(-200%);
            transform: translateY(-200%);
            -webkit-animation: animBefore 1s linear infinite;
            animation: animBefore 1s linear infinite;
            -webkit-animation-delay: -1.8s;
            animation-delay: -1.8s;
            background-color: #F00;
        }

        .loadercontainer .dots:nth-child(2):after {
            -webkit-transform: translateY(200%);
            transform: translateY(200%);
            -webkit-animation: animAfter 1s linear infinite;
            animation: animAfter 1s linear infinite;
            -webkit-animation-delay: -1.8s;
            animation-delay: -1.8s;
            background-color: #777;
        }

        .loadercontainer .dots:nth-child(3):before {
            -webkit-transform: translateY(-200%);
            transform: translateY(-200%);
            -webkit-animation: animBefore 1s linear infinite;
            animation: animBefore 1s linear infinite;
            -webkit-animation-delay: -2.7s;
            animation-delay: -2.7s;
            background-color: #F00;
        }

        .loadercontainer .dots:nth-child(3):after {
            -webkit-transform: translateY(200%);
            transform: translateY(200%);
            -webkit-animation: animAfter 1s linear infinite;
            animation: animAfter 1s linear infinite;
            -webkit-animation-delay: -2.7s;
            animation-delay: -2.7s;
            background-color: #777;
        }

        .loadercontainer .dots:nth-child(4):before {
            -webkit-transform: translateY(-200%);
            transform: translateY(-200%);
            -webkit-animation: animBefore 1s linear infinite;
            animation: animBefore 1s linear infinite;
            -webkit-animation-delay: -3.6s;
            animation-delay: -3.6s;
            background-color: #F00;
        }

        .loadercontainer .dots:nth-child(4):after {
            -webkit-transform: translateY(200%);
            transform: translateY(200%);
            -webkit-animation: animAfter 1s linear infinite;
            animation: animAfter 1s linear infinite;
            -webkit-animation-delay: -3.6s;
            animation-delay: -3.6s;
            background-color: #777;
        }

        .loadercontainer .dots:nth-child(5):before {
            -webkit-transform: translateY(-200%);
            transform: translateY(-200%);
            -webkit-animation: animBefore 1s linear infinite;
            animation: animBefore 1s linear infinite;
            -webkit-animation-delay: -4.5s;
            animation-delay: -4.5s;
            background-color: #F00;
        }

        .loadercontainer .dots:nth-child(5):after {
            -webkit-transform: translateY(200%);
            transform: translateY(200%);
            -webkit-animation: animAfter 1s linear infinite;
            animation: animAfter 1s linear infinite;
            -webkit-animation-delay: -4.5s;
            animation-delay: -4.5s;
            background-color: #777;
        }

        .loadercontainer .dots:nth-child(6):before {
            -webkit-transform: translateY(-200%);
            transform: translateY(-200%);
            -webkit-animation: animBefore 1s linear infinite;
            animation: animBefore 1s linear infinite;
            -webkit-animation-delay: -5.4s;
            animation-delay: -5.4s;
            background-color: #F00;
        }

        .loadercontainer .dots:nth-child(6):after {
            -webkit-transform: translateY(200%);
            transform: translateY(200%);
            -webkit-animation: animAfter 1s linear infinite;
            animation: animAfter 1s linear infinite;
            -webkit-animation-delay: -5.4s;
            animation-delay: -5.4s;
            background-color: #777;
        }

        .loadercontainer .dots:nth-child(7):before {
            -webkit-transform: translateY(-200%);
            transform: translateY(-200%);
            -webkit-animation: animBefore 1s linear infinite;
            animation: animBefore 1s linear infinite;
            -webkit-animation-delay: -6.3s;
            animation-delay: -6.3s;
            background-color: #F00;
        }

        .loadercontainer .dots:nth-child(7):after {
            -webkit-transform: translateY(200%);
            transform: translateY(200%);
            -webkit-animation: animAfter 1s linear infinite;
            animation: animAfter 1s linear infinite;
            -webkit-animation-delay: -6.3s;
            animation-delay: -6.3s;
            background-color: #777;
        }

        .loadercontainer .dots:nth-child(8):before {
            -webkit-transform: translateY(-200%);
            transform: translateY(-200%);
            -webkit-animation: animBefore 1s linear infinite;
            animation: animBefore 1s linear infinite;
            -webkit-animation-delay: -7.2s;
            animation-delay: -7.2s;
            background-color: #F00;
        }

        .loadercontainer .dots:nth-child(8):after {
            -webkit-transform: translateY(200%);
            transform: translateY(200%);
            -webkit-animation: animAfter 1s linear infinite;
            animation: animAfter 1s linear infinite;
            -webkit-animation-delay: -7.2s;
            animation-delay: -7.2s;
            background-color: #777;
        }

        .loadercontainer .dots:nth-child(9):before {
            -webkit-transform: translateY(-200%);
            transform: translateY(-200%);
            -webkit-animation: animBefore 1s linear infinite;
            animation: animBefore 1s linear infinite;
            -webkit-animation-delay: -8.1s;
            animation-delay: -8.1s;
            background-color: #F00;
        }

        .loadercontainer .dots:nth-child(9):after {
            -webkit-transform: translateY(200%);
            transform: translateY(200%);
            -webkit-animation: animAfter 1s linear infinite;
            animation: animAfter 1s linear infinite;
            -webkit-animation-delay: -8.1s;
            animation-delay: -8.1s;
            background-color: #777;
        }

        .loadercontainer .dots:nth-child(10):before {
            -webkit-transform: translateY(-200%);
            transform: translateY(-200%);
            -webkit-animation: animBefore 1s linear infinite;
            animation: animBefore 1s linear infinite;
            -webkit-animation-delay: -9s;
            animation-delay: -9s;
            background-color: #F00;
        }

        .loadercontainer .dots:nth-child(10):after {
            -webkit-transform: translateY(200%);
            transform: translateY(200%);
            -webkit-animation: animAfter 1s linear infinite;
            animation: animAfter 1s linear infinite;
            -webkit-animation-delay: -9s;
            animation-delay: -9s;
            background-color: #777;
        }

@-webkit-keyframes animBefore {
    0% {
        -webkit-transform: scale(1) translateY(-200%);
        z-index: 1;
    }

    25% {
        -webkit-transform: scale(1.3) translateY(0);
        z-index: 1;
    }

    50% {
        -webkit-transform: scale(1) translateY(200%);
        z-index: -1;
    }

    75% {
        -webkit-transform: scale(0.7) translateY(0);
        z-index: -1;
    }

    100% {
        -webkit-transform: scale(1) translateY(-200%);
        z-index: -1;
    }
}

@keyframes animBefore {
    0% {
        transform: scale(1) translateY(-200%);
        z-index: 1;
    }

    25% {
        transform: scale(1.3) translateY(0);
        z-index: 1;
    }

    50% {
        transform: scale(1) translateY(200%);
        z-index: -1;
    }

    75% {
        transform: scale(0.7) translateY(0);
        z-index: -1;
    }

    100% {
        transform: scale(1) translateY(-200%);
        z-index: -1;
    }
}

@-webkit-keyframes animAfter {
    0% {
        -webkit-transform: scale(1) translateY(200%);
        z-index: -1;
    }

    25% {
        -webkit-transform: scale(0.7) translateY(0);
        z-index: -1;
    }

    50% {
        -webkit-transform: scale(1) translateY(-200%);
        z-index: 1;
    }

    75% {
        -webkit-transform: scale(1.3) translateY(0);
        z-index: 1;
    }

    100% {
        -webkit-transform: scale(1) translateY(200%);
        z-index: 1;
    }
}

@keyframes animAfter {
    0% {
        transform: scale(1) translateY(200%);
        z-index: -1;
    }

    25% {
        transform: scale(0.7) translateY(0);
        z-index: -1;
    }

    50% {
        transform: scale(1) translateY(-200%);
        z-index: 1;
    }

    75% {
        transform: scale(1.3) translateY(0);
        z-index: 1;
    }

    100% {
        transform: scale(1) translateY(200%);
        z-index: 1;
    }
}

body {
    line-height: 1.2;
}


* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-font-smoothing: antialiased;
    -ms-font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    outline: none;
}

strong {
    font-weight: 600;
}

nav,
nav .nav-wrapper i,
nav a.sidenav-trigger,
nav a.sidenav-trigger i,
.hamburger {
    height: 72px;
    line-height: 72px;
}

header nav {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 999;
    background-color: #243746;
}

.hamburger {
    padding: 0 30px;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
    width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    display: -webkit-flex;
    -webkit-align-content: center;
    -webkit-justify-content: center;
    border-right: 1px solid #2d4456;
    float: left;
    position: relative;
    overflow: hidden;
}

    .hamburger:hover {
        opacity: 0.7;
    }

.hamburger-box {
    width: 30px;
    height: 18px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: 0;
}

    .hamburger-inner,
    .hamburger-inner::before,
    .hamburger-inner::after {
        width: 30px;
        height: 2px;
        background-color: #fff;
        border-radius: 2.5px;
        position: absolute;
        transition-property: transform;
        transition-duration: 0.15s;
        transition-timing-function: ease;
    }

        .hamburger-inner::before,
        .hamburger-inner::after {
            content: "";
            display: block;
        }

        .hamburger-inner::before {
            top: -8px;
        }

        .hamburger-inner::after {
            bottom: -8px;
        }

.hamburger--arrowalt .hamburger-inner::before {
    transition: top 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt .hamburger-inner::after {
    transition: bottom 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt.is-active .hamburger-inner::before {
    top: 0;
    transform: translate3d(-8px, -7px, 0) rotate(-45deg) scale(0.7, 1);
    -webkit-transform: translate3d(-8px, -7px, 0) rotate(-45deg) scale(0.7, 1);
    transition: top 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowalt.is-active .hamburger-inner::after {
    bottom: 0;
    transform: translate3d(-8px, 7px, 0) rotate(45deg) scale(0.7, 1);
    -webkit-transform: translate3d(-8px, 7px, 0) rotate(45deg) scale(0.7, 1);
    transition: bottom 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.mainlogo {
    display: inline-block;
    height: 100%;
    /* width: 237px; */
    float: left;
    line-height: 0;
}

    .mainlogo a {
        display: inline-block;
        height: 100%;
        width: auto;
        padding: 6px 30px;
        border-right: 1px solid #2d4456;
    }

    .mainlogo img {
        height: 100%;
        width: auto;
        margin-top: -5px;
    }

.social-link {
    display: inline-block;
    height: 100%;
    float: right;
    padding: 0 30px;
    border-left: 1px solid #2d4456;
}

    .social-link ul {
        display: inline-block;
        height: 100%;
    }

        .social-link ul li {
            height: 100%;
            padding: 0 4px;
            overflow: hidden;
            line-height: 64px;
        }

            .social-link ul li a {
                display: inline-block;
                width: 40px;
                height: 40px;
                line-height: 40px;
                background-color: #476c8a;
                text-align: center;
                border-radius: 50%;
                padding: 0;
                position: relative;
                vertical-align: middle;
                overflow: hidden;
                margin: 0;
                box-shadow: none;
            }

                .social-link ul li a i {
                    height: 40px;
                    line-height: 40px;
                    font-size: 17px;
                    position: relative;
                    z-index: 2;
                }

            .social-link ul li .btn-floating.facebook:hover,
            .social-link ul li .btn-floating.facebook.btn-floating:focus {
                background-color: #2970b1;
            }

            .social-link ul li .btn-floating.twitter:hover,
            .social-link ul li .btn-floating.twitter.btn-floating:focus {
                background-color: #00b6f1;
            }

            .social-link ul li .btn-floating.linkedin:hover,
            .social-link ul li .btn-floating.linkedin.btn-floating:focus {
                background-color: #026194;
            }

            .social-link ul li .btn-floating.youtube:hover,
            .social-link ul li .btn-floating.youtube.btn-floating:focus {
                background-color: #ba202e;
            }

            .social-link ul li .btn-floating.instagram:hover,
            .social-link ul li .btn-floating.instagram.btn-floating:focus {
                background-color: #ba202e;
            }

.top-search {
    display: inline-block;
    float: right;
    height: 100%;
    max-width: 340px;
    width: 100%;
    border-left: 1px solid #2d4456;
}

    .top-search .input-field input[type="search"] {
        height: 100%;
        border-bottom: none;
        padding: 0 65px 0 36px;
        box-sizing: border-box;
        margin: 0;
        font-size: 17px;
    }

    .top-search input[type="search"]:not(.browser-default):focus:not([readonly]) {
        border-bottom: 0 !important;
        box-shadow: none !important;
    }

    .top-search .input-field input[type="search"] + .label-icon {
        right: 28px;
        left: inherit;
        height: 100%;
    }

    .top-search .input-field input[type="search"] ~ .mdi-navigation-close,
    .top-search .input-field input[type="search"] ~ .material-icons,
    nav .top-search .input-field label i {
        height: 72px;
        line-height: 72px;
        font-size: 32px;
    }

    .top-search .input-field input[type="search"] ~ .mdi-navigation-close,
    .top-search .input-field input[type="search"] ~ .material-icons {
        left: 30px;
        right: inherit;
        display: none;
    }

    .top-search ::-webkit-input-placeholder {
        /* Chrome/Opera/Safari */
        color: #476c8a;
    }

    .top-search ::-moz-placeholder {
        /* Firefox 19+ */
        color: #476c8a;
    }

    .top-search :-ms-input-placeholder {
        /* IE 10+ */
        color: #476c8a;
    }

    .top-search :-moz-placeholder {
        /* Firefox 18- */
        color: #476c8a;
    }

.offside-js--is-open {
    overflow: hidden;
}

.lang {
    display: inline-block;
    float: right;
    padding: 0 30px;
    border-left: 1px solid #2d4456;
    height: 100%;
    line-height: 72px;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    display: -webkit-flex;
    -webkit-align-items: center;
    -webkit-justify-content: center;
}

    .lang a {
        display: inline-block;
        width: 40px;
        height: 40px;
        line-height: 41.2px;
        background-color: #ffffff;
        border-radius: 50%;
        color: #476c8a;
        padding: 0 4px;
        font-size: 15px;
        /*margin-left: 16px;*/
        text-align: center;
        font-weight: bold;
        letter-spacing: 1px;
    }

        .lang a:hover {
            background-color: #476c8a;
            color: #ffffff;
        }

.mainmenu .social-link .lang {
    width: 100%;
    border-left: none;
    border-top: 1px solid #2d4456;
    text-align: center;
}
/*Nav*/
.mainmenu {
    background-color: #243746;
}

.mainmenu {
    height: 100vh;
}

    .mainmenu > ul {
        display: inline-block;
        vertical-align: top;
        width: 100%;
        height: calc(100% - 72px);
        height: -webkit-calc(100% - 72px);
        overflow: auto;
    }

        .mainmenu > ul .menu:first-child {
            border-right: 1px solid #2d4456;
        }

        .mainmenu > ul .menu {
            text-align: center;
            width: 100%;
            font-size: 17px;
            text-transform: uppercase;
            border-bottom: 1px solid #2d4456;
        }

            .mainmenu > ul .menu > a {
                text-align: center;
                width: 100%;
                display: inline-block;
                height: 72px;
                display: flex;
                align-items: center;
                justify-content: center;
                display: -webkit-flex;
                -webkit-align-items: center;
                -webkit-justify-content: center;
                color: #ffffff;
                padding: 0 80px 0 30px;
                text-align: left;
            }

                .mainmenu > ul .menu > a.active {
                    background-color: #ef4023;
                }

            .mainmenu > ul .menu a span {
                display: inline-block;
                width: 100%;
            }

.submenu-title {
    position: relative;
}

.submenutrigger {
    width: 90px;
    height: 72px;
    border-left: 1px solid #2d4456;
    right: 0;
    position: absolute;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    display: -webkit-flex;
    -webkit-align-items: center;
    -webkit-justify-content: center;
    background-color: #243746;
}
    /*.submenutrigger:after{ content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 100%;background-image: url(content/images/icons/down-arrow.png);
	background-position: center center;
	background-repeat: no-repeat; background-size: 100% auto; transform-origin: center center; transition: all ease 0.4s; }*/

    .submenutrigger i {
        width: 36px;
        height: 36px;
        display: inline-block;
        position: relative;
    }

        .submenutrigger i:after {
            content: "";
            position: absolute;
            left: 0;
            top: 55%;
            transform-origin: right top;
            transform: translateY(-50%) rotate(30deg);
            -webkit-transform: translateY(-50%) rotate(30deg);
            width: 19px;
            height: 2px;
            background-color: #ffffff;
            border-radius: 4px;
            -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.16, 0.68, 0.43, 0.99);
            -moz-transition: -moz-transform 0.4s cubic-bezier(0.16, 0.68, 0.43, 0.99);
            -o-transition: -o-transform 0.4s cubic-bezier(0.16, 0.68, 0.43, 0.99);
            transition: transform 0.4s cubic-bezier(0.16, 0.68, 0.43, 0.99);
        }

        .submenutrigger i:before {
            content: "";
            position: absolute;
            left: inherit;
            right: 0;
            transform-origin: left top;
            top: 55%;
            transform: translateY(-50%) rotate(-30deg);
            -webkit-transform: translateY(-50%) rotate(-30deg);
            width: 19px;
            height: 2px;
            background-color: #ffffff;
            border-radius: 4px;
            -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.16, 0.68, 0.43, 0.99);
            -moz-transition: -moz-transform 0.4s cubic-bezier(0.16, 0.68, 0.43, 0.99);
            -o-transition: -o-transform 0.4s cubic-bezier(0.16, 0.68, 0.43, 0.99);
            transition: transform 0.4s cubic-bezier(0.16, 0.68, 0.43, 0.99);
        }

.submenu-title.open .submenutrigger i:after {
    transform: translateY(-50%) rotate(-30deg);
    -webkit-transform: translateY(-50%) rotate(-30deg);
    left: -1px;
    top: 50%;
}

.submenu-title.open .submenutrigger i:before {
    transform: translateY(-50%) rotate(30deg);
    -webkit-transform: translateY(-50%) rotate(30deg);
    right: -1px;
    top: 50%;
}

.submenu-title.open .submenutrigger {
    background: rgba(29, 45, 57, 1);
    background: -moz-radial-gradient( center, ellipse cover, rgba(29, 45, 57, 1) 0%, rgba(21, 32, 41, 1) 100% );
    background: -webkit-gradient( radial, center center, 0px, center center, 100%, color-stop(0%, rgba(29, 45, 57, 1)), color-stop(100%, rgba(21, 32, 41, 1)) );
    background: -webkit-radial-gradient( center, ellipse cover, rgba(29, 45, 57, 1) 0%, rgba(21, 32, 41, 1) 100% );
    background: -o-radial-gradient( center, ellipse cover, rgba(29, 45, 57, 1) 0%, rgba(21, 32, 41, 1) 100% );
    background: -ms-radial-gradient( center, ellipse cover, rgba(29, 45, 57, 1) 0%, rgba(21, 32, 41, 1) 100% );
    background: radial-gradient( ellipse at center, rgba(29, 45, 57, 1) 0%, rgba(21, 32, 41, 1) 100% );
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1d2d39', endColorstr='#152029', GradientType=1 );
}

.mainmenu > ul ul.submenu {
    background: rgba(29, 45, 57, 1);
    background: -moz-radial-gradient( center, ellipse cover, rgba(29, 45, 57, 1) 0%, rgba(21, 32, 41, 1) 100% );
    background: -webkit-gradient( radial, center center, 0px, center center, 100%, color-stop(0%, rgba(29, 45, 57, 1)), color-stop(100%, rgba(21, 32, 41, 1)) );
    background: -webkit-radial-gradient( center, ellipse cover, rgba(29, 45, 57, 1) 0%, rgba(21, 32, 41, 1) 100% );
    background: -o-radial-gradient( center, ellipse cover, rgba(29, 45, 57, 1) 0%, rgba(21, 32, 41, 1) 100% );
    background: -ms-radial-gradient( center, ellipse cover, rgba(29, 45, 57, 1) 0%, rgba(21, 32, 41, 1) 100% );
    background: radial-gradient( ellipse at center, rgba(29, 45, 57, 1) 0%, rgba(21, 32, 41, 1) 100% );
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1d2d39', endColorstr='#152029', GradientType=1 );
    padding: 32px 0;
    display: none;
}

    .mainmenu > ul ul.submenu li a {
        padding: 12px 30px;
        display: inline-block;
        width: 100%;
        text-align: left;
        color: #cccccc;
        font-size: 16px;
        line-height: 135%;
    }

        .mainmenu > ul ul.submenu li a:hover,
        .mainmenu > ul ul.submenu li a.active {
            color: #f74827;
        }

.mainmenu .social-link {
    height: auto;
    width: 100%;
    float: none;
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 0;
    border-left: 0;
    box-shadow: 0 -2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    z-index: 8;
}

    .mainmenu .social-link ul {
        vertical-align: bottom;
        padding: 0 18px;
        height: 72px;
        border-top: 1px solid #2d4456;
        width: 100%;
    }

        .mainmenu .social-link ul:first-child {
            border-top: none;
        }

        .mainmenu .social-link ul li {
            float: left;
            padding: 0 8px;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            display: -webkit-flex;
            -webkit-align-items: center;
            -webkit-justify-content: center;
        }

            .mainmenu .social-link ul li a {
            }

.searchbarclick {
    border-top: 1px solid #2d4456;
}

    .searchbarclick a {
        display: inline-block;
        height: 72px;
        line-height: 72px;
        color: #fff;
        width: 100%;
        padding: 0 16px;
        font-size: 17px;
        color: #476c8a;
    }

        .searchbarclick a i {
            display: inline-block;
            float: right;
            line-height: 72px;
            font-size: 32px;
            position: absolute;
            right: 18px;
            color: #ffffff;
        }

.mainmenu .social-link ul li:first-child {
    padding-left: 0;
}

.mainmenu .social-link ul li:last-child {
    padding-right: 0;
}

.wrapperoverlay {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 99;
    height: 100%;
    width: 100%;
}
/*Nav*/

/*Footer*/

footer .container {
    padding: 6rem 0 4rem;
}

.footer-blk .footer-logo img {
    margin-top: -30px;
}

.footer-blk {
    display: inline-block;
    width: 100%;
    padding: 6px 0;
    font-size: 18px;
    text-align: left;
    color: #666666;
}

    .footer-blk a {
        color: #666666;
        transition: all ease 0.2s;
        -webkit-transition: all ease 0.2s;
    }

        .footer-blk a:hover {
            color: #000;
            text-decoration: underline;
        }

    .footer-blk .footer-logo {
        display: inline-block;
        width: 100%;
        max-width: 200px;
    }

    .footer-blk address {
        padding: 24px 0;
        line-height: 145%;
        font-style: normal;
        color: #666666;
        font-size: 15px;
    }

.footer-nav {
    display: inline-block;
    width: 100%;
    text-align: right;
}

    .footer-nav > ul {
        display: inline-block;
        vertical-align: top;
        width: 100%;
    }

        .footer-nav > ul > li {
            width: 25%;
            float: left;
        }

            .footer-nav > ul > li:first-child {
                width: 50%;
            }

.footer-blk li.title {
    font-weight: bold;
    color: #000000;
    text-transform: uppercase;
    font-size: 120%;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
    list-style-type: none !important;
    margin-left: 0;
}

    .footer-blk li.title a {
        color: #000000;
    }

        .footer-blk li.title a:hover {
            color: #666666;
        }

.footer-blk li {
    padding: 5px 0;
    list-style-type: square !important;
    margin-left: 15px;
}

.footerband {
    background-color: #243746;
    color: #999999;
    font-size: 16px;
}

    .footerband .container {
        padding: 24px 0;
        overflow: hidden;
    }

        .footerband .container a {
            color: #999999;
        }

.tnc {
    width: 50%;
    float: left;
    text-align: right;
    padding: 0 0.75rem;
}

.copyright {
    width: 50%;
    float: left;
    text-align: left;
    padding: 0 0.75rem;
}
/*Footer*/

img {
    width: 100%;
    vertical-align: top;
}

.mobile-only {
    display: none !important;
}

.desktop-only {
    display: block !important;
}

.btn {
    font-size: 20px;
    letter-spacing: 0.9px;
    font-weight: bold;
    padding: 0 40px;
    height: 60px;
    line-height: 60px;
    border-radius: 30px;
    background-color: #243746;
}

    .btn.orangeclr {
        background-color: #fd4513;
    }


.section {
    position: relative;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.container {
    padding: 7rem 0;
    max-width: 1400px;
    position: relative;
    z-index: 4;
}

.green-clr {
    background-color: #317272 !important;
}

.lightgreen-clr {
    background-color: #81d8d0 !important;
}

.orange-clr {
    background-color: #f9812a !important;
}

.lightorange-clr {
    background-color: #fa9646 !important;
}

.purple-clr {
    background-color: #c488f7 !important;
}

.lightpurple-clr {
    background-color: #c488f7 !important;
}

.blue-clr {
    background-color: #1ca3ec !important;
}

.lightblue-clr {
    background-color: #1ca3ec !important;
}

.lightgrey-clr {
    background-color: #f6f5f5 !important;
}

.grey-clr {
    background-color: #e5e5e5 !important;
}

.piramal-blue {
    background-color: #243746 !important;
}

.skyblue-clr {
    background-color: #85d1e2 !important;
}

.homebanner {
    height: calc(100vh - 125px);
    height: -webkit-calc(100vh - 125px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    display: -webkit-flex;
    -webkit-align-items: center;
    -webkit-justify-content: center;
    position: relative;
}

    .homebanner video {
        width: 100%;
        background-color: #ffffff;
    }

    .homebanner .overlay {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: transparent;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        display: -webkit-flex;
        -webkit-align-items: flex-end;
        -webkit-justify-content: center;
        background-color: rgba(36, 55, 70, 0.4);
    }

.banner-caption {
    width: 100%;
    text-align: left;
    color: #ffffff;
    padding: 4rem 0;
    /* margin-bottom: 150px; */
}

    .banner-caption h1 {
        font-size: 3.6rem;
        font-weight: bold;
        margin: 0;
        line-height: 1.3;
    }

    .banner-caption span {
        display: inline-block;
        width: 100%;
        font-size: 24px;
        margin-top: 1.5rem;
        font-weight: 500;
    }

.homebanner-tabs {
    position: relative;
    width: 100%;
    margin: 0 auto;
    margin-top: -125px;
    /* max-width: 1600px; */
    z-index: 99;
}

    .homebanner-tabs ul {
        vertical-align: top;
        width: 100%;
        height: 100%;
        display: inline-block;
    }

        .homebanner-tabs ul li {
            height: 100%;
            float: left;
            width: 16.66666667%;
        }

            .homebanner-tabs ul li a {
                display: flex;
                align-items: center;
                justify-content: center;
                display: -webkit-flex;
                -webkit-align-items: center;
                -webkit-justify-content: center;
                width: 100%;
                height: 100%;
                height: 250px;
                transition: all ease 0.3s;
                overflow: visible;
                position: relative;
            }
/* .homebanner-tabs ul li:first-child a {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.homebanner-tabs ul li:last-child a {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
} */
.tab-nav {
    color: #ffffff;
    padding: 24px;
    text-align: center;
}

    .tab-nav .caption .title {
        /* text-transform: uppercase; */
        font-weight: 500;
        font-size: 24px;
        line-height: 120%;
        margin: 0;
        min-height: 36px;
    }

    .tab-nav .caption .first {
        display: block;
    }

    .tab-nav .caption .second {
        display: none;
    }

    .tab-nav .caption .subtext {
        font-size: 18px;
        line-height: 120%;
        min-height: 52px;
        font-weight: 400;
    }

    .tab-nav .pf-circle {
        position: absolute;
        top: -60px;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        left: 50%;
    }

    .tab-nav.health-clr {
        background-color: #81d8d0 !important;
    }

    .tab-nav.education-clr {
        background-color: #fa9646 !important;
    }

    .tab-nav.youth-clr {
        background-color: #af6aea !important;
    }

    .tab-nav.water-clr {
        background-color: #1b98dc !important;
    }

.pf-circle.bgimg > i {
    background-image: url(content/images/icons/health.png);
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: left center;
    -webkit-transition: -webkit-all 0.6s cubic-bezier(0.16, 0.68, 0.43, 0.99);
    -moz-transition: -moz-all 0.6s cubic-bezier(0.16, 0.68, 0.43, 0.99);
    -o-transition: -o-all 0.6s cubic-bezier(0.16, 0.68, 0.43, 0.99);
    transition: all 0.6s cubic-bezier(0.16, 0.68, 0.43, 0.99);
}

.pf-circle.bgimg.health > i {
    background-image: url(content/images/icons/health.png);
    background-color: #81d8d0;
}

.pf-circle.bgimg.aspirational > i {
    background-image: url(content/images/icons/aspirational.png);
    background-color: #317272;
}

.pf-circle.bgimg.education > i {
    background-image: url(content/images/icons/education-leadership.png);
}

.pf-circle.bgimg.youth > i {
    background-image: url(content/images/icons/youth.png);
    background-color: #af6aea;
}

.pf-circle.bgimg.water > i {
    background-image: url(content/images/icons/drinking-water.png);
    background-color: #1b98dc;
}

.pf-circle.bgimg:before {
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    width: -webkit-calc(100% + 20px);
    height: -webkit-calc(100% + 20px);
}

.pf-circle.bgimg:after {
    width: -webkit-calc(100% + 40px);
    height: -webkit-calc(100% + 40px);
    width: calc(100% + 40px);
    height: calc(100% + 40px);
}

.tab-nav:hover {
    background-color: #243746;
}
    /* .tab-nav:hover .pf-circle > i {
  background-position: right center;
  background-color: #ffffff;
} */
    .tab-nav:hover .caption .first {
        display: none;
    }

    .tab-nav:hover .caption .second {
        display: block;
    }

.post-section {
    position: relative;
    overflow: hidden;
    /* min-height: 600px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center; */
}

.section-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    display: -webkit-flex;
    -webkit-align-items: center;
    -webkit-justify-content: flex-start;
}

    .section-img > img {
        max-width: 45%;
    }

.section-angle {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

    .section-angle .fill-angle {
        display: inline-block;
        width: 27vw;
        height: 27vw;
        position: absolute;
        left: 0;
        bottom: 0;
    }

        .section-angle .fill-angle:after {
            content: "";
            position: absolute;
            left: 50%;
            top: 50%;
            width: 140%;
            background-color: #499292;
            height: 171%;
            transform: rotate(-36deg);
            transform-origin: -35% 153%;
            box-shadow: -2px 0 6px -1px rgba(0, 0, 0, 0.4);
            border-style: solid;
            border-color: #e5e4e4;
            border-width: 30px;
        }

        .section-angle .fill-angle.small {
            width: 21vw;
            height: 24vw;
        }

            .section-angle .fill-angle.small:after {
                border-width: 16px;
            }

.reverse .section-angle .fill-angle.small {
    width: 24vw;
    height: 21vw;
}

.section-angle .border-angle {
    display: inline-block;
    background-color: transparent;
    display: inline-block;
    width: 24vw;
    height: 24vw;
    position: absolute;
    position: absolute;
    right: 0;
    top: 0;
}

    .section-angle .border-angle.small {
        width: 14vw;
        height: 14vw;
    }

    .section-angle .border-angle:after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        width: 32px;
        background-color: #499292;
        height: 280%;
        transform: rotate(-45deg) translate(-50%, -50%);
        transform-origin: right top;
        box-shadow: -2px 0 6px -1px rgba(0, 0, 0, 0.4);
    }

.post-block-wrapp {
    min-height: 500px;
    display: flex;
    align-items: center;
    display: -webkit-flex;
    -webkit-align-items: center;
}

.post-block {
    max-width: 700px;
    float: right;
}

    .post-block.fullWidth {
        max-width: 100%;
    }

    .post-block h2 {
        font-size: 6rem;
        line-height: 6rem;
        font-weight: bold;
        text-transform: uppercase;
        margin: 0;
        color: #317272;
        position: relative;
    }

    .post-block h3 {
        font-size: 3.5rem;
        line-height: 3.6rem;
        color: #243746;
        text-transform: uppercase;
        font-weight: bold;
        margin: 0;
        margin-bottom: 0.6rem;
    }

    .post-block h5 {
        color: #fd4513;
        font-weight: bold;
        font-size: 2.6rem;
        text-transform: uppercase;
        margin: 0;
        margin-bottom: 1rem;
    }

    .post-block ol,
    .post-block ul {
        display: inline-block;
        vertical-align: top;
        width: 100%;
        font-size: 24px;
        line-height: 154%;
        padding: 16px 0 16px 24px;
        text-align: justify;
    }

        .post-block ol li,
        .post-block ul li {
            margin-bottom: 1.2rem;
        }

            .post-block ol li:last-child,
            .post-block ul li:last-child {
                margin-bottom: 0;
            }

    .post-block .post-title {
        display: block;
        width: 100%;
        position: relative;
    }

        .post-block .post-title i {
            font-size: 20px;
            line-height: 16px;
            position: absolute;
            top: 100%;
            font-style: normal;
            width: 100%;
            left: 0;
            padding: 0 3px;
        }

    .post-block .post-icon {
        display: inline-block;
        width: 150px;
        height: 150px;
        border-radius: 50%;
        background-color: #499292;
        position: relative;
        transition: all ease 1.2s;
        -webkit-transition: all ease 1.2s;
        position: absolute;
        transform: translate(-126%, -50%);
        -webkit-transform: translate(-126%, -50%);
        top: 50%;
    }

        .post-block .post-icon i {
            display: inline-block;
            width: 100%;
            height: 100%;
            background-color: #499292;
            border-radius: 50%;
            position: relative;
            z-index: 2;
        }

        .post-block .post-icon img {
            width: 100%;
            height: 100%;
        }

        .post-block .post-icon:after {
            content: "";
            position: absolute;
            left: 50%;
            top: 50%;
            width: calc(100% + 24px);
            height: calc(100% + 24px);
            transform: translate(-50%, -50%);
            -webkit-transform: translate(-50%, -50%);
            border-radius: 50%;
            background-color: rgba(73, 146, 146, 0.1);
            z-index: -1;
            transition: all ease 1.2s;
        }

        .post-block .post-icon:before {
            content: "";
            position: absolute;
            left: 50%;
            top: 50%;
            width: calc(100% + 12px);
            height: calc(100% + 12px);
            transform: translate(-50%, -50%);
            -webkit-transform: translate(-50%, -50%);
            border-radius: 50%;
            background-color: rgba(73, 146, 146, 0.4);
            z-index: -1;
            transform-origin: center center;
        }

    .post-block h4 {
        font-size: 3rem;
        line-height: 3rem;
        font-weight: bold;
        margin: 1.6rem 0 0;
        color: #243746;
    }

    .post-block .paragraph {
        padding: 8px 0;
        position: relative;
        padding-right: 0;
    }

        .post-block .paragraph > strong {
            font-weight: bold;
            text-transform: uppercase;
            font-size: 22px;
            color: #434343;
        }

        .post-block .paragraph.quote-para {
            padding: 30px;
        }

        .post-block .paragraph.scrollbar {
            max-height: 760px;
            overflow: auto;
        }

        .post-block .paragraph.small-para-scroll {
            max-height: 210px;
            overflow: auto;
        }

.post-img {
    position: absolute;
    top: 0;
    right: -16px;
    width: calc(50% - 0.7rem);
    -webkit-width: calc(50% - 0.7rem);
    height: 100%;
    text-align: center;
    display: flex;
    align-items: flex-end;
    display: -webkit-flex;
    -webkit-align-items: flex-end;
}

    .post-img.left {
        left: -16px;
        right: inherit;
        overflow: hidden;
    }

    .post-img > img {
        max-height: 100%;
        width: auto;
        margin: 0 auto;
        position: relative;
        z-index: 4;
    }

    .post-img .simpleParallax {
        height: 100%;
        width: 100%;
        z-index: 4;
    }

        .post-img .simpleParallax img {
            height: 100%;
            width: auto;
        }

.post-img-full-container {
    position: static !important;
}

.post-img .gray-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background-color: #e1e1e1;
    z-index: 1;
    border-radius: 50%;
}

.gray-circle:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    width: -webkit-calc(100% + 30px);
    height: -webkit-calc(100% + 30px);
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: rgba(225, 225, 225, 0.4);
    z-index: 1;
}

.gray-circle:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: calc(100% + 60px);
    height: calc(100% + 60px);
    width: -webkit-calc(100% + 60px);
    height: -webkit-calc(100% + 60px);
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: rgba(225, 225, 225, 0.15);
    z-index: 1;
}

.paragraph p {
    font-size: 18px;
    line-height: 150%;
    color: #4e4e4e;
    text-align: justify;
    margin-bottom: 1.5rem;
}

.piramal-blue .paragraph p {
    color: #fff;
}

.paragraph h4 {
    font-size: 22px;
    line-height: 150%;
    color: #ef4023;
    font-weight: 600;
    margin-bottom: 0.5rem;
    padding-top: 0.5rem;
    margin-top: 0;
}

.scale-reach {
    padding: 12px 0;
    color: #253746;
}

    .scale-reach .title {
        display: inline-block;
        width: 100%;
        font-size: 17px;
        text-transform: uppercase;
        font-weight: bold;
    }

.post-block .scale-reach ul {
    display: inline-block;
    width: 100%;
    padding: 16px 0;
    font-size: 16px;
}

    .post-block .scale-reach ul li {
        display: inline-block;
        float: left;
        padding: 0 8px;
        border-right: 1px solid #e1e1e1;
    }

        .post-block .scale-reach ul li:last-child {
            border-right: none;
        }

.scale-reach figure {
    margin: 0;
    font-size: 20px;
    line-height: 160%;
    padding: 2px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    display: -webkit-flex;
    -webkit-align-items: center;
    -webkit-justify-content: center;
}

    .scale-reach figure > span {
        display: inline-block;
        width: 60px;
        float: left;
    }

    .scale-reach figure > figcaption {
        display: inline-block;
        float: left;
        padding: 0 12px;
    }

        .scale-reach figure > figcaption strong {
            font-weight: bold;
            display: block;
            font-size: 210%;
        }

.paragraph.quote-para p {
    color: #999999;
    line-height: 160%;
}

.paragraph p:last-child {
    margin-bottom: 0;
}

.post-block .action {
    padding: 30px;
    overflow: hidden;
}

.post-block .btn {
    margin-right: 0.5rem;
    float: left;
}

.paragraph .fa-quote-left {
    position: absolute;
    left: -12px;
    top: 40px;
    font-size: 33px;
    color: #999999;
}

.paragraph .fa-quote-right {
    font-size: 33px;
    color: #999999;
    display: inline-block;
    vertical-align: bottom;
    margin-left: 4px;
}

.paragraph .paragraph-art {
    display: inline-block;
    width: 50%;
    float: right;
    padding: 12px 0 12px 24px;
}

    .paragraph .paragraph-art .art {
        background-color: #fff;
        padding: 10px;
    }

        .paragraph .paragraph-art .art img {
            vertical-align: top;
        }

.margin-b-none {
    margin-bottom: 0 !important;
}

.reverse .post-block {
    float: left;
    text-align: right;
}

    .reverse .post-block .post-icon {
        transform: translate(14%, -50%);
        -webkit-transform: translate(14%, -50%);
    }

.reverse .section-img {
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
}

.reverse .section-angle .border-angle {
    left: 0;
}

    .reverse .section-angle .border-angle:after {
        transform: rotate(45deg) translate(-50%, -50%);
        -webkit-transform: rotate(45deg) translate(-50%, -50%);
    }

.reverse .section-angle {
    right: 0;
    left: inherit;
}

    .reverse .section-angle .fill-angle {
        right: 0;
        left: inherit;
    }

        .reverse .section-angle .fill-angle:after {
            left: 160%;
            top: 104%;
            width: 170%;
            height: 191%;
            transform: rotate(-38deg);
            transform-origin: -45% 144%;
        }

.vector-green {
    overflow: hidden;
}

.vector-lightgreen .section-angle .border-angle:after {
    background-color: #81d8d0;
}

.vector-lightgreen .post-block h2 {
    color: #81d8d0;
}

.vector-lightgreen .post-block .post-icon i {
    background-color: #81d8d0;
}

.vector-lightgreen .section-angle .fill-angle:after {
    background-color: #81d8d0;
}

.vector-lightgreen .post-block .post-icon:before {
    background-color: rgba(126, 249, 255, 0.4);
}

.vector-lightgreen .post-block .post-icon:after {
    background-color: rgba(126, 249, 255, 0.15);
}

.vector-orange .section-angle .border-angle:after {
    background-color: #f9812a;
}

.vector-orange .post-block h2 {
    color: #f9812a;
}

.vector-orange .post-block .post-icon i {
    background-color: #f9812a;
}

.vector-orange .section-angle .fill-angle:after {
    background-color: #f9812a;
}

.vector-orange .post-block .post-icon:before {
    background-color: rgba(249, 129, 42, 0.4);
}

.vector-orange .post-block .post-icon:after {
    background-color: rgba(249, 129, 42, 0.15);
}

.vector-cinnabar .section-angle .fill-angle:after {
    background-color: #f9b3a7;
    border-color: #fcd9d3;
    transform-origin: -35% 163%;
    transform: rotate(317deg);
}

.vector-gray-cinnabar .section-angle .fill-angle.go-right {
    right: 0;
    left: auto;
    top: 0;
    bottom: auto;
}

    .vector-gray-cinnabar .section-angle .fill-angle.go-right:after {
        background-color: #f9b3a7;
        border-color: #fcd9d3;
        left: 50%;
        top: auto;
        bottom: 50%;
        transform: rotate(226deg) translate(-50%, -50%);
        transform-origin: 44% 18%;
        box-shadow: none;
    }

.vector-gray-cinnabar .section-angle .fill-angle:after {
    background-color: #b5c4d0;
    border-color: #dae2e8;
    transform: rotate(315deg);
    transform-origin: -35% 160%;
}

.vector-wedgewood .section-angle .fill-angle:after {
    background-color: #43647e;
    border-color: #426179;
    transform-origin: -35% 120%;
    box-shadow: none;
}

.vector-purple .section-angle .border-angle:after {
    background-color: #c488f7;
}

.vector-purple .post-block h2 {
    color: #c488f7;
}

.vector-purple .post-block .post-icon i {
    background-color: #c488f7;
}

.vector-purple .section-angle .fill-angle:after {
    background-color: #c488f7;
}

.vector-purple .post-block .post-icon:before {
    background-color: rgba(196, 136, 247, 0.4);
}

.vector-purple .post-block .post-icon:after {
    background-color: rgba(196, 136, 247, 0.15);
}

.vector-blue .section-angle .border-angle:after {
    background-color: #1ca3ec;
}

.vector-blue .post-block h2 {
    color: #1ca3ec;
}

.vector-blue .post-block .post-icon i {
    background-color: #1ca3ec;
}

.vector-blue .section-angle .fill-angle:after {
    background-color: #1ca3ec;
}

.vector-blue .post-block .post-icon:before {
    background-color: rgba(28, 163, 236, 0.4);
}

.vector-blue .post-block .post-icon:after {
    background-color: rgba(28, 163, 236, 0.15);
}

.ad-content h2 {
    margin: 0;
    text-transform: uppercase;
    font-weight: bold;
    color: #f23232;
    font-size: 4rem;
    line-height: 4rem;
}

.ad-content .subtext {
    display: inline-block;
    width: 100%;
    padding: 16px 0;
    font-size: 18px;
    line-height: 130%;
    margin-bottom: 6px;
}

.ad-section-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: antiquewhite;
}

    .ad-section-img .parallax-bg {
        float: right;
        width: 50%;
        height: 100%;
        position: relative;
        z-index: 2;
        overflow: hidden;
        text-align: left;
    }

        .ad-section-img .parallax-bg .simpleParallax {
            height: 100%;
        }

        .ad-section-img .parallax-bg img {
            height: 100%;
            width: auto;
            margin-top: 1.5%;
        }

.ad-section-vector {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #dfe6ec;
    z-index: 2;
    background-image: url(content/images/textuer-bg.jpg);
    background-position: left center;
    background-repeat: repeat-x;
    background-size: auto 100%;
}

.section-title {
    color: #ef4023;
    margin: 0;
    font-size: 4rem;
    text-transform: uppercase;
    font-weight: bold;
}

    .section-title.border {
        position: relative;
        display: inline-block;
        padding-bottom: 3px;
    }

        .section-title.border::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            height: 4px;
            width: 50%;
            background-color: #243746;
        }

h5.section-title {
    font-size: 3rem;
}

.section-title i {
    display: inline-block;
    margin-right: 12px;
}

h5.section-title.inset {
    padding: 18px 12px;
}

.news-card {
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
    background-color: #fff;
}

.news-slider .swiper-slide {
    padding: 0 0;
}

.news-card .news-title {
    display: flex;
    align-items: center;
    justify-content: center;
    display: -webkit-flex;
    -webkit-align-items: center;
    -webkit-justify-content: center;
    width: 100%;
    padding: 18px 24px;
    font-size: 20px;
    line-height: 130%;
    text-align: center;
    font-weight: bold;
    color: #2e4273;
    min-height: 88px;
}

.news-card .news-img {
    display: inline-block;
    width: 100%;
    height: 220px;
    vertical-align: top;
}

    .news-card .news-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.news-card .news-content {
    width: 100%;
    padding: 24px;
    text-align: center;
    color: #666666;
}

    .news-card .news-content .paragraph {
        font-size: 18px;
        text-overflow: ellipsis;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-box;
        display: box;
        -webkit-box-orient: vertical;
        -moz-box-orient: vertical;
        -ms-box-orient: vertical;
        box-orient: vertical;
        overflow: hidden;
        -webkit-line-clamp: 4;
        -moz-line-clamp: 4;
        -ms-line-clamp: 4;
        line-clamp: 4;
        min-height: 108px;
        overflow: hidden;
    }

    .news-card .news-content .action {
        padding: 24px 0 6px 0;
    }

    .news-card .news-content .paragraph p {
        font-size: 18px;
    }

.btn.card-btn {
    font-size: 16px;
    height: 48px;
    line-height: 48px;
    letter-spacing: 0.6px;
    padding: 0 40px;
    background-color: #f74827;
}

.swiper-pagination {
    width: 100%;
    position: static;
    padding: 12px 0;
}

    .swiper-pagination .swiper-pagination-bullet {
        margin: 0 4px;
        width: 12px;
        height: 12px;
    }

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #ef4023;
}

.parallax-section {
    position: relative;
    overflow: hidden;
}

    .parallax-section .parallax-bg {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }

        .parallax-section .parallax-bg .simpleParallax {
            height: 100%;
        }

.form-section .container {
    padding: 3rem 0;
}

.input-field > label {
    font-size: 17px;
    color: #4e4e4e;
    z-index: 1;
}

.input-field > .search {
    position: relative;
}

    .input-field > .search:after {
        font-family: 'Material Icons';
        content: "\e8b6";
        font-size: 25px;
        color: #A2A2A2;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none;
        left: 10px;
    }

input:not([type]),
input[type="text"]:not(.browser-default),
input[type="password"]:not(.browser-default),
input[type="email"]:not(.browser-default),
input[type="url"]:not(.browser-default),
input[type="time"]:not(.browser-default),
input[type="date"]:not(.browser-default),
input[type="datetime"]:not(.browser-default),
input[type="datetime-local"]:not(.browser-default),
input[type="tel"]:not(.browser-default),
input[type="number"]:not(.browser-default),
input[type="search"]:not(.browser-default),
textarea.materialize-textarea {
    position: relative;
    color: #373737;
    border: 1px solid #cbcbcb;
    border-radius: 7px;
    font-size: 17px;
    background-color: #fafafa;
    padding: 0 12px;
    width: 100%;
    box-sizing: border-box;
}

input[type="search"]:not(.browser-default) {
    padding-left: 40px;
}

.select-wrapper input.select-dropdown:focus {
    border: 1px solid #ca3107;
}

input:not([type]):focus:not([readonly]),
input[type="text"]:not(.browser-default):focus:not([readonly]),
input[type="password"]:not(.browser-default):focus:not([readonly]),
input[type="email"]:not(.browser-default):focus:not([readonly]),
input[type="url"]:not(.browser-default):focus:not([readonly]),
input[type="time"]:not(.browser-default):focus:not([readonly]),
input[type="date"]:not(.browser-default):focus:not([readonly]),
input[type="datetime"]:not(.browser-default):focus:not([readonly]),
input[type="datetime-local"]:not(.browser-default):focus:not([readonly]),
input[type="tel"]:not(.browser-default):focus:not([readonly]),
input[type="number"]:not(.browser-default):focus:not([readonly]),
input[type="search"]:not(.browser-default):focus:not([readonly]),
textarea.materialize-textarea:focus:not([readonly]) {
    border: 1px solid #ca3107;
    box-sizing: border-box;
}

    input:not([type]):focus:not([readonly]) + label,
    input[type="text"]:not(.browser-default):focus:not([readonly]) + label,
    input[type="password"]:not(.browser-default):focus:not([readonly]) + label,
    input[type="email"]:not(.browser-default):focus:not([readonly]) + label,
    input[type="url"]:not(.browser-default):focus:not([readonly]) + label,
    input[type="time"]:not(.browser-default):focus:not([readonly]) + label,
    input[type="date"]:not(.browser-default):focus:not([readonly]) + label,
    input[type="datetime"]:not(.browser-default):focus:not([readonly]) + label,
    input[type="datetime-local"]:not(.browser-default):focus:not([readonly]) + label,
    input[type="tel"]:not(.browser-default):focus:not([readonly]) + label,
    input[type="number"]:not(.browser-default):focus:not([readonly]) + label,
    input[type="search"]:not(.browser-default):focus:not([readonly]) + label,
    textarea.materialize-textarea:focus:not([readonly]) + label {
        color: rgba(255, 255, 255, 0.6);
    }

input.valid:not([type]),
input.valid:not([type]):focus,
input.valid[type="text"]:not(.browser-default),
input.valid[type="text"]:not(.browser-default):focus,
input.valid[type="password"]:not(.browser-default),
input.valid[type="password"]:not(.browser-default):focus,
input.valid[type="email"]:not(.browser-default),
input.valid[type="email"]:not(.browser-default):focus,
input.valid[type="url"]:not(.browser-default),
input.valid[type="url"]:not(.browser-default):focus,
input.valid[type="time"]:not(.browser-default),
input.valid[type="time"]:not(.browser-default):focus,
input.valid[type="date"]:not(.browser-default),
input.valid[type="date"]:not(.browser-default):focus,
input.valid[type="datetime"]:not(.browser-default),
input.valid[type="datetime"]:not(.browser-default):focus,
input.valid[type="datetime-local"]:not(.browser-default),
input.valid[type="datetime-local"]:not(.browser-default):focus,
input.valid[type="tel"]:not(.browser-default),
input.valid[type="tel"]:not(.browser-default):focus,
input.valid[type="number"]:not(.browser-default),
input.valid[type="number"]:not(.browser-default):focus,
input.valid[type="search"]:not(.browser-default),
input.valid[type="search"]:not(.browser-default):focus,
textarea.materialize-textarea.valid,
textarea.materialize-textarea.valid:focus,
.select-wrapper.valid > input.select-dropdown {
    border: 1px solid #ca3107;
    box-shadow: none;
}

.dropdown-content li > a, .dropdown-content li > span {
    color: #373737;
}

.select-wrapper .caret {
    z-index: 1;
    right: 7px;
}

.form-title {
    margin-bottom: 16px;
}

.top-banner-bg {
    min-height: 250px;
    height: 80vh;
    position: relative;
    overflow: hidden;
    /* background-color: #243746; */
    background-image: url(content/images/default-background.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}

.top-banner-img {
    width: 100%;
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
}

    .top-banner-img .overlay {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        /* background-color: transparent;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center; */
        display: flex;
        align-items: flex-end;
        justify-content: center;
        display: -webkit-flex;
        -webkit-align-items: flex-end;
        -webkit-justify-content: center;
        background: rgb(47, 71, 88);
        background: -moz-linear-gradient( 0deg, rgba(47, 71, 88, 1) 0%, rgba(47, 71, 88, 0.36) 30%, rgba(47, 71, 88, 0) 100% );
        background: -webkit-linear-gradient( 0deg, rgba(47, 71, 88, 1) 0%, rgba(47, 71, 88, 0.36) 30%, rgba(47, 71, 88, 0) 100% );
        background: linear-gradient( 0deg, rgba(47, 71, 88, 1) 0%, rgba(47, 71, 88, 0.36) 30%, rgba(47, 71, 88, 0) 100% );
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2f4758",endColorstr="#2f4758",GradientType=1);
    }

        .top-banner-img .overlay .banner-caption {
            width: 80%;
            max-width: 900px;
            text-align: center;
            margin-bottom: 60px;
        }

    .top-banner-img .simpleParallax {
        height: 100%;
    }

        .top-banner-img .simpleParallax img {
            vertical-align: top;
            min-height: 100%;
            object-fit: cover;
        }

.banner-nav {
    height: 100%;
    width: 100%;
    max-width: 600px;
    position: relative;
    z-index: 2;
    padding: 90px 90px 20px 118px;
    overflow: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    display: -webkit-flex;
    -webkit-falign-items: center;
    -webkit-fjustify-content: center;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
}

    .banner-nav ul {
        display: inline-block;
        width: 100%;
        vertical-align: top;
        height: auto;
        max-height: 100%;
    }

        .banner-nav ul li {
            display: flex;
            align-items: center;
            display: -webkit-flex;
            -webkit-align-items: center;
            padding: 26px 0;
            position: relative;
        }

    .banner-nav .caption {
        font-size: 22px;
        line-height: 120%;
        padding: 6px 16px;
        font-weight: bold;
        position: absolute;
        left: 130px;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        color: #ffffff;
        text-transform: uppercase;
    }

.pf-circle {
    display: inline-block;
    width: 110px;
    height: 110px;
    background-color: #81d8d0;
    border-radius: 50%;
    position: relative;
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.16, 0.68, 0.43, 0.99);
    -moz-transition: -moz-transform 0.4s cubic-bezier(0.16, 0.68, 0.43, 0.99);
    -o-transition: -o-transform 0.4s cubic-bezier(0.16, 0.68, 0.43, 0.99);
    transition: transform 0.4s cubic-bezier(0.16, 0.68, 0.43, 0.99);
}

    .pf-circle:before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        width: calc(100% + 12px);
        height: calc(100% + 12px);
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        border-radius: 50%;
        background-color: rgba(129, 216, 208, 0.4);
        z-index: 1;
    }

    .pf-circle:after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        width: calc(100% + 24px);
        height: calc(100% + 24px);
        width: -webkit-calc(100% + 24px);
        height: -webkit-calc(100% + 24px);
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        border-radius: 50%;
        background-color: rgba(129, 216, 208, 0.15);
        z-index: 1;
    }

    .pf-circle > i {
        display: inline-block;
        height: 100%;
        width: 100%;
        border-radius: 50%;
        overflow: hidden;
        position: relative;
        z-index: 2;
    }

    .pf-circle.water > i {
        background-color: #1ca3ec;
    }

    .pf-circle.water:before {
        background-color: rgba(28, 163, 236, 0.4);
    }

    .pf-circle.water:after {
        background-color: rgba(28, 163, 236, 0.1);
    }

    .pf-circle.youth > i {
        background-color: #c488f7;
    }

    .pf-circle.youth:before {
        background-color: rgba(196, 136, 247, 0.4);
    }

    .pf-circle.youth:after {
        background-color: rgba(196, 136, 247, 0.1);
    }

    .pf-circle.aspirational > i {
        background-color: #317272;
    }

    .pf-circle.aspirational:before {
        background-color: rgba(49, 114, 114, 0.4);
    }

    .pf-circle.aspirational:after {
        background-color: rgba(49, 114, 114, 0.1);
    }

    .pf-circle.pfoundation > i {
        background-color: #182834;
    }

    .pf-circle.education > i {
        background-color: #f9812a;
    }

    .pf-circle.education:before {
        background-color: rgba(249, 129, 42, 0.4);
    }

    .pf-circle.education:after {
        background-color: rgba(249, 129, 42, 0.1);
    }

    .pf-circle.health > i {
        background-color: #81d8d0;
    }

    .pf-circle.health:before {
        background-color: rgba(126, 249, 255, 0.4);
    }

    .pf-circle.health:after {
        background-color: rgba(126, 249, 255, 0.1);
    }

    .pf-circle .caption {
        position: absolute;
        left: 100%;
        padding: 0 24px;
        top: 0;
        height: 100%;
        font-size: 26px;
        text-transform: uppercase;
        font-weight: bold;
        color: #fff;
        display: flex;
        align-items: center;
        width: 500px;
    }

        .pf-circle .caption span,
        .banner-nav ul li .caption span {
            width: 100%;
            text-align: left;
            opacity: 0;
            visibility: hidden;
            transform: translateX(-20px);
            -webkit-transition: -webkit-all 0.4s cubic-bezier(0.16, 0.68, 0.43, 0.99) 0.1s;
            -moz-transition: -moz-all 0.4s cubic-bezier(0.16, 0.68, 0.43, 0.99) 0.1s;
            -o-transition: -o-all 0.4s cubic-bezier(0.16, 0.68, 0.43, 0.99) 0.1s;
            transition: all 0.4s cubic-bezier(0.16, 0.68, 0.43, 0.99) 0.1s;
        }

.banner-nav .pf-circle:hover,
.banner-nav .active .pf-circle {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
}

    .banner-nav .pf-circle:hover .caption span,
    .banner-nav .active .caption span {
        display: block;
        visibility: visible;
        transform: translateX(0);
        -webkit-transform: translateX(0);
        opacity: 1;
    }

.padding-top-none {
    padding-top: 0 !important;
}

.padding-bottom-none {
    padding-bottom: 0 !important;
}

.container.big {
    width: 85%;
    max-width: 1600px;
}

.impact-wrapper {
    padding: 1.5rem 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    display: -webkit-flex;
    -webkit-align-items: center;
    -webkit-justify-content: center;
    /* width: 1600px; */
    margin: 0 auto;
}

.ring-wrapp {
    width: 55%;
    float: left;
}

    .ring-wrapp.fullWidth {
        width: 90%;
        float: none;
    }

.impact-ring {
    max-width: 700px;
    width: 100%;
    position: relative;
}

    .impact-ring > img {
        position: relative;
        z-index: 4;
    }

    .impact-ring .dots-img {
        position: absolute;
        right: -19.3%;
        height: 100%;
        width: auto;
        z-index: 6;
    }

    .impact-ring .ring-img {
        display: inline-block;
        width: 100%;
        height: 100%;
        background-color: #ffffff;
        position: absolute;
        left: 0;
        top: 0;
        border-radius: 50%;
        overflow: hidden;
    }

        .impact-ring .ring-img .simpleParallax {
            height: 100%;
        }

            .impact-ring .ring-img .simpleParallax img {
                height: 100%;
                width: auto;
            }

.impact-content,
.aspirational-impact-content {
    width: 45%;
    float: left;
}

    .aspirational-impact-content .impact-caption {
        font-size: 18px;
        line-height: 130%;
    }

        .aspirational-impact-content .impact-caption h4 {
            font-weight: bold;
            font-size: 200%;
            margin: 0;
        }

    .aspirational-impact-content li {
        position: absolute;
        right: 0;
        top: 0.5%;
        width: 50%;
    }

        .aspirational-impact-content li.impact1 {
            top: 0.5%;
            width: 54%;
        }

        .aspirational-impact-content li.impact2 {
            top: 10%;
            width: 51%;
        }

        .aspirational-impact-content li.impact3 {
            top: 23.5%;
            width: 48%;
        }

        .aspirational-impact-content li.impact4 {
            top: 38.5%;
            width: 46.5%;
        }

        .aspirational-impact-content li.impact5 {
            top: 55%;
            width: 47%;
        }

        .aspirational-impact-content li.impact6 {
            top: 69%;
            width: 50%;
        }

        .aspirational-impact-content li.impact7 {
            top: 79%;
            width: 56%;
        }

    .impact-content ul {
        display: inline-block;
        width: 100%;
    }

        .impact-content ul li {
            background-color: #cdefec;
            padding: 12px;
            height: 100px;
            width: 100%;
            border-radius: 20px;
            position: relative;
            padding-left: 90px;
            padding-right: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            display: -webkit-flex;
            -webkit-align-items: center;
            -webkit-justify-content: center;
            font-size: 18px;
            color: #243746;
            margin: 4% 0;
            text-align: center;
            float: right;
        }

            .impact-content ul li:before {
                content: "";
                position: absolute;
                left: inherit;
                right: 102%;
                top: 50%;
                transform: translateY(-50%);
                width: 46%;
                height: 3px;
                background-color: #81d8d0;
                z-index: 4;
                transform-origin: right top;
            }

.impact-wrapper.education .impact-content li {
    background-color: #f1c2a0;
}

.impact-wrapper.education .impact-content ul li:before {
    background-color: #f9812a;
}

.impact-wrapper.education .impact-ring ul li:nth-child(1) {
    display: none;
}

.impact-wrapper.education .impact-ring ul li:nth-child(5) {
    display: none;
}

.impact-wrapper.sarvajal .impact-content li {
    background-color: #9ed1ed;
}

.impact-wrapper.sarvajal .impact-content ul li:before {
    background-color: #1ca3ec;
}

.impact-wrapper.sarvajal .impact-ring ul li:nth-child(1) {
    display: none;
}

.impact-wrapper.sarvajal .impact-ring ul li:nth-child(5) {
    display: none;
}

.impact-wrapper.youthemp .impact-content li {
    background-color: #d6b8ef;
}

.impact-wrapper.youthemp .impact-content ul li:before {
    background-color: #c488f7;
}

.impact-wrapper.youthemp .impact-content li.impact2::before {
    width: 35%;
}

.impact-wrapper.youthemp .impact-content li.impact3::before {
    width: 42%;
}

.impact-wrapper.youthemp .impact-ring ul li:nth-child(1) {
    display: none;
}

.impact-wrapper.youthemp .impact-ring ul li:nth-child(4) {
    display: none;
}

.impact-wrapper.youthemp .impact-ring ul li:nth-child(5) {
    display: none;
}

.content-2 .impact-ring ul li:nth-child(2) {
    top: 35.25%;
    left: 92.3%;
}

.content-2 .impact-ring ul li:nth-child(3) {
    top: 59.8%;
    left: 92%;
}

.impact-content li.impact1::before {
    transform: translateY(-50%) rotate(-2deg);
    width: 50%;
}

.impact-content li.impact2::before {
    transform: translateY(-50%) rotate(3deg);
    width: 41%;
}

.impact-content li.impact3::before {
    transform: translateY(-50%) rotate(0);
    width: 40%;
}

.impact-content li.impact4::before {
    transform: translateY(-50%) rotate(-5deg);
    width: 40%;
}

.impact-content li.impact5::before {
    transform: translateY(-50%) rotate(1deg);
    width: 50%;
}

.impact-content ul li:last-child {
    margin-bottom: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.impact-content ul li:first-child {
    margin-top: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.impact-content li.impact1 {
    width: 100%;
}

.impact-content li.impact2 {
    width: 95%;
}

.impact-content li.impact3 {
    width: 90%;
}

.impact-content li.impact4 {
    width: 95%;
}

.impact-content li.impact5 {
    width: 100%;
}

.impact-content li .pf-circle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    left: inherit;
    right: calc(100% - 70px);
    right: -webkit-calc(100% - 70px);
    z-index: 6;
}

.pf-circle.text i {
    font-size: 18px;
    color: #243746;
    font-style: normal;
    line-height: 110px;
    text-align: center;
}

    .pf-circle.text i strong {
        font-weight: bold;
        font-size: 200%;
    }

.impact-ring ul {
    width: 0;
    height: 0;
    z-index: 6;
}

    .impact-ring ul li {
        display: inline-block;
        width: 4%;
        height: 4%;
        position: absolute;
        left: 70%;
        top: 6.9%;
        background-color: #ffff;
        z-index: 6;
        border-radius: 50%;
        animation: scaling 3s infinite;
        -webkit-animation: scaling 3s infinite;
        animation-timing-function: ease-in-out;
        -webkit-animation-timing-function: ease-in-out;
    }

@keyframes scaling {
    0%, 100% {
        transform: scale(1);
    }

    90% {
        transform: scale(1);
    }

    95% {
        transform: scale(1.18);
    }

    100% {
        transform: scale(1);
    }
}

@-webkit-keyframes scaling {
    0%, 100% {
        transform: scale(1);
    }

    90% {
        transform: scale(1);
    }

    95% {
        transform: scale(1.18);
    }

    100% {
        transform: scale(1);
    }
}

.impact-ring ul li:nth-child(2) {
    top: 24.25%;
    left: 87.3%;
}

.impact-ring ul li:nth-child(3) {
    top: 48%;
    left: 93.5%;
}

.impact-ring ul li:nth-child(4) {
    top: 71.6%;
    left: 87.3%;
}

.impact-ring ul li:nth-child(5) {
    top: 89%;
    left: 69.9%;
}

.section-slider .container {
    padding: 5rem 0;
}

.section-slider .swiper-slide {
    display: flex;
    align-items: center;
    display: -webkit-flex;
    -webkit-align-items: center;
    overflow: hidden;
}

.img-in-circle {
    width: 47vw;
    height: 47vw;
    position: absolute;
    bottom: -10vw;
    left: 0;
    overflow: hidden;
}

    .img-in-circle:after {
        content: "";
        display: inline-block;
        width: 100%;
        height: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
        background-image: url(content/images/circle-outer.png);
        background-position: left bottom;
        background-repeat: no-repeat;
        background-size: 100% 100%;
        z-index: 3;
        overflow: hidden;
    }

    .img-in-circle:before {
        content: "";
        display: inline-block;
        width: 100%;
        height: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 1;
        overflow: hidden;
        background-image: url(content/images/circle-img.png);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: 100% auto;
    }

    .img-in-circle .middle-img {
        display: inline-block;
        width: 100%;
        height: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 2;
        overflow: hidden;
    }

    .img-in-circle .upper-img img {
        width: 100%;
    }

.section-slider .swiper-button-next,
.section-slider .swiper-button-prev {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-image: url(content/images/icons/left-right-arrow.png);
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: right center;
    z-index: 8;
}

.section-slider .swiper-button-prev {
    /*	right: calc(23% + 60px);
	right: -webkit-calc(23% + 80px);*/
    background-position: left center;
}

    .section-slider .swiper-button-next.swiper-button-disabled,
    .section-slider .swiper-button-prev.swiper-button-disabled {
        opacity: 0;
        cursor: auto;
        pointer-events: none;
    }

.modal .modal-content.search-modal .top-search {
    max-width: inherit;
    border: none;
}

.modal .modal-content.search-modal {
    overflow: hidden;
    padding: 4px;
}

    .modal .modal-content.search-modal .input-field > label {
        color: #243746;
        font-size: 26px;
    }

    .modal .modal-content.search-modal .top-search .input-field {
        margin: 0;
    }

        .modal
        .modal-content.search-modal
        .top-search
        .input-field
        input[type="search"] {
            height: 64px;
            border-bottom: 0 !important;
            box-shadow: none !important;
        }

    .modal .modal-content.search-modal .input-field > label i {
        font-size: 34px;
        line-height: 64px;
        width: 60px;
        text-align: center;
        height: 64px;
        cursor: pointer;
    }

    .modal
    .modal-content.search-modal
    .input-field
    input[type="search"]:not(.browser-default) {
        color: #000000;
    }

.section-nav {
    background-color: #e9e9e9;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    display: -webkit-flex;
    -webkit-align-items: center;
    -webkit-justify-content: center;
}

.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 71px;
    z-index: 99;
}

.section-nav .container {
    padding: 0 0;
    text-align: right;
}

.pf-tab-wrapp .nav-scroller {
    padding: 16px 0;
}

.pf-tab-wrapp {
    overflow: hidden;
    width: 100%;
    background-color: #e9e9e9;
    text-align: center;
}

.tabs.pf-tab {
    background-color: transparent;
    padding: 0 30px;
    display: inline-block;
    vertical-align: middle;
    width: auto;
    max-width: 100%;
    text-align: center;
    height: auto;
}

    .tabs.pf-tab .tab {
        line-height: inherit;
        height: auto;
        z-index: 8;
    }

        .tabs.pf-tab .tab a {
            min-width: 180px;
            font-size: 18px;
            font-weight: 400;
            padding: 0 24px;
            text-transform: none;
            color: #384957;
            height: 48px;
            line-height: 48px;
            vertical-align: top;
            display: inline-block;
        }

            .tabs.pf-tab .tab a span {
                display: inline-block;
                position: relative;
                z-index: 2;
                margin: 0 auto;
            }

    .tabs.pf-tab .indicator {
        margin-right: -5px;
        margin-left: -1px;
        background-color: #ef4023;
        height: 100%;
        z-index: 0;
        display: none;
    }

    .tabs.pf-tab .tab a:hover {
        color: #000 !important;
    }

    .tabs.pf-tab .tab a.highlighted-menu-item {
        border-bottom: 1px solid #ef4023;
    }

    .tabs.pf-tab .tab a.active span {
        border-bottom: 3px solid #ef4023;
        display: inline-block;
        line-height: normal;
    }

.page-title {
    position: absolute;
    left: 0;
    bottom: 100%;
    top: inherit;
    text-align: left;
    padding: 16px 0;
}

    .page-title h2 {
        margin: 0;
        text-transform: uppercase;
        color: #ffffff;
        font-size: 50px;
        line-height: 110%;
        font-weight: bold;
    }

.quotes-section {
    background-color: #eec041;
}

    .quotes-section .container {
        padding: 3rem 0;
    }

.col.img-col {
    position: absolute;
    right: 0 !important;
    bottom: 0 !important;
    height: 100%;
    padding-top: 24px;
}

    .col.img-col img {
        height: 100%;
        width: 100%;
        width: 100%;
        object-fit: contain;
        object-position: bottom;
        object-fit: contain;
    }

.quotes {
    font-size: 40px;
    font-weight: bold;
    line-height: 125%;
    text-align: center;
    color: #fff;
    position: relative;
}

    .quotes q {
        display: inline-block;
        width: 100%;
        padding: 32px 0 24px;
    }

        .quotes q:before,
        .quotes q:after {
            display: none;
        }

    .quotes .left-quote {
        float: left;
        display: inline-block;
        width: 100%;
        text-align: left;
        position: relative;
        font-size: 50px;
        color: #243746;
    }

    .quotes .right-quote {
        float: right;
        display: inline-block;
        width: 100%;
        text-align: right;
        position: relative;
        font-size: 50px;
        color: #243746;
    }

    .quotes .left-quote:after {
        content: "";
        position: absolute;
        right: 0;
        left: inherit;
        top: 22px;
        width: calc(100% - 60px);
        width: -webkit-calc(100% - 60px);
        height: 4px;
        background-color: #243746;
        border-radius: 2px;
    }

    .quotes .right-quote:after {
        content: "";
        position: absolute;
        left: 0;
        right: inherit;
        top: 22px;
        width: calc(100% - 60px);
        width: -webkit-calc(100% - 60px);
        height: 4px;
        background-color: #243746;
        border-radius: 2px;
    }

    .quotes .author {
        display: inline-block;
        width: 100%;
        padding: 12px 0 0;
        font-size: 28px;
        color: #243746;
        vertical-align: top;
    }

.videoWrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
}

    .videoWrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .videoWrapper .preview {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 7;
        cursor: pointer;
        overflow: hidden;
    }

        .videoWrapper .preview i {
            color: #ef4023;
            font-size: 80px;
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            -webkit-transform: translate(-50%, -50%);
            -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.16, 0.68, 0.43, 0.99);
            -moz-transition: -moz-transform 0.4s cubic-bezier(0.16, 0.68, 0.43, 0.99);
            -o-transition: -o-transform 0.4s cubic-bezier(0.16, 0.68, 0.43, 0.99);
            transition: transform 0.4s cubic-bezier(0.16, 0.68, 0.43, 0.99);
            z-index: 4;
        }

            .videoWrapper .preview i:before {
                z-index: 2;
            }

            .videoWrapper .preview i:after {
                content: "";
                position: absolute;
                background-color: #ffffff;
                background-position: center center;
                background-repeat: no-repeat;
                background-size: 70% auto;
                width: 90%;
                height: 90%;
                left: 4%;
                top: 5%;
                border-radius: 50%;
                z-index: -1;
            }

        .videoWrapper .preview img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            vertical-align: top;
            transition: all ease 0.4s;
        }

        .videoWrapper .preview:hover i:after {
            background-image: url(content/images/logos/piramal-foundation-anim.gif);
        }

        .videoWrapper .preview:hover i {
            transform: translate(-50%, -50%) scale(1.2);
            -webkit-transform: translate(-50%, -50%) scale(1.2);
        }

        .videoWrapper .preview:hover img {
            transform: scale(1);
            -webkit-transform: scale(1);
        }
/*Value-css*/

.value-wrapp {
    position: relative;
    z-index: 8;
}

.value-section {
    max-width: 1100px;
    width: 100%;
    display: block;
    padding: 20px;
    min-height: 450px;
    height: 18vw;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

    .value-section .half-circle {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translate(-50%, -50%);
        border: 4px solid #243746;
        min-width: 400px;
        min-height: 400px;
        width: 750px;
        height: 750px;
        border-radius: 50%;
    }

.value-circle-btn {
    min-width: 120px;
    min-height: 120px;
    width: 5vw;
    height: 5vw;
    border: 4px solid #243746;
    text-align: center;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    display: -webkit-flex;
    -webkit-align-items: center;
    -webkit-justify-content: center;
    position: absolute;
    top: 20%;
    left: -3%;
    background: #ffffff;
    color: #243746;
    text-transform: uppercase;
    font-size: 18px;
    font-family: "Calibri-Bold";
    line-height: 155%;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
}

    .value-circle-btn.action {
        top: -3%;
        left: 19%;
    }

    .value-circle-btn.care {
        top: -3%;
        left: 62%;
    }

    .value-circle-btn.impact {
        top: 20%;
        left: 86%;
    }

    .value-circle-btn.active {
        background-color: #243746;
        border-color: #243746;
        color: #ffffff;
    }

.value-section .value-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    /*   border: 2px dotted rgba(255,255,255,0.60);*/
    width: 450px;
    padding: 20px;
    text-align: center;
    height: 450px;
    border-radius: 50%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    display: -webkit-flex;
    -webkit-align-items: flex-start;
    -webkit-justify-content: center;
    background-color: #243746;
}

    .value-section .value-content:after {
        content: "";
        width: 110%;
        height: 110%;
        border: 4px dotted #243746;
        border-radius: 50%;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
    }

    .value-section .value-content .value-inner-content {
        width: 87%;
        color: #ffffff;
        display: none !important;
    }

        .value-section .value-content .value-inner-content.active {
            display: block !important;
        }

.value-content .value-inner-content h4 {
    color: #ffffff;
    font-family: "Calibri-Bold";
    margin-top: 5%;
    display: inline-block;
    position: relative;
}
/*  .value-content .value-inner-content h4:after {
        content: '';
        width: 70px;
        height: 2px;
        background-color: #ee5037;
        position: absolute;
        bottom: -6px;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        transition: all ease 0.8s;
    }*/
.value-content .value-inner-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    line-height: 135%;
    margin: 5px 0;
    display: block;
}

    .value-content .value-inner-content p strong {
        color: rgba(255, 255, 255, 1);
        font-family: "Calibri-Bold";
    }

.value-section .value-content #knowledge.value-inner-content h4 {
    margin-top: 9%;
}

.value-content-mobile {
    padding-bottom: 30px;
}

.value-content {
    padding: 0 24px;
    text-align: left;
}
/*Value-css*/

.page-tab {
    text-transform: uppercase;
}

    .page-tab ul {
        display: inline-block;
        vertical-align: top;
        width: 100%;
    }

        .page-tab ul li {
            float: left;
            position: relative;
            padding: 10px 20px;
        }

            .page-tab ul li:first-child {
                padding-left: 0;
            }

            .page-tab ul li:after {
                content: "";
                position: absolute;
                right: -1px;
                top: 50%;
                transform: translateY(-50%);
                -webkit-transform: translateY(-50%);
                width: 2px;
                height: 24px;
                background-color: #225b7f;
            }

    .page-tab a {
        color: #225b7f;
        font-size: 24px;
        line-height: 24px;
        display: inline-block;
        padding: 10px 25px;
        vertical-align: top;
        float: left;
        position: relative;
        border-radius: 25px;
        transition: all ease 0.4s;
        text-align: center;
        background-color: #dee0e2;
    }
    /*.page-tab ul li:first-child a {
	padding-left: 0;
}*/
    .page-tab ul li:last-child::after {
        display: none;
    }

    .page-tab a:hover {
    }

    .page-tab a.active {
        background-color: #fd4513;
        color: #ffffff;
        font-weight: bold;
        cursor: default;
    }
/*.page-tab ul li:first-child a.active {
	padding-left: 25px;
}*/
.people-wrapp {
    text-align: left;
    padding: 2rem 0 0 0;
    margin-right: -56px;
}

    .people-wrapp figure {
        margin: 0 54px 32px 0;
        max-width: 300px;
        display: inline-block;
        text-align: left;
    }

        .people-wrapp figure a {
            display: inline-block;
            vertical-align: top;
            color: #434343;
        }

            .people-wrapp figure a .img {
                border-radius: 4px;
                display: inline-block;
                overflow: hidden;
                vertical-align: top;
                -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
                box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
            }

                .people-wrapp figure a .img img {
                    width: 100%;
                    vertical-align: bottom;
                    filter: sepia(0);
                    -webkit-filter: sepia(0);
                    transition: all 0.3s ease-in-out;
                    -webkit-transition: all 0.3s ease-in-out;
                }

            .people-wrapp figure a:hover .img img {
                filter: sepia(1);
                -webkit-filter: sepia(1);
            }

        .people-wrapp figure figcaption {
            padding: 12px 0;
        }

            .people-wrapp figure figcaption h5 {
                margin: 0;
                font-size: 22px;
                font-weight: normal;
                font-family: "calibri";
                color: #ef4023;
                padding: 6px 0;
            }

            .people-wrapp figure figcaption > span {
                font-size: 16px;
                line-height: 22px;
                display: inline-block;
                margin: 6px 0;
            }

    .people-wrapp article {
        display: block;
        padding: 0;
        padding-right: 56px;
        text-align: left;
        margin-bottom: 24px;
    }

        .people-wrapp article .img {
            display: inline-block;
            max-width: 300px;
            vertical-align: top;
            float: left;
            margin-right: 24px;
            overflow: hidden;
            border-radius: 4px;
            margin-bottom: 14px;
            -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        }

            .people-wrapp article .img img {
                width: 100%;
                vertical-align: top;
            }

        .people-wrapp article .content {
            padding: 0 0 24px 0;
        }

            .people-wrapp article .content h5 {
                margin-top: 0;
                font-size: 22px;
                font-family: "calibri";
                font-weight: normal;
                color: #ef4023;
                margin-bottom: 2px;
            }

            .people-wrapp article .content .designation {
                display: -webkit-box;
                display: box;
                font-size: 16px;
                vertical-align: top;
                margin-bottom: 12px;
                line-height: 22px;
            }

            .people-wrapp article .content p {
                font-size: 18px;
                line-height: 170%;
                text-align: justify;
                color: #666;
                margin-bottom: 20px;
            }

                .people-wrapp article .content p:last-child {
                    margin-bottom: 0;
                }

.crt-feed-container .crt-load-more a {
    text-transform: uppercase;
    border-color: transparent;
    font-size: 23px;
    letter-spacing: 0.9px;
    font-weight: bold;
    padding: 0 40px;
    height: 60px;
    line-height: 60px;
    border-radius: 30px;
    background-color: #243746 !important;
    color: #fff !important;
}

.crt-feed.crt-feed-branded .crt-logo {
    display: none !important;
}

.home-page .footer-become-change {
    display: none;
}

.gridtab {
    margin-left: -24px;
    margin-right: -24px;
}

    .gridtab > dt {
        padding: 24px 30px !important;
        background: none;
        border-color: transparent !important;
        /* border-radius: 4px; */
    }

    .gridtab > dd {
        border-color: transparent !important;
        background: #e9e9e9 !important;
        /* box-shadow: 0px 0px 6px -1px rgba(0, 0, 0, 0.4);
  border-radius: 4px; */
    }

    .gridtab > dt.is-active {
        background: #e9e9e9 !important;
        /* box-shadow: 0px 0px 6px -1px rgba(0, 0, 0, 0.4); */
    }

.people-grid .content {
    padding: 22px 24px;
}

dl.people-grid {
    max-width: 700px;
    margin: 0 auto;
}

.gridtab > dt:after {
    content: "";
    position: absolute;
    left: 0;
    height: calc(0% + 8px);
    height: -webkit-calc(0% + 8px);
    width: 100%;
    background-color: #e9e9e9;
    bottom: -4px;
    opacity: 0;
    visibility: hidden;
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
}

.gridtab > dt.is-active:after {
    opacity: 1;
    visibility: visible;
    height: calc(0% + 8px);
    height: -webkit-calc(0% + 8px);
}

.people-grid .content p {
    font-size: 14px;
    line-height: 160%;
    margin-bottom: 1rem;
    text-align: justify;
    color: #4e4e4e;
}

    .people-grid .content p strong {
        font-weight: bold;
    }

    .people-grid .content p:last-child {
        margin-bottom: 0;
    }

.gridtab > dd > .gridtab__controls {
    right: 0px;
    top: 2px;
    margin: 0;
}

    .gridtab > dd > .gridtab__controls > .gridtab__close {
        margin: 0;
        background-color: transparent;
    }

        .gridtab > dd > .gridtab__controls > .gridtab__arrow:before,
        .gridtab > dd > .gridtab__controls > .gridtab__arrow:after,
        .gridtab > dd > .gridtab__controls > .gridtab__close:before,
        .gridtab > dd > .gridtab__controls > .gridtab__close:after {
            width: 2px;
            height: 16px;
            background: #243746;
        }

.leader-grid {
    margin-left: -3rem;
    margin-right: -3rem;
}

.leader-grid-box {
    width: 28%;
    padding: 3rem !important;
}

.profile-thum {
    position: relative;
    z-index: 2;
    margin: 0;
    width: 100%;
    padding: 0;
}

.people-grid .profile-thum {
    cursor: pointer;
    padding: 0 10px;
}

    .people-grid .profile-thum > .img {
        width: 100%;
    }

.profile-thum > .img {
    display: block;
    vertical-align: top;
    width: 90%;
    margin: auto;
    overflow: hidden;
    transition: all ease 0.4s;
    -webkit-transition: all ease 0.4s;
    position: relative;
}

    .profile-thum > .img:before {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        width: 100%;
        height: 100%;
        background-color: #dae2e8;
        z-index: 1;
        padding-top: 75%;
        transition: all ease 0.3s;
        -webkit-transition: all ease 0.3s;
    }

.leader-grid-box .profile-thum > .img:before {
    height: 100%;
    background-color: transparent !important;
}

/* .leader-grid-box .profile-thum:hover > .img{
  transform: scale(1.1);
} */

.profile-thum > .img img {
    vertical-align: top;
    width: 100%;
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    /* opacity: 0.9; */
    position: relative;
    z-index: 2;
}

.profile-thum:hover > .img img {
    opacity: 1;
}

.profile-thum:hover > .img:before {
    background-color: #243746;
}

.is-active .profile-thum > .img img {
    opacity: 1;
}

.is-active .profile-thum > .img:before {
    background-color: #243746;
}

.profile-thum figcaption {
    display: inline-block;
    width: 100%;
}

    .profile-thum figcaption h5 {
        font-size: 18px;
        margin: 16px 0 6px;
        color: #243746;
        font-weight: 600;
    }

.leader-grid-box .profile-thum figcaption h5 {
    text-align: center;
    margin: 22px 0 6px;
}

.profile-thum:hover figcaption h5 {
    color: #ef4023;
}

.is-active .profile-thum figcaption h5 {
    color: #ef4023;
}

.profile-thum figcaption span {
    font-size: 14px;
    line-height: 20px;
    display: inline-block;
    font-style: italic;
    width: 100%;
    font-weight: 300;
    color: #243746;
}
/*.gridtab--0 >dt.is-active .profile-thum > .img img {
    filter: sepia(1);
    -webkit-filter: sepia(1);
}*/

ul.list {
    padding-left: 32px;
    margin-bottom: 32px;
    font-size: 14px;
    line-height: 160%;
    color: #4e4e4e;
}

    ul.list li {
        list-style-type: inherit;
        padding: 4px 0;
        position: relative;
    }

        ul.list li:before {
            content: "";
            position: absolute;
            left: inherit;
            right: 100%;
            top: 0;
            width: 10px;
            height: 10px;
            display: inline-block;
            background-color: #e13f24;
            border-radius: 50%;
            margin: 14px;
        }

.pf-tab-wrapp {
    width: 100%;
    overflow: hidden;
    padding: 16px 0;
}

    .pf-tab-wrapp .nav-scroller {
        overflow: auto;
        white-space: nowrap;
    }

    .pf-tab-wrapp .nav-scroller,
    .nav-scroller-wrapper {
        background: none;
    }

    .pf-tab-wrapp .nav-scroller-nav {
        padding: 0 38px;
        margin: 0;
        background: none;
        height: auto;
        line-height: inherit;
    }

    .pf-tab-wrapp .nav-scroller-item {
        padding: 0 1.6rem;
        display: inline-block;
        height: 46px;
        line-height: 46px;
        background-color: #f8f8f8;
        border-radius: 6px;
        border: 0 !important;
        margin-right: 6px;
        color: #182834;
    }

    .pf-tab-wrapp .nav-scroller-btn {
        top: 0;
        height: 100%;
        border: none;
        transform: none;
        -webkit-transform: none;
        color: #ffffff !important;
        opacity: 1;
        background: #243746;
        box-shadow: -5px 0 16px -1px rgba(0, 0, 0, 0.4);
    }

        .pf-tab-wrapp .nav-scroller-btn:hover,
        .nav-scroller-btn:focus {
            opacity: 1;
            background: #243746;
        }

        .pf-tab-wrapp .nav-scroller-btn i {
            font-size: 34px;
        }

        .pf-tab-wrapp .nav-scroller-btn.nav-scroller-btn--left {
            box-shadow: 5px 0 16px -1px rgba(0, 0, 0, 0.4);
        }

.media-gallery .grid.effect-6 {
    max-width: inherit;
    margin-top: 0;
    overflow: hidden;
}

.blog-wrapper .search-media {
    padding: 0 12px;
}

.media-gallery .grid > li {
    padding: 12px;
}

.media-gallery .btn.card-btn {
    width: auto;
    display: inline-block;
}

.blog-wrapper {
    padding-top: 1.2em;
    padding-bottom: 4em;
    box-shadow: 0 0 55px rgba(0, 0, 0, 0.07);
    margin-bottom: 3rem;
}

    .blog-wrapper:last-child {
        margin-bottom: 0;
    }

.post-source {
    width: 100%;
    font-size: 18px;
    overflow: hidden;
    margin-bottom: 12px;
}

    .post-source > span {
        display: inline-block;
        float: left;
        width: 50%;
        text-align: left;
        color: #c9cacb;
    }

        .post-source > span > i {
            font-size: 20px;
            margin-right: 4px;
        }

        .post-source > span.comments {
            text-align: right;
        }

.light-bg-form input:not([type]),
.light-bg-form input[type="text"]:not(.browser-default),
.light-bg-form input[type="password"]:not(.browser-default),
.light-bg-form input[type="email"]:not(.browser-default),
.light-bg-form input[type="url"]:not(.browser-default),
.light-bg-form input[type="time"]:not(.browser-default),
.light-bg-form input[type="date"]:not(.browser-default),
.light-bg-form input[type="datetime"]:not(.browser-default),
.light-bg-form input[type="datetime-local"]:not(.browser-default),
.light-bg-form input[type="tel"]:not(.browser-default),
.light-bg-form input[type="number"]:not(.browser-default),
.light-bg-form input[type="search"]:not(.browser-default),
.light-bg-form textarea.materialize-textarea {
    border-bottom-width: 1px;
    border-bottom-color: #283745;
    color: #283745;
}

.light-bg-form .input-field input[type="search"]:focus:not(.browser-default) {
    background-color: transparent;
}

.light-bg-form .input-field input[type="search"] ~ .mdi-navigation-close,
.light-bg-form .input-field input[type="search"] ~ .material-icons {
    height: 3rem;
    line-height: 3rem;
    font-size: 24px;
    color: #f74827 !important;
}

.light-bg-form .select-wrapper .caret {
    fill: #f74827;
}

.blog-details-wrapper {
    padding: 2rem 0;
}

.blog-headline {
    color: #c9cacb;
    font-size: 24px;
}

    .blog-headline h3 {
        text-transform: uppercase;
        font-weight: bold;
        font-size: 42px;
        color: #02205f;
        margin: 16px 0 0 0;
    }

    .blog-headline .blog-by {
        display: inline-block;
        width: 100%;
        text-transform: uppercase;
        margin: 6px 0;
    }

    .blog-headline .blog-date-details {
        display: inline-block;
        width: 100%;
        padding: 8px 0;
    }

        .blog-headline .blog-date-details span {
            display: inline-block;
            padding: 0 12px;
            border-left: 2px solid #c9cacb;
            vertical-align: middle;
        }

        .blog-headline .blog-date-details > span > i {
            display: inline-block;
            vertical-align: top;
            margin-right: 4px;
        }

        .blog-headline .blog-date-details span:first-child {
            padding-left: 0;
            border-left: 0;
        }

.blog-details-wrapper .paragraph img {
    margin-bottom: 1rem;
}

.sidebar {
    padding: 12px;
}

.sideblock {
    padding: 24px;
    width: 100%;
    background: #f7f5f8;
    margin-bottom: 24px;
}

.lightgrey-clr .sideblock {
    background-color: #f1f5fa;
}

.sideblock .title {
    display: inline-block;
    width: 100%;
    font-size: 26px;
    letter-spacing: 0.4px;
    font-weight: bold;
    text-transform: uppercase;
    color: #243746;
}

.sideblock ul {
    display: inline-block;
    width: 100%;
    padding: 6px 0;
}

    .sideblock ul li {
        display: inline-block;
        width: 100%;
        padding: 6px 0;
    }

.blog-years {
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid #999999;
    font-size: 22px;
    color: #999999;
    padding: 0 0px;
    box-sizing: border-box;
}

    .blog-years span {
        display: inline-block;
        padding: 8px 16px;
        position: relative;
    }

    .blog-years .blog-count {
        float: right;
        color: #ef4023;
    }

    .blog-years.active .year:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -1px;
        width: 100%;
        height: 5px;
        background-color: #ef4023;
    }

.recent-post {
    font-size: 22px;
    padding: 24px 12px;
    color: #999999;
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid #999999;
}

.sideblock .tags {
    padding: 12px 0;
}

    .sideblock .tags a {
        display: inline-block;
        text-transform: uppercase;
        font-size: 18px;
        border: 1px solid #243746;
        border-radius: 4px;
        padding: 4px 12px;
        color: #243746;
        font-weight: bold;
        letter-spacing: 0.4px;
        margin: 0 12px 12px 0;
    }

.sideblock-content {
    max-height: 440px;
    overflow: auto;
}

.mCSB_scrollTools {
    z-index: 2;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.1);
    filter: "alpha(opacity=10)";
    -ms-filter: "alpha(opacity=10)";
    width: 2px;
}
/* .mCSB_scrollTools .mCSB_draggerRail{
  background-color: #000;
  background-color: rgba(0,0,0,0.1);
  filter: "alpha(opacity=10)";
  -ms-filter: "alpha(opacity=10)";
  width: 2px;

} */
.post-block .paragraph .mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical,
.post-block
.paragraph
.mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical {
    right: -23px;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 6px;
    margin-right: 0;
    left: -2px;
}

.post-block
.quote-para
.scrollbar.mCS-autoHide > .mCustomScrollBox > .mCSB_scrollTools,
.post-block
.quote-para
.scrollbar.mCS-autoHide > .mCustomScrollBox ~ .mCSB_scrollTools {
    opacity: 1;
}

.post-block
.quote-para
.scrollbar.none.mCS-autoHide > .mCustomScrollBox ~ .mCSB_scrollTools {
    opacity: 0 !important;
}

.post-block
.quote-para
.scrollbar.none.mCustomScrollBox:hover ~ .mCSB_scrollTools {
    opacity: 0 !important;
}

.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.4);
    filter: "alpha(opacity=40)";
    -ms-filter: "alpha(opacity=40)";
}

.post-block h2 .pf-circle {
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    left: inherit;
    right: calc(100% + 40px);
    right: -webkit-calc(100% + 40px);
    width: 130px;
    height: 130px;
}

.reverse .post-block h2 .pf-circle {
    right: inherit;
    left: calc(100% + 40px);
    left: -webkit-calc(100% + 40px);
}

.post-block:hover .pf-circle > i {
    background-position: right center;
    background-color: #ffffff;
}

.fixed-tab {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translate(100%, -50%);
    z-index: 9;
    padding: 0 1.4%;
    transition: all ease 0.4s;
    -webkit-transition: all ease 0.4s;
}

    .fixed-tab.active {
        transform: translate(0%, -50%);
    }

    .fixed-tab ul {
        display: inline-block;
        vertical-align: top;
    }

        .fixed-tab ul li {
            padding: 10px 0;
        }

    .fixed-tab .pf-circle {
        width: 50px;
        height: 50px;
        opacity: 0.4;
        transition: all ease 0.4s;
        -webkit-transition: all ease 0.4s;
    }

        .fixed-tab .pf-circle:hover {
            opacity: 0.8;
        }

        .fixed-tab .pf-circle.highlighted-menu-item {
            opacity: 1;
            transform: scale(1.1);
        }

        .fixed-tab .pf-circle.bgimg:before {
            width: calc(100% + 10px);
            height: calc(100% + 10px);
            width: -webkit-calc(100% + 10px);
            height: -webkit-calc(100% + 10px);
        }

        .fixed-tab .pf-circle.bgimg:after {
            width: -webkit-calc(100% + 20px);
            height: -webkit-calc(100% + 20px);
            width: calc(100% + 20px);
            height: calc(100% + 20px);
        }

ul.alumni-diversion {
    width: 100%;
    padding: 12px 0;
}

.alumni-diversion li {
    width: 33.33%;
    float: left;
    padding: 0 8px;
}

    .alumni-diversion li figure {
        margin: 0;
        text-align: center;
    }

        .alumni-diversion li figure .img {
            width: 100px;
            height: 100px;
            line-height: 100px;
            border-radius: 50%;
            overflow: hidden;
            font-size: 50px;
            color: #ffffff;
            font-weight: bold;
            background-color: #fd4513;
            display: inline-block;
            margin: 0 auto;
            text-align: center;
            vertical-align: top;
        }

        .alumni-diversion li figure .title {
            display: inline-block;
            width: 100%;
            text-align: center;
            font-size: 22px;
            padding: 4px 0;
            text-transform: uppercase;
            color: #fd4513;
            font-weight: bold;
            vertical-align: top;
        }

        .alumni-diversion li figure figcaption p {
            font-size: 16px;
            text-align: center;
        }

    .alumni-diversion li:nth-child(2) {
        border-left: 1px solid #fd4513;
        border-right: 1px solid #fd4513;
        box-sizing: border-box;
    }

.brand-cta img {
    height: 100%;
    object-fit: cover;
}

.brand-cta .container {
    padding: 42px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-cta .brand-text,
.brand-cta .brand-cta {
    display: inline-block;
    padding: 0 1rem;
}

.brand-cta .brand-text {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
}
/* .brand-cta .brand-logo span {
  display: inline-block;
  width: 300px;
} */
.brand-cta .brand-cta .btn {
    background-color: transparent;
    border: 2px solid #fff;
    border-radius: 5px;
    color: #fff;
    font-weight: 400;
    white-space: nowrap;
}

.horizontal.alumni-diversion li {
    display: block;
    width: 100%;
    text-align: left;
    position: relative;
    margin: 0;
    padding: 3% 0;
    border: none;
}

    .horizontal.alumni-diversion li figure {
        text-align: left;
    }

        .horizontal.alumni-diversion li figure .img {
            position: relative;
            overflow: visible;
        }

        .horizontal.alumni-diversion li figure .title {
            position: absolute;
            right: 0;
            text-align: left;
            font-size: 18px;
            width: calc(100% - 123px);
            width: -webkit-calc(100% - 123px);
            line-height: 134%;
            top: 50%;
            transform: translateY(-50%);
            -webkit-transform: translateY(-50%);
            color: #253746;
            font-weight: bold;
            text-transform: none;
            text-align: left;
        }

    .horizontal.alumni-diversion li:nth-child(2) .img:after,
    .horizontal.alumni-diversion li:nth-child(2) .img:before {
        content: "";
        background-color: red;
        position: absolute;
        top: calc(100% + 10px);
        top: -webkit-calc(100% + 10px);
        left: 50%;
        transform: translateX(-50);
        width: 2px;
        height: 22px;
    }

    .horizontal.alumni-diversion li:nth-child(2) .img:before {
        top: inherit;
        bottom: calc(100% + 7px);
        bottom: -webkit-calc(100% + 7px);
    }

    .horizontal.alumni-diversion li figure .img img {
        width: 80%;
        margin: 10% auto;
    }

.mCSB_horizontal.mCSB_inside > .mCSB_container {
    margin: 8px 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal {
    bottom: -7px;
}

.form-wrapp .input-field {
    margin-top: 1.4rem;
    margin-bottom: 1.4em;
}

    .form-wrapp .input-field > label {
        color: #243746 !important;
        font-weight: normal;
    }

.form-wrapp input:not([type]),
.form-wrapp input[type="text"]:not(.browser-default),
.form-wrapp input[type="password"]:not(.browser-default),
.form-wrapp input[type="email"]:not(.browser-default),
.form-wrapp input[type="url"]:not(.browser-default),
.form-wrapp input[type="time"]:not(.browser-default),
.form-wrapp input[type="date"]:not(.browser-default),
.form-wrapp input[type="datetime"]:not(.browser-default),
.form-wrapp input[type="datetime-local"]:not(.browser-default),
.form-wrapp input[type="tel"]:not(.browser-default),
.form-wrapp input[type="number"]:not(.browser-default),
.form-wrapp input[type="search"]:not(.browser-default),
.form-wrapp textarea.materialize-textarea {
    color: #243746;
    border-width: 1px !important;
    border-color: #243746 !important;
}

    .form-wrapp input:not([type]):focus:not([readonly]),
    .form-wrapp input[type="text"]:not(.browser-default):focus:not([readonly]),
    .form-wrapp input[type="password"]:not(.browser-default):focus:not([readonly]),
    .form-wrapp input[type="email"]:not(.browser-default):focus:not([readonly]),
    .form-wrapp input[type="url"]:not(.browser-default):focus:not([readonly]),
    .form-wrapp input[type="time"]:not(.browser-default):focus:not([readonly]),
    .form-wrapp input[type="date"]:not(.browser-default):focus:not([readonly]),
    .form-wrapp input[type="datetime"]:not(.browser-default):focus:not([readonly]),
    .form-wrapp
    input[type="datetime-local"]:not(.browser-default):focus:not([readonly]),
    .form-wrapp input[type="tel"]:not(.browser-default):focus:not([readonly]),
    .form-wrapp input[type="number"]:not(.browser-default):focus:not([readonly]),
    .form-wrapp input[type="search"]:not(.browser-default):focus:not([readonly]),
    .form-wrapp textarea.materialize-textarea:focus:not([readonly]) {
        box-shadow: 0 1px 0 0 #243746;
    }

    .form-wrapp input.valid:not([type]),
    .form-wrapp input.valid:not([type]):focus,
    .form-wrapp input.valid[type="text"]:not(.browser-default),
    .form-wrapp input.valid[type="text"]:not(.browser-default):focus,
    .form-wrapp input.valid[type="password"]:not(.browser-default),
    .form-wrapp input.valid[type="password"]:not(.browser-default):focus,
    .form-wrapp input.valid[type="email"]:not(.browser-default),
    .form-wrapp input.valid[type="email"]:not(.browser-default):focus,
    .form-wrapp input.valid[type="url"]:not(.browser-default),
    .form-wrapp input.valid[type="url"]:not(.browser-default):focus,
    .form-wrapp input.valid[type="time"]:not(.browser-default),
    .form-wrapp input.valid[type="time"]:not(.browser-default):focus,
    .form-wrapp input.valid[type="date"]:not(.browser-default),
    .form-wrapp input.valid[type="date"]:not(.browser-default):focus,
    .form-wrapp input.valid[type="datetime"]:not(.browser-default),
    .form-wrapp input.valid[type="datetime"]:not(.browser-default):focus,
    .form-wrapp input.valid[type="datetime-local"]:not(.browser-default),
    .form-wrapp input.valid[type="datetime-local"]:not(.browser-default):focus,
    .form-wrapp input.valid[type="tel"]:not(.browser-default),
    .form-wrapp input.valid[type="tel"]:not(.browser-default):focus,
    .form-wrapp input.valid[type="number"]:not(.browser-default),
    .form-wrapp input.valid[type="number"]:not(.browser-default):focus,
    .form-wrapp input.valid[type="search"]:not(.browser-default),
    .form-wrapp input.valid[type="search"]:not(.browser-default):focus,
    .form-wrapp textarea.materialize-textarea.valid,
    .form-wrapp textarea.materialize-textarea.valid:focus,
    .form-wrapp .select-wrapper.valid > input.select-dropdown {
        box-shadow: 0 1px 0 0 #243746;
    }

.form-wrapp {
    max-width: 1200px;
    margin: 0 auto;
}

    .form-wrapp .select-wrapper + label {
        top: -19px;
        transform: scale(0.8);
        -webkit-transform: scale(0.8);
        transform-origin: left bottom;
    }

    .form-wrapp ::-webkit-input-placeholder {
        /* Chrome/Opera/Safari */
        color: #243746;
    }

    .form-wrapp ::-moz-placeholder {
        /* Firefox 19+ */
        color: #243746;
    }

    .form-wrapp :-ms-input-placeholder {
        /* IE 10+ */
        color: #243746;
    }

    .form-wrapp :-moz-placeholder {
        /* Firefox 18- */
        color: #243746;
    }

    .form-wrapp .select-wrapper .caret {
        fill: #fd4513;
    }

    .form-wrapp textarea.materialize-textarea {
        background: #f9f9f9 !important;
        min-height: 150px;
        border: none !important;
        box-shadow: none !important;
        padding: 16px !important;
    }

.news-list {
    width: 100%;
}

    .news-list .news-list-wrapp {
        display: inline-block;
        vertical-align: top;
        width: 100%;
        padding: 12px 0;
    }

        .news-list .news-list-wrapp li {
            display: block;
            background-color: #eeeded;
            padding: 16px;
            border-bottom: 2px solid #56b291;
        }

.news-list-card {
    display: inline-block;
    width: 100%;
    vertical-align: top;
}

    .news-list-card .img {
        display: inline-block;
        float: left;
        width: 180px;
        height: 100px;
        padding-right: 12px;
        border-right: 2px dotted #42525f;
    }

        .news-list-card .img span {
            display: inline-block;
            overflow: hidden;
            border-radius: 3px;
            vertical-align: top;
            height: 100%;
        }

            .news-list-card .img span img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                vertical-align: top;
            }

    .news-list-card .caption {
        display: inline-block;
        float: left;
        width: calc(100% - 180px);
        width: -webkit-calc(100% - 180px);
        padding-left: 12px;
    }

        .news-list-card .caption h4 {
            font-size: 20px;
            line-height: 26px;
            margin: 0;
            color: #243746;
            height: 56px;
            margin-bottom: 8px;
            text-overflow: ellipsis;
            display: -webkit-box;
            display: -moz-box;
            display: -ms-box;
            display: box;
            -webkit-box-orient: vertical;
            -moz-box-orient: vertical;
            -ms-box-orient: vertical;
            box-orient: vertical;
            overflow: hidden;
            -webkit-line-clamp: 2;
            -moz-line-clamp: 2;
            -ms-line-clamp: 2;
            line-clamp: 2;
            overflow: hidden;
        }

    .news-list-card:hover .caption h4 {
        color: #d23015;
    }

    .news-list-card .news-details {
        color: #cccccc;
        font-size: 18px;
        padding: 6px 0;
    }

.news-details .date {
    display: inline-block;
}

    .news-details .date i {
        margin-right: 6px;
    }

.news-details .date {
    display: inline-block;
    padding-right: 8px;
    border-right: 1px solid #cccccc;
}

.news-details .source {
    padding-left: 8px;
}

.sideblock.grey {
    background-color: #e1e2e3 !important;
}

.sideblock-card .paragraph {
    width: 90%;
    margin: 0 auto;
}

.sideblock-card p {
    text-align: center;
}

.sideblock-card .img {
    display: inline-block;
    vertical-align: top;
    margin: 12px 0;
    height: 180px;
    overflow: hidden;
}

.sideblock-card .contact-info {
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    padding-bottom: 12px;
    margin-bottom: 6px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

    .sideblock-card .contact-info a {
        display: block;
        color: #ef4023;
        font-weight: bold;
        word-break: break-word;
        margin-bottom: 10px;
    }

        .sideblock-card .contact-info a i {
            vertical-align: top;
            line-height: 30px;
        }

.sideblock-card .action {
    padding: 12px 0 0 0;
    text-align: center;
}

.pagination {
    padding: 24px 0;
}

    .pagination li {
        border-radius: 50%;
        background-color: #ebeaea;
        height: auto;
        text-align: center;
        margin: 6px 4px;
        position: relative;
    }

        .pagination li a {
            width: 24px;
            height: 24px;
            line-height: 24px;
            font-size: 16px;
            display: inline-block;
            padding: 0;
            color: #999999;
        }

        .pagination li.arrow {
            background: none;
            height: 36px;
            line-height: 36px;
            margin-top: 0;
            margin-bottom: 0;
        }

            .pagination li.arrow a i {
                height: 33px;
                line-height: 20px;
                color: #ef4023;
            }

            .pagination li.arrow.disabled a i {
                color: #999999;
            }

        .pagination li.active {
            background-color: #ef4023;
        }

.awards-list {
}

    .awards-list.news-list .news-list-wrapp li {
        border-color: #1ca3ec;
    }

.reports-wrapp {
    width: 100%;
}

    .reports-wrapp ul {
        display: inline-block;
        width: 100%;
        text-align: center;
    }

        .reports-wrapp ul li {
            display: inline-block;
            padding: 18px 4% 26px;
        }

.reports-blk {
    display: inline-block;
    color: #ef4023;
}

    .reports-blk figure {
        margin: 0;
        padding: 20px;
        text-align: center;
        width: 150px;
        border: 3px solid #ef4023;
        color: #ef4023;
        position: relative;
        margin-bottom: 16px;
    }

        .reports-blk figure:before {
            content: "";
            position: absolute;
            left: 6px;
            top: 6px;
            width: calc(100% - 12px);
            height: calc(100% - 12px);
            border: 1px solid #ef4023;
        }

        .reports-blk figure > span {
            font-size: 60px;
            line-height: 120%;
            margin: 1rem 0;
            display: inline-block;
        }

        .reports-blk figure > figcaption {
            font-size: 20px;
            text-transform: uppercase;
            line-height: 120%;
            font-weight: bold;
            letter-spacing: 1px;
            color: #243746;
        }

            .reports-blk figure > figcaption > span {
                display: block;
                font-weight: normal;
                margin-top: 6px;
                letter-spacing: 0;
                font-size: 18px;
            }

    .reports-blk .btn {
        width: 100%;
    }

.horizon-reports-blk a {
    display: inline-block;
    vertical-align: top;
    width: 340px;
    height: 100px;
    border: 2px solid #ef4023;
    position: relative;
    color: #ef4023;
    transition: all ease 0.4s;
    -webkit-transition: all ease 0.4s;
}

    .horizon-reports-blk a:after {
        content: "";
        position: absolute;
        left: 6px;
        top: 6px;
        width: calc(100% - 12px);
        height: calc(100% - 12px);
        width: -webkit-calc(100% - 12px);
        height: -webkit-calc(100% - 12px);
        border: 1px solid #ef4023;
        transition: all ease 0.4s;
        -webkit-transition: all ease 0.4s;
        z-index: 4;
    }

.reports-logo {
    width: calc(100% - 50px);
    width: -webkit-calc(100% - 50px);
    float: left;
    height: 100%;
    vertical-align: bottom;
    display: flex;
    align-items: center;
    justify-content: center;
    display: -webkit-flex;
    -webkit-align-items: center;
    -webkit-justify-content: center;
    position: relative;
    z-index: 1;
}

    .reports-logo img {
        max-height: 100%;
        max-width: 100%;
        width: auto;
        height: auto;
        vertical-align: top;
    }

.horizon-reports-blk a .icon {
    width: 90px;
    height: 100%;
    float: left;
    text-align: center;
    font-size: 50px;
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: center;
    display: -webkit-flex;
    -webkit-align-items: center;
    -webkit-justify-content: center;
}

.horizon-reports-blk a .caption {
    display: inline-block;
    width: calc(100% - 140px);
    width: -webkit-calc(100% - 140px);
    float: left;
    text-align: left;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    padding: 12px 0 12px 2px;
    color: #001625;
    height: 100%;
    line-height: 17px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    display: -webkit-flex;
    -webkit-align-items: center;
    -webkit-justify-content: flex-start;
    transition: all ease 0.4s;
    -webkit-transition: all ease 0.4s;
}

    .horizon-reports-blk a .caption p > span {
        display: block;
        font-weight: normal;
        line-height: 16px;
        font-size: 14px;
        margin-top: 4px;
    }

strong {
    font-weight: 600;
}

.horizon-reports-blk a .download {
    width: 50px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    display: -webkit-flex;
    -webkit-align-items: center;
    -webkit-justify-content: center;
}

    .horizon-reports-blk a .download i {
        font-size: 28px;
        margin-right: 14px;
    }

.horizon-reports-blk a .caption p {
    overflow: hidden;
}

.horizon-reports-blk a:hover {
    background-color: #ef4023;
    color: #ffffff;
}

    .horizon-reports-blk a:hover::after {
        border-color: #ffffff;
    }

    .horizon-reports-blk a:hover .caption {
        color: #ffffff;
    }

.logo-reports-blk.horizon-reports-blk a:hover .caption {
    color: inherit;
}

.logo-reports-blk.horizon-reports-blk a:hover::after {
    border-color: inherit;
}

.logo-reports-blk.horizon-reports-blk a:hover {
    background-color: inherit;
    color: inherit;
}

.map {
    background-color: rgba(36, 55, 70, 1);
    height: 100%;
    padding-top: 72px;
    width: 100%;
}

    .map iframe {
        height: 100%;
        opacity: 0.6;
    }

.contact-way-wrapp {
}

    .contact-way-wrapp > ul {
        display: inline-block;
        vertical-align: top;
        width: 100%;
    }

        .contact-way-wrapp > ul > li {
            width: 25%;
            float: left;
            padding: 24px 0;
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            display: -webkit-flex;
            -webkit-align-items: center;
            -webkit-justify-content: center;
            border-right: 1px solid rgba(0, 0, 0, 0.1);
        }

.contact-way {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .contact-way .icon {
        display: inline-block;
        width: 80px;
        height: 80px;
        line-height: 80px;
        color: #fff;
        text-align: center;
        vertical-align: top;
        background-color: #fd4513;
        border-radius: 50%;
        font-size: 38px;
    }

    .contact-way .caption {
        display: inline-block;
        width: calc(100% - 100px);
        width: -webkit-calc(100% - 120px);
        padding-left: 16px;
        font-size: 14px;
        color: #434343;
        line-height: 1.5;
    }

        .contact-way .caption a {
            color: inherit;
        }

        .contact-way .caption address {
            font-style: normal;
        }

.initiatives-card-wrapp {
}

    .initiatives-card-wrapp > ul {
        display: inline-block;
        vertical-align: top;
        width: 100%;
    }

        .initiatives-card-wrapp > ul > li {
            display: inline-block;
            width: 25%;
            float: left;
            padding: 0 16px;
        }

.initiatives-card {
    margin: 0;
    background-color: #d5f2f0;
    color: #81d8d0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 0 60px -1px rgba(0, 0, 0, 0);
    -webkit-box-shadow: 0 0 60px -1px rgba(0, 0, 0, 0);
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
}

    .initiatives-card:hover {
        box-shadow: 0 0 60px -1px rgba(0, 0, 0, 0.3);
        -webkit-box-shadow: 0 0 60px -1px rgba(0, 0, 0, 0.3);
    }

.initiatives-img {
    padding: 16px 16px 46px 16px;
    text-align: center;
}

    .initiatives-img .title {
        display: inline-block;
        width: 100%;
        text-align: left;
        margin-bottom: 28px;
        font-weight: bold;
        font-size: 26px;
        text-transform: uppercase;
    }

.initiatives-card figcaption {
    background-color: #ffffff;
    padding: 12px 16px;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.2px;
}

    .initiatives-card figcaption a {
        display: inline-block;
        width: 100%;
        padding: 6px 0;
        vertical-align: top;
        color: inherit;
    }

        .initiatives-card figcaption a i {
            width: 25px;
            height: 25px;
            line-height: 25px;
            float: left;
        }

        .initiatives-card figcaption a span {
            display: inline-block;
            height: 25px;
            line-height: 25px;
            width: calc(100% - 25px);
            width: -webkit-calc(100% - 25px);
            float: left;
            padding-left: 4px;
            overflow-x: auto;
        }

.initiatives-card.health {
    background-color: #d5f2f0;
    color: #81d8d0;
}

.initiatives-card.education {
    background-color: #fdd9bf;
    color: #f9812a;
}

.initiatives-card.youth {
    background-color: #eddbfd;
    color: #c488f7;
}

.initiatives-card.sarvajal {
    background-color: #bae3f9;
    color: #1ca3ec;
}

.section-slider .swiper-wrapper {
    display: flex;
    align-items: flex-end;
    display: -webkit-flex;
    -webkit-align-items: flex-end;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
    background-color: inherit !important;
}

.journey-section {
    overflow: visible;
    background-color: #182834;
    display: inline-block;
    width: 100%;
}

.journey-tab.page-tab a {
    background: none !important;
    padding: 0;
    margin-top: -60px;
    transform: scale(0.85);
    -webkit-transform: scale(0.85);
}

    .journey-tab.page-tab a.active {
        transform: scale(1);
        -webkit-transform: scale(1);
    }

.journey-tab.page-tab ul li {
    padding: 0 18px;
    margin-bottom: 60px;
}

    .journey-tab.page-tab ul li:after {
        display: none;
    }

    .journey-tab.page-tab ul li > span {
        position: absolute;
        top: 100%;
        padding: 16px 0;
        text-align: center;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        color: #fff;
        font-weight: bold;
        font-size: 16px;
        line-height: 19px;
        visibility: hidden;
        opacity: 0;
        transition: all ease 0.4s;
        -webkit-transition: all ease 0.4s;
    }

    .journey-tab.page-tab ul li.activewrapp > span {
        visibility: visible;
        opacity: 1;
    }

    .journey-tab.page-tab ul li .pf-circle:before {
        background-color: #ffffff;
    }

    .journey-tab.page-tab ul li .pf-circle:after {
        display: none;
    }
/*-- timeline style --*/
.pf-timeline {
    width: 100%;
    color: #ffffff;
    margin: 0 auto;
    padding: 20px;
}

    .pf-timeline .timeline-nav {
        text-align: center;
    }

        .pf-timeline .timeline-nav .item {
            height: 90px;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            display: -webkit-flex;
            -webkit-align-items: flex-end;
            -webkit-justify-content: center;
            margin: 0 4%;
            cursor: pointer;
        }

.year-nav {
    position: relative;
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .year-nav span {
        display: inline-block;
        width: 16px;
        height: 16px;
        background-color: #ffffff;
        border-radius: 50%;
        vertical-align: top;
        position: relative;
        box-shadow: 0 0 0 0 #ef4023;
        transition: all ease 0.3s;
        -webkit-transition: all ease 0.3s;
    }

    .year-nav label {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        bottom: 100%;
        width: 100%;
        text-align: center;
        padding: 0;
        font-size: 18px;
        font-weight: 400;
        transition: all ease 0.3s;
        -webkit-transition: all ease 0.3s;
    }

.pf-timeline .timeline-nav .slick-current .year-nav span {
    transition: all ease 0.4s 0.6s;
    -webkit-transition: all ease 0.4s 0.6s;
}

.pf-timeline .timeline-nav .slick-current .year-nav label {
    transition: all ease 0.4s 0.6s;
    -webkit-transition: all ease 0.4s 0.6s;
}

.pf-timeline .timeline-nav .slick-center .year-nav span {
    box-shadow: 0 0 0 10px #ef4023;
}

.pf-timeline .timeline-nav .slick-center .year-nav label {
    font-weight: 600;
    font-size: 150%;
    bottom: 105%;
}

.pf-timeline .timeline-nav .item:hover .year-nav span {
    transform: scale(1.1);
}

.pf-timeline .timeline-nav .slick-list {
    width: 90%;
    margin: 0 auto;
}

    .pf-timeline .timeline-nav .slick-list:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 23px;
        width: 100%;
        height: 2px;
        background: -moz-linear-gradient( left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 6%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 94%, rgba(255, 255, 255, 0) 100% );
        background: -webkit-linear-gradient( left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 6%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 94%, rgba(255, 255, 255, 0) 100% );
        background: linear-gradient( to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 6%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 94%, rgba(255, 255, 255, 0) 100% );
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#00ffffff', GradientType=1 );
        background: #ffffff;
    }

.pf-timeline .timeline-nav .slick-track {
    position: relative;
    z-index: 2;
}

.pf-timeline .timeline-nav .slick-arrow {
    padding: 0;
    position: absolute;
    right: -10px;
    top: inherit;
    bottom: 6px;
    width: 38px;
    height: 38px;
    border: none;
    outline: none;
    background-image: url(content/images/icons/arrows.png);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: right center;
    background-color: transparent;
    font-size: 0;
    z-index: 3;
    cursor: pointer;
}

    .pf-timeline .timeline-nav .slick-arrow.slick-prev {
        right: inherit;
        left: -10px;
        background-position: left center;
    }

    .pf-timeline .timeline-nav .slick-arrow.slick-disabled {
        visibility: hidden;
        opacity: 0;
    }

.pf-timeline .slide-year {
    background-color: #203444;
    width: 100%;
    padding: 0;
    margin-top: 16px;
    text-align: center;
}

    .pf-timeline .slide-year .item {
        position: relative;
        height: 600px;
        padding: 24px;
    }

.pf-timeline .timeline-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #213646;
}

    .pf-timeline .timeline-bg img {
        opacity: 0.1;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

.pf-timeline .timeline-content {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    display: -webkit-flex;
    -webkit-align-items: center;
}

.pf-timeline .timeline__content {
    background: none;
    color: #ffffff;
    border: none;
    padding: 0.8rem;
}

.pf-timeline .timeline__item--top .timeline__content {
    border-bottom: 2px solid #81d8d0;
    border-radius: 30px;
}

.pf-timeline .timeline__item--bottom .timeline__content {
    border-top: 2px solid #81d8d0;
    border-radius: 30px;
}

.pf-timeline .timeline__item:after {
    width: 36px;
    height: 36px;
    border: 9px solid #81d8d0;
}

.pf-timeline
.timeline--horizontal
.timeline__item--bottom
.timeline__content:after {
    border: none;
}

.pf-timeline .timeline--horizontal .timeline__item .timeline__content:before {
    display: none;
}

.pf-timeline .timeline__content:after {
    width: 2px;
    border: none !important;
    height: 3.5rem;
    background-color: #81d8d0;
    z-index: 1;
}

.pf-timeline .timeline-nav-button {
    border-radius: 0;
    border: none;
    outline: none;
    background-color: transparent;
    background-image: url(content/images/icons/arrows.png);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: left center;
}

    .pf-timeline .timeline-nav-button.timeline-nav-button--next {
        background-position: right center;
    }

.pf-timeline .timeline--horizontal .timeline-divider {
    height: 2px;
    background: -moz-linear-gradient( left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 6%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 94%, rgba(255, 255, 255, 0) 100% );
    background: -webkit-linear-gradient( left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 6%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 94%, rgba(255, 255, 255, 0) 100% );
    background: linear-gradient( to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 6%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 94%, rgba(255, 255, 255, 0) 100% );
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#00ffffff', GradientType=1 );
    background: #ffffff;
}

.pf-timeline .timeline--horizontal .timeline__item {
    padding: 0 0 4rem;
}

.pf-timeline .timeline--horizontal .timeline__item--bottom {
    padding: 4rem 0 0;
}

.pf-timeline .timeline__content p {
    font-size: 18px;
}

#PFoundation .pf-timeline .timeline__item:after {
    border-color: #182834;
}

#PFoundation .pf-timeline .timeline__content:after {
    background-color: #182834;
}

#PFoundation .pf-timeline .timeline__item--bottom .timeline__content {
    border-color: #182834;
}

#PFoundation .pf-timeline .timeline__item--top .timeline__content {
    border-color: #182834;
}

#PSwasthya .pf-timeline .timeline__item:after {
    border-color: #81d8d0;
}

#PSwasthya .pf-timeline .timeline__content:after {
    background-color: #81d8d0;
}

#PSwasthya .pf-timeline .timeline__item--bottom .timeline__content {
    border-color: #81d8d0;
}

#PSwasthya .pf-timeline .timeline__item--top .timeline__content {
    border-color: #81d8d0;
}

#educationLeadership .pf-timeline .timeline__item:after {
    border-color: #f9812a;
}

#educationLeadership .pf-timeline .timeline__content:after {
    background-color: #f9812a;
}

#educationLeadership .pf-timeline .timeline__item--bottom .timeline__content {
    border-color: #f9812a;
}

#educationLeadership .pf-timeline .timeline__item--top .timeline__content {
    border-color: #f9812a;
}

#gandhiFellowship .pf-timeline .timeline__item:after {
    border-color: #c488f7;
}

#gandhiFellowship .pf-timeline .timeline__content:after {
    background-color: #c488f7;
}

#gandhiFellowship .pf-timeline .timeline__item--bottom .timeline__content {
    border-color: #c488f7;
}

#gandhiFellowship .pf-timeline .timeline__item--top .timeline__content {
    border-color: #c488f7;
}

#PSarvajal .pf-timeline .timeline__item:after {
    border-color: #1ca3ec;
}

#PSarvajal .pf-timeline .timeline__content:after {
    background-color: #1ca3ec;
}

#PSarvajal .pf-timeline .timeline__item--bottom .timeline__content {
    border-color: #1ca3ec;
}

#PSarvajal .pf-timeline .timeline__item--top .timeline__content {
    border-color: #1ca3ec;
}

.timeline--horizontal {
    min-width: 100%;
}

    .timeline--horizontal .timeline__items {
        margin: 0 auto;
    }

.pf-timeline .timeline__item--top .timeline__content {
}
/*-- timeline style end--*/

.post-block .quote-para .scrollbar {
    max-height: 380px;
}

.post-block .quote-para .mCSB_container {
    padding: 20px 0;
}

.post-block .quote-para .scrollbar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&1+0,0+100;White+to+Transparent */
    background: -moz-linear-gradient( top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100% ); /* FF3.6-15 */
    background: -webkit-linear-gradient( top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100% ); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient( to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100% ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 ); /* IE6-9 */
    z-index: 1;
}

.post-block .quote-para .scrollbar::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,1+100 */
    background: -moz-linear-gradient( top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100% ); /* FF3.6-15 */
    background: -webkit-linear-gradient( top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100% ); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient( to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100% ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
}

.lightgrey-clr .post-block .quote-para .scrollbar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&1+0,0+100;White+to+Transparent */
    background: -moz-linear-gradient( top, rgba(246, 245, 245, 1) 0%, rgba(246, 245, 245, 0) 100% ); /* FF3.6-15 */
    background: -webkit-linear-gradient( top, rgba(246, 245, 245, 1) 0%, rgba(246, 245, 245, 0) 100% ); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient( to bottom, rgba(246, 245, 245, 1) 0%, rgba(246, 245, 245, 0) 100% ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 ); /* IE6-9 */
    z-index: 1;
}

.lightgrey-clr .post-block .quote-para .scrollbar::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,1+100 */
    background: -moz-linear-gradient( top, rgba(246, 245, 245, 0) 0%, rgba(246, 245, 245, 1) 100% ); /* FF3.6-15 */
    background: -webkit-linear-gradient( top, rgba(246, 245, 245, 0) 0%, rgba(246, 245, 245, 1) 100% ); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient( to bottom, rgba(246, 245, 245, 0) 0%, rgba(246, 245, 245, 1) 100% ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
}

.post-block .quote-para .fa-quote-right {
    float: right;
    transform: translateX(125%);
    -webkit-transform: translateX(125%);
    margin-top: -2%;
}

.section-slider .swiper-pagination {
    position: absolute;
    text-align: right;
    padding: 8px 2%;
    right: 0;
    width: auto;
    left: inherit;
}

.alumni-diversion.horizontal_scroll {
    display: grid;
    white-space: nowrap;
    overflow-y: hidden;
    overflow-x: auto;
    height: 210px;
    overflow: auto;
}

    .alumni-diversion.horizontal_scroll li {
        width: auto;
        white-space: initial;
        margin: 0 auto;
        padding: 10px 40px;
        border: none;
        float: none;
    }

        .alumni-diversion.horizontal_scroll li figcaption {
            display: table-row;
        }

        .alumni-diversion.horizontal_scroll li figure {
            margin: 0;
            text-align: center;
        }

.impact-wrapper.education .impact-ring ul li:nth-child(5) {
    display: block;
}

.impact-content ul li {
    width: 112%;
}

.impact-ring.education ul li {
    top: 3.8%;
    left: 59.7%;
}

    .impact-ring.education ul li:nth-child(2) {
        top: 16.3%;
        left: 79.8%;
    }

    .impact-ring.education ul li:nth-child(3) {
        top: 37.3%;
        left: 91.2%;
    }

    .impact-ring.education ul li:nth-child(4) {
        top: 61%;
        left: 90.3%;
    }

    .impact-ring.education ul li:nth-child(5) {
        top: 81.3%;
        left: 77.5%;
    }

    .impact-ring.education ul li:nth-child(6) {
        top: 92.6%;
        left: 55.8%;
    }

.impact-content.education li.impact1::before {
    transform: translateY(-50%) rotate(-11deg);
    width: 60%;
}

.impact-content.education li.impact2::before {
    transform: translateY(-50%) rotate(-2deg);
    width: 45%;
}

.impact-content.education li.impact3::before {
    transform: translateY(-50%) rotate(-1deg);
    width: 42%;
}

.impact-content.education li.impact4::before {
    transform: translateY(-50%) rotate(-4deg);
    width: 40%;
}

.impact-content.education li.impact5::before {
    transform: translateY(-50%) rotate(0deg);
    width: 40%;
}

.impact-content.education li.impact6::before {
    transform: translateY(-50%) rotate(11deg);
    width: 45%;
}

.impact-wrapper.youthemp .impact-ring ul li:nth-child(4) {
    display: block;
}

.content-2 .impact-ring.gandhi ul li:nth-child(2) {
    top: 24.25%;
    left: 87.3%;
}

.content-2 .impact-ring.gandhi ul li:nth-child(3) {
    top: 47.8%;
    left: 93.4%;
}

.impact-content.gandhi li.impact2::before {
    transform: translateY(-50%) rotate(1deg);
    width: 43% !important;
}

.impact-content.gandhi li.impact4::before {
    transform: translateY(-50%) rotate(-3deg);
    width: 40%;
}

.topMenu {
    display: flex;
    height: 100%;
}

.sitenavigation {
    flex-grow: 1;
    text-align: center;
}

#hamburger {
    width: 30px;
    position: relative;
    margin: auto;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

    #hamburger span {
        display: block;
        position: absolute;
        height: 2px;
        width: 100%;
        background: #fff;
        border-radius: 9px;
        opacity: 1;
        right: 0;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.25s ease-in-out;
        -moz-transition: 0.25s ease-in-out;
        -o-transition: 0.25s ease-in-out;
        transition: 0.25s ease-in-out;
    }

        #hamburger span:nth-child(1) {
            top: 0px;
        }

        #hamburger span:nth-child(2) {
            top: 8px;
        }

        #hamburger span:nth-child(3) {
            top: 16px;
        }

    #hamburger.open span:nth-child(1) {
        top: 11px;
        -webkit-transform: rotate(135deg);
        -moz-transform: rotate(135deg);
        -o-transform: rotate(135deg);
        transform: rotate(135deg);
    }

    #hamburger.open span:nth-child(2) {
        opacity: 0;
        right: -30px;
    }

    #hamburger.open span:nth-child(3) {
        top: 11px;
        -webkit-transform: rotate(-135deg);
        -moz-transform: rotate(-135deg);
        -o-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }

.sitenavigation .subMenuWrap > ul {
    margin: 0;
    padding: 0;
    display: inline-block;
    height: 100%;
    flex-grow: 1;
    text-align: right;
    padding-right: 50px;
}

.sitenavigation li {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: inline-block;
    line-height: 20px;
    float: none;
}

    .sitenavigation li.nav-dropdown:hover > a {
        background-color: #ccc !important;
        color: #243746;
    }

    .sitenavigation li a {
        color: #243746;
        text-decoration: none;
        display: block;
        padding: 11px 14px;
        font-size: 16px;
        -webkit-tap-highlight-color: transparent;
        height: 100%;
        text-align: center;
    }

.sitenavigation .subMenuWrap {
    height: 100%;
    display: flex;
}

    .sitenavigation .subMenuWrap > ul > li > a {
        color: #fff;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        display: -webkit-flex;
        padding: 0 20px;
        font-size: 18px;
        font-weight: 300;
        height: 72px;
        -webkit-tap-highlight-color: transparent;
        position: relative;
    }

        .sitenavigation .subMenuWrap > ul > li > a:hover {
            background-color: transparent !important;
            color: #fff;
        }

.sitenavigation li a.nav-path-selected,
.sitenavigation li a.linkclicked {
    color: #243746;
    background-color: #ececec;
}
/* .sitenavigation li a.nav-selected {
  background-color: #777;
  color: #000;
} */
.sitenavigation li a:hover {
    color: #ef4023;
}

.sitenavigation li.clicked > ul {
    display: block;
}

.sitenavigation li ul {
    display: none;
    position: absolute;
    width: 100%;
    padding: 30px 20px;
    margin: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.9);
    /* backdrop-filter: blur(22px);
-webkit-backdrop-filter: blur(22px); */
}

    .sitenavigation li ul a {
        font-size: 16px;
        font-weight: 400;
    }

    .sitenavigation li ul li {
        display: block;
        margin: 0;
    }

    .sitenavigation li ul ul {
        left: 100%;
        margin-top: -40px;
    }

        .sitenavigation li ul ul a {
            background-color: lightgray;
        }

.sitenavigation .nav-dropdown:hover > a,
.sitenavigation .nav-dropdown.clicked > a {
    background-color: #ececec;
}

.no-js .sitenavigation li:hover > ul {
    display: block !important;
}

.menu-icon {
    display: none;
}

.subMenuBox .menuLogo {
    width: 16.6666%;
    vertical-align: top;
}

    .subMenuBox .menuLogo img {
        width: 42px;
        height: auto;
        margin-bottom: 15px;
    }

.sitenavigation li a:hover img {
    filter: brightness(0.5);
}

.subMenuBox .menuLogo span {
    display: block;
}

@media (min-width: 992px) {
    .navbar {
        width: 100%;
    }

    .sitenavigation .subMenuWrap > ul > li > a:after {
        content: "";
        position: absolute;
        bottom: 10px;
        left: 50%;
        -webkit-transform: translate(-50%);
        transform: translate(-50%);
        width: 0;
        height: 3px;
        background-color: #ef4023;
        -webkit-transition: all ease-in-out 0.15s;
        transition: all ease-in-out 0.15s;
    }

    .sitenavigation li.nav-dropdown:hover > a {
        background-color: transparent !important;
        color: #fff;
    }

        .sitenavigation li.nav-dropdown:hover > a::after,
        .sitenavigation .subMenuWrap > ul > li > a:hover::after {
            width: 98%;
        }

    .sitenavigation li > a.active::after,
    .sitenavigation .subMenuWrap > ul > li > a.active::after {
        width: 98%;
    }

    /* .sitenavigation li{
    position: relative;
  }

  .sitenavigation li ul{
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    white-space: nowrap;
  }
  .sitenavigation li ul::after{
    width: 100vw;
    height: 100%;
    content: '';
    position: absolute;
  } */

    .sitenavigation li ul .subMenuBox {
        display: flex;
        align-items: stretch;
        justify-content: center;
        width: 100%;
        max-width: 1400px;
        margin: auto;
    }

    .sitenavigation li ul li a {
        padding: 20px 30px;
    }

        .sitenavigation li ul li a.active {
            color: #ef4023;
        }

            .sitenavigation li ul li a:hover img,
            .sitenavigation li ul li a.active img {
                filter: brightness(0.5);
            }

    .d-flex {
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }

    .justify-content-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .justify-content-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .align-items-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-center {
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .align-content-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .align-content-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .align-content-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .align-content-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .align-content-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .align-content-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .align-self-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }

    .align-self-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .align-self-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .align-self-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }

    .align-self-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .align-self-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

@media (max-width: 991px) {
    /* .navbar {
    width: 100%;
    background-color: #f9f9f9;
    border: thin solid #ededed;
    height: 44px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    z-index: 1;
  } */
    .navbar .logo {
        float: right;
        font-weight: 800;
        padding: 5px;
        margin: 10px;
    }

    .navbar .menu-icon {
        width: 77px;
        height: 60px;
        display: block;
        -webkit-tap-highlight-color: transparent;
        cursor: pointer;
        position: absolute;
        right: 0;
        border-left: 1px solid #2d4456;
        padding: 19px 22px;
    }

    .navbar .sitenavigation .subMenuWrap {
        display: none;
        max-width: none !important;
    }

    .navbar .sitenavigation li {
        float: none;
        display: block;
        margin: 0;
        padding: 0;
    }

    .navbar .sitenavigation.is-tapped .subMenuWrap {
        display: block;
        position: absolute;
        background-color: #243746;
        right: 0;
        left: 0;
        top: 60px;
        z-index: 100;
        height: calc(100vh - 60px);
        overflow-y: auto;
    }

        .navbar .sitenavigation.is-tapped .subMenuWrap > ul {
            display: block;
            margin: 0;
            padding: 0;
            height: auto;
            border-top: 1px solid #2d4456;
            text-align: left;
        }

            .navbar .sitenavigation.is-tapped .subMenuWrap > ul a {
                width: 100%;
                margin: 0;
                display: flex;
                align-items: center;
                justify-content: flex-start;
                font-size: 18px;
                padding-top: 15px;
                padding-bottom: 15px;
                padding-left: 20px;
                padding-right: 20px;
                height: auto;
                color: #fff;
                float: none;
                border: none !important;
                -webkit-font-smoothing: antialiased;
                -webkit-tap-highlight-color: transparent;
            }

            .navbar .sitenavigation.is-tapped .subMenuWrap > ul > a.active {
                background-color: #ef4023 !important;
            }
            /* .navbar .sitenavigation.is-tapped .subMenuWrap > ul a:hover {
    background-color: #dfdfdf;
  } */
            .navbar .sitenavigation.is-tapped .subMenuWrap > ul li {
                width: 100%;
                border-bottom: solid 1px #2d4456;
                -webkit-tap-highlight-color: transparent;
                line-height: 27px;
            }
            /* .navbar .sitenavigation.is-tapped .subMenuWrap > ul li li {
    background-color: #fff;
  } */
            .navbar .sitenavigation.is-tapped .subMenuWrap > ul ul {
                display: none;
                width: 100%;
                z-index: 200;
                border: none;
                margin-left: 0;
                padding: 15px 0;
                position: relative !important;
                background: rgb(29, 45, 57);
                /* background: -moz-linear-gradient(90deg, rgba(29,45,57,1) 0%, rgba(21,32,41,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(29,45,57,1) 0%, rgba(21,32,41,1) 100%); */
                background: linear-gradient( 90deg, rgba(29, 45, 57, 1) 0%, rgba(21, 32, 41, 1) 100% );
                /* filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1d2d39",endColorstr="#152029",GradientType=1); */
            }

                .navbar .sitenavigation.is-tapped .subMenuWrap > ul ul ul {
                    clear: both;
                    left: 0;
                    margin-top: 0;
                }

                .navbar .sitenavigation.is-tapped .subMenuWrap > ul ul li {
                    border-bottom: none;
                }

                    .navbar .sitenavigation.is-tapped .subMenuWrap > ul ul li li a {
                        background-color: #f9f9f9;
                        padding-left: 30px;
                    }

                .navbar .sitenavigation.is-tapped .subMenuWrap > ul ul a {
                    font-size: 16px;
                    padding-left: 20px;
                    text-align: left;
                }

                    .navbar .sitenavigation.is-tapped .subMenuWrap > ul ul a.active {
                        color: #ef4023 !important;
                    }

                        .navbar .sitenavigation.is-tapped .subMenuWrap > ul ul a.active img {
                            filter: invert(1);
                        }

            /* .navbar .sitenavigation.is-tapped .subMenuWrap > ul ul a:before {
    content: "- ";
    display: inline-block;
    margin-right: 8px;
    color: #000;
  } */
            .navbar .sitenavigation.is-tapped .subMenuWrap > ul li.nav-dropdown {
                cursor: pointer;
                position: relative;
            }

                .navbar .sitenavigation.is-tapped .subMenuWrap > ul li.nav-dropdown > a {
                    width: 80%;
                }

                    .navbar
                    .sitenavigation.is-tapped
                    .subMenuWrap > ul
                    li.nav-dropdown > a.active {
                        background-color: #ef4023 !important;
                    }

                .navbar .sitenavigation.is-tapped .subMenuWrap > ul li.nav-dropdown:after {
                    content: "\e5cf";
                    font-family: "Material Icons";
                    position: absolute;
                    color: #fff;
                    padding: 0;
                    display: block;
                    width: 20%;
                    right: 0;
                    top: 0;
                    text-align: center;
                    font-size: 25px;
                    padding-top: 15px;
                    padding-bottom: 15px;
                    border-left: 1px solid #2d4456;
                }
            /* .navbar .sitenavigation.is-tapped .subMenuWrap > ul li.expanded:after {
    display: none;
  } */
            .navbar .sitenavigation.is-tapped .subMenuWrap > ul li.expanded:after {
                content: "\e5ce";
                font-family: "Material Icons";
                background: rgb(29, 45, 57);
                /* background: -moz-linear-gradient(90deg, rgba(29,45,57,1) 0%, rgba(21,32,41,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(29,45,57,1) 0%, rgba(21,32,41,1) 100%); */
                background: rgba(21, 32, 41, 1);
                /* filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1d2d39",endColorstr="#152029",GradientType=1); */
            }

    .sitenavigation li.nav-dropdown:hover > a {
        background-color: transparent !important;
    }

    .subMenuBox .menuLogo span {
        display: inline-block;
    }

    .subMenuBox .menuLogo img {
        vertical-align: middle;
        margin-right: 15px;
        margin-bottom: 0;
        /* filter: invert(1); */
        width: 32px;
    }

    .navbar .sitenavigation .social-link {
        border-left: none;
        float: none;
        height: auto;
    }

        .navbar .sitenavigation .social-link ul {
            height: auto;
        }

            .navbar .sitenavigation .social-link ul li {
                display: inline-block;
                padding: 0 6px;
            }
}

.tab-nav.slateBlue_tag-clr {
    background-color: #8f7eff !important;
}

.pf-circle.slateBlue_tag > i {
    background-color: #8f7eff;
}

.pf-circle.slateBlue_tag:before {
    background-color: hsl(248, 100%, 75%);
}

.pf-circle.slateBlue_tag:after {
    background-color: rgba(28, 163, 236, 0.1);
}

.pf-circle.bgimg.slateBlue_tag > i {
    background-image: url(content/images/icons/drinking-water.png);
}

.tab-nav.colBox1_tag-clr {
    background-color: #ed4024 !important;
}

    .tab-nav.colBox1_tag-clr:hover {
        background: linear-gradient( 90deg, rgba(237, 64, 36, 0.8), rgba(237, 64, 36, 0.8) ), url(content/images/banners/tribal-health-collaborative.jpg);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

.pf-circle.colBox1_tag > i {
    background-color: #ed4024;
}

.pf-circle.colBox1_tag:before {
    background-color: rgba(237, 64, 36, 0.4);
}

.pf-circle.colBox1_tag:after {
    background-color: rgba(237, 64, 36, 0.1);
}

.pf-circle.bgimg.colBox1_tag > i {
    background-image: url(content/images/icons/health-collaborative-w.png);
}

.tab-nav.colBox2_tag-clr {
    background-color: #be3e2c !important;
}

    .tab-nav.colBox2_tag-clr:hover {
        background: linear-gradient( 90deg, rgba(190, 62, 44, 0.8), rgba(190, 62, 44, 0.8) ), url(content/images/banners/aspirational-district-collaborative.jpg);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

.pf-circle.colBox2_tag > i {
    background-color: #be3e2c;
}

.pf-circle.colBox2_tag:before {
    background-color: rgba(190, 62, 44, 0.4);
}

.pf-circle.colBox2_tag:after {
    background-color: rgba(190, 62, 44, 0.1);
}

.pf-circle.bgimg.colBox2_tag > i {
    background-image: url(content/images/icons/district-collaborative-w.png);
}

.tab-nav.colBox3_tag-clr {
    background-color: #a53d31 !important;
}

    .tab-nav.colBox3_tag-clr:hover {
        background: linear-gradient( 90deg, rgba(165, 61, 49, 0.8), rgba(165, 61, 49, 0.8) ), url(content/images/banners/piramal-center-for-child-with-special-needs.jpg);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

.pf-circle.colBox3_tag > i {
    background-color: #a53d31;
}

.pf-circle.colBox3_tag:before {
    background-color: rgba(165, 61, 49, 0.4);
}

.pf-circle.colBox3_tag:after {
    background-color: rgba(165, 61, 49, 0.1);
}

.pf-circle.bgimg.colBox3_tag > i {
    background-image: url(content/images/icons/center-child-w.png);
}

.tab-nav.colBox4_tag-clr {
    background-color: #7c3b37 !important;
}

    .tab-nav.colBox4_tag-clr:hover {
        background: linear-gradient( 90deg, rgba(124, 59, 55, 0.8), rgba(124, 59, 55, 0.8) ), url(content/images/banners/digital-bharat-collaborative.jpg);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

.pf-circle.colBox4_tag > i {
    background-color: #7c3b37;
}

.pf-circle.colBox4_tag:before {
    background-color: rgba(124, 59, 55, 0.4);
}

.pf-circle.colBox4_tag:after {
    background-color: rgba(124, 59, 55, 0.1);
}

.pf-circle.bgimg.colBox4_tag > i {
    background-image: url(content/images/icons/bharat-collaborative-w.png);
}

.tab-nav.colBox5_tag-clr {
    background-color: #53393e !important;
}

    .tab-nav.colBox5_tag-clr:hover {
        background: linear-gradient( 90deg, rgba(83, 57, 62, 0.8), rgba(83, 57, 62, 0.8) ), url(content/images/banners/piramal-university.jpg);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

.pf-circle.colBox5_tag > i {
    background-color: #53393e;
}

.pf-circle.colBox5_tag:before {
    background-color: rgba(83, 57, 62, 0.4);
}

.pf-circle.colBox5_tag:after {
    background-color: rgba(83, 57, 62, 0.1);
}

.pf-circle.bgimg.colBox5_tag > i {
    background-image: url(content/images/icons/piramal-university-w.png);
}

.tab-nav.colBox6_tag-clr {
    background-color: #243746 !important;
}

    .tab-nav.colBox6_tag-clr:hover {
        background: linear-gradient( 90deg, rgba(36, 55, 70, 0.8), rgba(36, 55, 70, 0.8) ), url(content/images/banners/piramal-academy-of-sewa.jpg);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

.pf-circle.colBox6_tag > i {
    background-color: #243746;
}

.pf-circle.colBox6_tag:before {
    background-color: rgba(36, 55, 70, 0.4);
}

.pf-circle.colBox6_tag:after {
    background-color: rgba(36, 55, 70, 0.1);
}

.pf-circle.bgimg.colBox6_tag > i {
    background-image: url(content/images/icons/academy-sewa-w.png);
}

.leftSide .post-block {
    float: left;
    text-align: left;
}

    .leftSide .post-block h2,
    .leftSide h2 {
        color: #ef4023;
        font-size: 3rem;
        line-height: 3.8rem;
        font-weight: bold;
        margin-bottom: 10px;
        margin-top: 0;
        text-transform: uppercase;
    }

h2.text_white {
    color: #fff;
    margin-top: 0;
}

h2.text_black {
    color: #243746 !important;
    margin-top: 0;
}

.leftSide .post-block h2 > span,
.leftSide h2 > span {
    display: inline-block;
    border-bottom: 3px solid #243746;
}

h2.text_white > span {
    border-color: #ef4023;
}

h2.text_black > span {
    border-color: #e27457 !important;
}

.vector-bgImg {
    background: rgb(255, 255, 255);
    background: linear-gradient( 90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 52%, rgba(255, 255, 255, 0) 100% );
    position: relative;
}

    .vector-bgImg::after {
        content: "";
        background-image: url(content/images/about-bg.jpg);
        background-repeat: no-repeat;
        background-position: right center;
        background-size: contain;
        position: absolute;
        right: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

.paragraph.orangeQuote .fa-quote-left,
.paragraph.orangeQuote .fa-quote-right {
    color: #ef4023;
}

.paragraph.quote-para.orangeQuote p {
    color: #243746;
}

.post-block .paragraph.no-quote {
    padding: 20px 0;
}

h3.forName {
    font-size: 34px;
    color: #476c8a;
    font-weight: 400;
    text-transform: uppercase;
    margin: 20px 0 25px 0;
}

    h3.forName span {
        font-size: 54px;
        font-weight: 200;
        display: block;
        color: #263a49;
        padding-bottom: 10px;
    }

.about-people .section-img {
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
}

.darkblue-gradi {
    background: rgb(36, 55, 70);
    background: -moz-linear-gradient( 90deg, rgba(36, 55, 70, 1) 0%, rgba(65, 95, 118, 1) 100% );
    background: -webkit-linear-gradient( 90deg, rgba(36, 55, 70, 1) 0%, rgba(65, 95, 118, 1) 100% );
    background: linear-gradient( 90deg, rgba(36, 55, 70, 1) 0%, rgba(65, 95, 118, 1) 100% );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#243746",endColorstr="#415f76",GradientType=1);
}

    .darkblue-gradi .paragraph p {
        color: #fff;
    }

    .darkblue-gradi h3.post-title {
        font-size: 48px;
        font-weight: 200;
        color: #fff;
        margin: 5px 0;
        margin-left: 20px;
    }

        .darkblue-gradi h3.post-title .big {
            font-size: 86px;
            display: block;
            font-weight: bold;
            padding: 10px 0;
        }

        .darkblue-gradi h3.post-title .small {
            color: rgba(255, 255, 255, 0.7);
        }

        .darkblue-gradi h3.post-title::after {
            content: "";
            width: 31px;
            height: 7px;
            background-color: #ef4023;
            display: inline-block;
            margin-left: 10px;
        }

.icon_caption_grid {
    width: 100%;
    vertical-align: top;
    padding: 32px 0;
    display: grid;
    vertical-align: top;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    max-width: 500px;
}

    .icon_caption_grid li {
        display: inline-block;
        float: left;
        margin: 12px;
    }

.icon_caption {
    margin: 0 auto;
    text-align: center;
    display: inline-block;
}

    .icon_caption span {
        display: block;
        width: 100%;
        font-size: 12px;
    }

    .icon_caption figcaption {
        text-transform: uppercase;
        font-size: 13px;
        padding: 0;
        font-weight: bold;
        line-height: 1;
        color: #476c8a;
    }

        .icon_caption figcaption big {
            display: block;
            font-size: 55px;
            font-weight: bold;
            color: #ef4023;
            line-height: 1;
        }

.home-slider {
    position: relative;
    height: 80vh;
    background-image: url(content/images/default-background.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}

    .home-slider .overlay {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: transparent;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        display: -webkit-flex;
        -webkit-align-items: flex-end;
        -webkit-justify-content: center;
        /* background: rgb(47,71,88);
  background: -moz-linear-gradient(0deg, rgba(47,71,88,1) 0%, rgba(47,71,88,0.50) 50%, rgba(47,71,88,0) 100%);
  background: -webkit-linear-gradient(0deg, rgba(47,71,88,1) 0%, rgba(47,71,88,0.50) 50%, rgba(47,71,88,0) 100%);
  background: linear-gradient(0deg, rgba(47,71,88,1) 0%, rgba(47,71,88,0.50) 50%, rgba(47,71,88,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2f4758",endColorstr="#2f4758",GradientType=1); */
        z-index: 2;
    }

    .home-slider .swiper-container {
        height: 100%;
    }

    .home-slider .swiper-slide {
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center top;
    }

    .home-slider .banner-caption {
        max-width: 1400px;
        width: 80%;
        margin: 0 auto;
        margin-bottom: 230px;
        text-align: center;
    }

        .home-slider .banner-caption span {
            width: 100%;
            max-width: 700px;
        }

    .home-slider .swiper-pagination {
        position: absolute;
        bottom: 20px;
        text-align: right;
        padding-right: 20px;
    }

    .home-slider .swiper-pagination-bullet {
        width: 30px;
        height: 7px;
        border-radius: 0;
        background: #fff;
        opacity: 0.3;
        transition: all ease 0.3s;
        -webkit-transition: all ease 0.3s;
    }

    .home-slider .swiper-pagination-bullet-active {
        background: #fff;
        opacity: 1;
        width: 60px;
    }

.circle-img {
    overflow: hidden;
    border-radius: 50%;
    width: 100%;
    max-width: 600px;
    height: auto;
}

.bg_p_blue {
    background-color: #dae2e8;
}

.bg_p_pink {
    background-color: #f5d1cb;
}

.paragraph ol,
.paragraph ul {
    display: block;
    vertical-align: top;
    width: 100%;
    font-size: 18px;
    line-height: 150%;
    padding: 0 0 16px 24px;
    text-align: justify;
    color: #4e4e4e;
    margin-bottom: 10px;
}

.piramal-blue .paragraph ol,
.piramal-blue .paragraph ul {
    color: #fff;
}

.paragraph ol li,
.paragraph ul li {
    margin-bottom: 1.2rem;
}

.paragraph ul li {
    list-style-type: disc;
}

    .paragraph ol li:last-child,
    .paragraph ul li:last-child {
        margin-bottom: 0;
    }

.about-people h4 {
    color: #243746;
    font-weight: bold;
    font-size: 34px;
    line-height: 2;
    margin-bottom: 1rem;
}

    .about-people h4 > span {
        border-bottom: 3px solid #ef4023;
    }

.pt-0 {
    padding-top: 0 !important;
}

.pt-1 {
    padding-top: 0.25rem !important;
}

.pt-2 {
    padding-top: 0.5rem !important;
}

.pt-3 {
    padding-top: 1rem !important;
}

.pt-4 {
    padding-top: 1.5rem !important;
}

.pt-5 {
    padding-top: 3rem !important;
}

.pe-0 {
    padding-right: 0 !important;
}

.pe-1 {
    padding-right: 0.25rem !important;
}

.pe-2 {
    padding-right: 0.5rem !important;
}

.pe-3 {
    padding-right: 1rem !important;
}

.pe-4 {
    padding-right: 1.5rem !important;
}

.pe-5 {
    padding-right: 3rem !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pb-1 {
    padding-bottom: 0.25rem !important;
}

.pb-2 {
    padding-bottom: 0.5rem !important;
}

.pb-3 {
    padding-bottom: 1rem !important;
}

.pb-4 {
    padding-bottom: 1.5rem !important;
}

.pb-5 {
    padding-bottom: 3rem !important;
}

.ps-0 {
    padding-left: 0 !important;
}

.ps-1 {
    padding-left: 0.25rem !important;
}

.ps-2 {
    padding-left: 0.5rem !important;
}

.ps-3 {
    padding-left: 1rem !important;
}

.ps-4 {
    padding-left: 1.5rem !important;
}

.ps-5 {
    padding-left: 3rem !important;
}

.h-100 {
    height: 100% !important;
}

.footerStates {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

    .footerStates.column {
        flex-direction: column;
    }

    .footerStates span {
        width: 25%;
        font-size: 15px;
        color: #fff;
        line-height: 1.5;
    }

    .footerStates.column span {
        width: auto;
    }

.leader-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.rightImgIn {
    float: right;
    width: 50%;
    margin: 0 0 50px 50px;
    box-shadow: 0px 4px 25px #00000029;
    border-radius: 9px;
    overflow: hidden;
    position: relative;
    padding-bottom: 25px;
}

    .rightImgIn .overlay {
        background-color: #24374633;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        opacity: 1;
        transition: all ease 0.3s;
        -webkit-transition: all ease 0.3s;
    }

/* .rightImgIn:hover .overlay {
  opacity: 1;
} */

.brochureBtn a {
    text-transform: none;
    font-weight: normal;
    /* position: absolute;
    left: 0;
    bottom: 0;
    width: 100%; */
    /* transform: translate(-50%, -50%); */
    white-space: nowrap;
    font-size: 15px;
    line-height: 1.2;
    padding-top: 15px;
    padding-bottom: 15px;
    height: auto;
    border-radius: 8px;
}

    .brochureBtn a i {
        vertical-align: middle;
        font-size: 16px;
        margin-right: 5px;
    }

.supporrt-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

    .supporrt-grid .supporrt-grid-box {
        width: 28%;
        padding: 15px !important;
        border: 1px solid #ccc;
        height: 90px;
        margin-bottom: 0.75rem;
        margin-right: 0.75rem;
    }

        .supporrt-grid .supporrt-grid-box img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

.map_iframe_wrapp {
    text-align: center;
    overflow: hidden;
}

.map_iframe {
    /* max-width: 590px;
  min-height: 600px;
  width: 100%;
  height: auto; */

    margin: 0 auto;
    overflow: hidden;
}

.ourPresent {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 15px;
}

    .ourPresent > div {
        padding-right: 25px;
    }

        .ourPresent > div:last-child {
            padding-right: 0;
        }

    .ourPresent .title {
        color: #476c8a;
        font-size: 34px;
        font-weight: bold;
    }

.map_ratio,
.bets_ratio {
    --bs-aspect-ratio: calc(9 / 16 * 100%);
    position: relative;
    width: 100%;
}

    .map_ratio::before {
        display: block;
        padding-top: 100%;
        content: "";
    }

    .bets_ratio::before {
        display: block;
        padding-top: 106%;
        content: "";
    }

    .map_ratio > iframe,
    .bets_ratio > iframe {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
    }

.slideBgImg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    height: 100%;
}

.bg_white {
    background-color: #fff !important;
}

.bg_bittersweet {
    background-color: #f86c54;
}

.bg_glacier {
    background-color: #83b8c5;
}

.bg_perano {
    background-color: #aaadec;
}

.bg_caper {
    background-color: #bcd47c;
}

.bg_sweetPink {
    background-color: #f09a8d;
}

.bg_goldenrod {
    background-color: #cedc6a;
}

.bg_lightBlue {
    background-color: #a5d9f0;
}

.bg_loblolly {
    background-color: #b2b8b5;
}

.bannerTextWrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-left: 10px solid #fff;
    position: relative;
    height: 100%;
}

.bannerText {
    width: 100%;
    padding: 40px 90px;
}

.bgImg_bittersweet:after {
    background-color: #f86c54;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: inherit;
    top: 0;
    transition: all ease-in-out 2s;
    right: 0;
}

.swiper-slide-active .bgImg_bittersweet:after {
    width: 0;
}

.bgImg_glacier:after {
    background-color: #83b8c5;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: inherit;
    top: 0;
    transition: all ease-in-out 2s;
    right: 0;
}

.swiper-slide-active .bgImg_glacier:after {
    width: 0;
}

.bgImg_perano:after {
    background-color: #aaadec;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: inherit;
    top: 0;
    transition: all ease-in-out 2s;
    right: 0;
}

.swiper-slide-active .bgImg_perano:after {
    width: 0;
}

.bgImg_caper:after {
    background-color: #bcd47c;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: inherit;
    top: 0;
    transition: all ease-in-out 2s;
    right: 0;
}

.swiper-slide-active .bgImg_caper:after {
    width: 0;
}

.bgImg_sweetPink:after {
    background-color: #f09a8d;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: inherit;
    top: 0;
    transition: all ease-in-out 2s;
    right: 0;
}

.swiper-slide-active .bgImg_sweetPink:after {
    width: 0;
}

.bgImg_goldenrod:after {
    background-color: #cedc6a;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: inherit;
    top: 0;
    transition: all ease-in-out 2s;
    right: 0;
}

.swiper-slide-active .bgImg_goldenrod:after {
    width: 0;
}

.bgImg_lightBlue:after {
    background-color: #a5d9f0;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: inherit;
    top: 0;
    transition: all ease-in-out 2s;
    right: 0;
}

.swiper-slide-active .bgImg_lightBlue:after {
    width: 0;
}

.bgImg_loblolly:after {
    background-color: #b2b8b5;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: inherit;
    top: 0;
    transition: all ease-in-out 2s;
    right: 0;
}

.swiper-slide-active .bgImg_loblolly:after {
    width: 0;
}








.bannerText h3 {
    color: #243746;
    font-size: 54px;
    font-weight: bold;
    line-height: 1.2;
    margin: 0 0 30px 0;
}

.bannerText p {
    color: #243746;
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 30px 0;
    max-width: 600px;
}

.bannerBotmIcon {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 200px;
}

    .bannerBotmIcon img {
        width: auto;
        height: 100%;
    }

.iconWraper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
}

    .iconWraper img {
        width: 50px;
        transition: all ease 0.3s;
        -webkit-transition: all ease 0.3s;
    }

    .iconWraper a:hover img {
        transform: scale(1.2);
        -webkit-transform: scale(1.2);
    }

.banner-cta {
    padding-top: 20px;
}

    .banner-cta .btn {
        background-color: transparent;
        border: 2px solid #243746;
        border-radius: 30px;
        color: #243746;
        font-weight: 400;
        line-height: 48px;
        height: 54px;
        white-space: nowrap;
    }

        .banner-cta .btn:hover {
            color: #fff;
            background-color: #243746;
        }

.logoOpac {
    opacity: 0.6;
}

.bigbetsIcon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

    .bigbetsIcon img {
        height: 60%;
        width: 80%;
        object-fit: contain;
    }

.followUsWraper {
    position: fixed;
    right: 0;
    bottom: 50px;
    background-color: #243746;
    border-radius: 10px 0 0 10px;
    z-index: 99;
    height: 55px;
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    padding: 0 12px;
}

    .followUsWraper:hover {
        transform: translateX(0%);
    }

.followUsText {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    display: inline-block;
    text-align: center;
    line-height: 1.3;
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    overflow: hidden;
    position: absolute;
    background-color: #243746;
    left: 0;
    height: 100%;
    width: 90px;
    padding: 8px 10px 8px 18px;
    border-radius: 10px 0 0 10px;
    transform: translateX(-100%);
    z-index: -1;
}

.followUsWraper:hover .followUsText {
    transform: translateX(0%);
}

.followUsIcon {
    display: inline-block;
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    background-color: #243746;
    overflow: hidden;
    padding: 12px 0;
}

.social-link {
    display: none;
}

.followUsIcon ul {
    display: inline-block;
    height: 100%;
}

    .followUsIcon ul li {
        height: 100%;
        padding: 0 4px;
        overflow: hidden;
        margin: 0;
        display: inline-block;
        float: none;
        vertical-align: middle;
    }

        .followUsIcon ul li a {
            display: inline-block;
            width: 30px;
            height: 30px;
            line-height: 30px;
            background-color: #476c8a;
            text-align: center;
            border-radius: 50%;
            padding: 0;
            position: relative;
            vertical-align: middle;
            overflow: hidden;
            margin: 0;
            box-shadow: none;
        }

            .followUsIcon ul li a i {
                height: 30px;
                line-height: 30px;
                font-size: 15px;
                position: relative;
                z-index: 2;
            }

        .followUsIcon ul li .btn-floating.facebook:hover,
        .followUsIcon ul li .btn-floating.facebook.btn-floating:focus {
            background-color: #2970b1;
        }

        .followUsIcon ul li .btn-floating.twitter:hover,
        .followUsIcon ul li .btn-floating.twitter.btn-floating:focus {
            background-color: #00b6f1;
        }

        .followUsIcon ul li .btn-floating.linkedin:hover,
        .followUsIcon ul li .btn-floating.linkedin.btn-floating:focus {
            background-color: #026194;
        }

        .followUsIcon ul li .btn-floating.youtube:hover,
        .followUsIcon ul li .btn-floating.youtube.btn-floating:focus {
            background-color: #ba202e;
        }

        .followUsIcon ul li .btn-floating.instagram:hover,
        .followUsIcon ul li .btn-floating.instagram.btn-floating:focus {
            background-color: #ba202e;
        }

.modal .modal-footer .section-title .headline {
    font-size: 33px;
    font-weight: bold;
    padding-top: 7px;
}

/* .modal .modal-close {
  position: absolute;
  right: 10px;
  top: 2px;
  font-size: 41px;
  color: #000;
  width: 50px;
  text-align: center;
} */
.modal .modal-close {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 32px;
    height: 32px;
    opacity: 0.6;
}

    .modal .modal-close:hover {
        opacity: 1;
    }

    .modal .modal-close:before, .modal .modal-close:after {
        position: absolute;
        left: 15px;
        content: ' ';
        height: 33px;
        width: 2px;
        background-color: #333;
    }

    .modal .modal-close:before {
        transform: rotate(45deg);
    }

    .modal .modal-close:after {
        transform: rotate(-45deg);
    }



.modal .modal-footer {
    padding: 6px 27px;
}

.top-banner-img img {
    min-height: 100%;
    object-fit: cover;
}

.modal.modal-fixed-footer .modal-footer {
    bottom: auto;
    top: 0;
}

.modal.modal-fixed-footer .modal-content {
    margin-top: 56px;
    position: relative;
}

.modal .modal-footer .section-title .headline {
    text-align: left;
}


.contactLinks {
    padding: 0;
    margin: 0;
    margin-top: 15px;
    text-align: left;
}

    .contactLinks > span {
        display: block;
        font-weight: bold;
        color: #000;
        text-transform: uppercase;
    }

    .contactLinks i {
        display: inline-block;
        width: 30px;
        height: 30px;
        line-height: 30px;
        border-radius: 50%;
        font-size: 15px;
        position: relative;
        z-index: 2;
        color: #fff;
        text-align: center;
        background-color: #666666;
    }

.videoResul {
    /* float: right;
  width: 60%; 
  margin: 0 0 30px 30px;*/
    border-radius: 9px;
    overflow: hidden;
    position: relative;
    border-radius: 3px;
    line-height: 0;
}

    .videoResul video {
        width: 100%;
        height: auto;
    }

.leftSide h2.headingFont {
    font-size: 2.5rem;
    line-height: 3.2rem;
}

.leftSide .bottomBorder {
    position: relative;
    padding-bottom: 10px;
}

    .leftSide .bottomBorder::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        height: 3px;
        width: 35%;
        background-color: #fff;
    }

.modal.forVideo {
    width: 90%;
    max-width: 450px;
    height: auto;
    max-height: none;
}


.error {
    font-size: 12px;
    color: red;
}

.thankyouWrap {
    border: 1px solid #333;
    padding: 40px;
    text-align: center;
    margin-top: 50px;
}

.checkCircle {
    margin-bottom: 20px;
}

    .checkCircle i {
        font-size: 70px;
        color: #ef4023;
    }




.jobTblWrap table {
    border-collapse: separate;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
}

    .jobTblWrap table caption {
        font-size: 1.5em;
        margin: .5em 0 .75em;
    }

    .jobTblWrap table tr {
        background-color: #F8F8F8;
        padding: 10px;
        /* border-radius: 10px; */
        border-bottom: none;
        transition: all ease 0.3s;
        -webkit-transition: all ease 0.3s;
    }

    .jobTblWrap table thead tr {
        background-color: transparent;
    }



    .jobTblWrap table tbody tr:hover {
        background-color: #e2e2e2;
    }

    /* .jobTblWrap table tbody > tr > td:first-child{
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.jobTblWrap table tbody > tr > td:last-child{
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
} */


    .jobTblWrap table th,
    .jobTblWrap table td {
        padding: 15px;
        text-align: left;
        color: #476C8A;
        font-size: 16px;
    }

    .jobTblWrap table td {
        border-bottom: 10px solid #fff;
        padding: 30px 15px;
    }

        .jobTblWrap table td a {
            color: #476C8A;
        }

            .jobTblWrap table td a:hover {
                text-decoration: underline;
            }



    .jobTblWrap table th {
        font-size: 18px;
        font-weight: normal;
        text-transform: uppercase;
        color: #243746;
    }

        .jobTblWrap table th label {
            font-size: 16px;
            color: #243746;
        }

    .jobTblWrap table tbody tr td .btn {
        background-color: transparent;
        border: 1px solid #243746;
        border-radius: 30px;
        color: #243746;
        font-weight: 400;
        line-height: 44px;
        height: 46px;
        white-space: nowrap;
        font-size: 14px;
        padding: 0 20px;
        box-shadow: none;
    }

        .jobTblWrap table tbody tr td .btn:hover {
            color: #fff;
            background-color: #243746;
            text-decoration: none;
        }

        .jobTblWrap table tbody tr td .btn.icon {
            height: 60px;
            line-height: 60px;
            padding: 0;
            width: 60px;
        }


.w40 {
    width: 40%;
}

.w35 {
    width: 35%;
}

.w25 {
    width: 20%;
}

.w20 {
    width: 20%;
}

.w10 {
    width: 10%;
}


.economic-heding {
    margin-bottom: 10px;
}

    .economic-heding > span {
        display: block;
        line-height: 1.6;
    }

    .economic-heding .head1 {
        font-size: 22px;
        color: #fff;
    }

    .economic-heding .head2 {
        font-size: 2.6rem;
        color: #ef4023;
        font-weight: bold;
        text-transform: uppercase;
    }

    .economic-heding .head3 {
        font-size: 1.5rem;
        color: #ef4023;
        font-weight: bold;
        text-transform: uppercase;
    }





.s_tabs {
    text-transform: uppercase;
}

    .s_tabs ul {
        display: inline-block;
        vertical-align: top;
        width: 100%;
    }

        .s_tabs ul li {
            float: left;
            position: relative;
            padding: 10px 20px;
        }

            .s_tabs ul li:first-child {
                padding-left: 0;
            }

            .s_tabs ul li:after {
                content: "";
                position: absolute;
                right: -1px;
                top: 50%;
                transform: translateY(-50%);
                -webkit-transform: translateY(-50%);
                width: 2px;
                height: 24px;
                background-color: #225b7f;
            }

    .s_tabs a {
        color: #225b7f;
        font-size: 24px;
        line-height: 24px;
        display: inline-block;
        padding: 10px 25px;
        vertical-align: top;
        float: left;
        position: relative;
        border-radius: 25px;
        transition: all ease 0.4s;
        text-align: center;
        background-color: #dee0e2;
        cursor: pointer;
    }
    /*.s_tabs ul li:first-child a {
	padding-left: 0;
}*/
    .s_tabs ul li:last-child::after {
        display: none;
    }

    .s_tabs a:hover {
    }

    .s_tabs a.active {
        background-color: #fd4513;
        color: #ffffff;
        font-weight: bold;
        cursor: default;
    }












.s_tabs_content {
    margin-top: 1rem;
    border-radius: 0;
}

    .s_tabs_content > .s_tab_content {
        display: none;
    }

        .s_tabs_content > .s_tab_content:first-child {
            display: block;
        }

.select_tab_content {
    display: none;
}




.crt-tag {
    display: none !important;
}

.crt-widget .crt-load-more {
    font-size: 14px;
    letter-spacing: 0.6px;
    font-weight: bold;
    padding: 0 30px;
    height: 48px;
    line-height: 48px;
    border-radius: 25px;
    background-color: #243746 !important;
    display: inline-block;
    color: #fff !important;
}

    .crt-widget .crt-load-more:hover {
        background-color: #2bbbad !important;
    }








@media screen and (max-width: 1920px) {
    .banner-caption h1 {
        font-size: 3.2rem;
    }

    /* .banner-caption span {
    font-size: 22x;
  } */

    .ad-content h2 {
        font-size: 3.8rem;
        line-height: 3.8rem;
    }

    .section-title {
        font-size: 3.8rem;
        line-height: 3.8rem;
    }

    h5.section-title {
        font-size: 2.8rem;
    }

    .footer-blk {
        font-size: 16px;
    }

    footer .container {
        padding: 5rem 0 3rem;
    }

    .footerband {
        font-size: 16px;
    }

    .banner-nav ul li {
        padding: 14px 0;
    }

    .img-in-circle {
        width: 50vw;
        height: 50vw;
    }
    /*.section-slider .swiper-button-next, .swiper-button-prev {
	right: 15%;
	bottom: 6%;
}*/
    /*.section-slider .swiper-button-prev {
	right: calc(15% + 60px);
	right: -webkit-calc(15% + 80px);
}*/
    .quotes {
        font-size: 39px;
    }

        .quotes q {
            padding: 16px 0 12px;
        }

    .sideblock-content {
        max-height: 440px;
        overflow: auto;
    }
    /*-- timeline style start--*/
    .pf-timeline .slide-year .item {
        position: relative;
        height: 550px;
    }
    /*-- timeline style end--*/
}

@media screen and (max-width: 1680px) {
    /* .contactLinks{
    text-align: center;
  } */
    /*   
  .contactLinks > span{
    display: block;
  } */
    .s_tabs ul li {
        float: left;
        position: relative;
        padding: 6px 16px;
    }

    .s_tabs a {
        color: #225b7f;
        font-size: 20px;
        line-height: 22px;
        display: inline-block;
        padding: 9px 25px;
    }

    .bannerText h3 {
        font-size: 42px;
        margin: 0 0 20px 0;
    }

    .bannerText p {
        font-size: 20px;
        max-width: 500px;
        margin: 0 0 20px 0;
    }

    .bannerText {
        padding: 30px 80px;
    }

    .sitenavigation .subMenuWrap > ul > li > a {
        height: 64px;
    }

    .leftSide .post-block h2,
    .leftSide h2 {
        font-size: 2.2rem;
        line-height: 3rem;
    }

        .leftSide h2.headingFont {
            font-size: 1.7rem;
            line-height: 2.2rem;
        }

    .about-people h4 {
        font-size: 28px;
    }

    .profile-thum figcaption h5 {
        font-size: 14px;
    }

    .profile-thum figcaption span {
        font-size: 12px;
        line-height: 16px;
    }

    .top-banner-img .overlay .banner-caption {
        max-width: 650px;
    }

    h3.forName {
        font-size: 26px;
    }

        h3.forName span {
            font-size: 46px;
            padding-bottom: 10px;
        }

    .darkblue-gradi h3.post-title {
        font-size: 38px;
    }

        .darkblue-gradi h3.post-title .big {
            font-size: 64px;
        }

        .darkblue-gradi h3.post-title::after {
            width: 25px;
            height: 4px;
        }

    /* .map_iframe {
    max-width: 510px;
    min-height: 510px;
  } */
    .icon_caption_grid {
        max-width: 450px;
    }

    .home-slider .banner-caption span {
        max-width: 590px;
    }

    .home-slider .banner-caption {
        margin-bottom: 160px;
    }

    .footerStates span {
        font-size: 13px;
    }

    .sitenavigation .subMenuWrap > ul > li > a {
        font-size: 16px;
    }

    .impact-content.education li.impact1::before {
        transform: translateY(-50%) rotate(-23deg);
        width: 40%;
    }

    .impact-content.education li.impact2::before {
        transform: translateY(-50%) rotate(-12deg);
        width: 28%;
    }

    .impact-content.education li.impact3::before {
        transform: translateY(-50%) rotate(-6deg);
        width: 25%;
    }

    .impact-content.education li.impact4::before {
        transform: translateY(-50%) rotate(-2deg);
        width: 19%;
    }

    .impact-content.education li.impact5::before {
        transform: translateY(-50%) rotate(9deg);
        width: 24%;
    }

    .impact-content.education li.impact6::before {
        transform: translateY(-50%) rotate(27deg);
        width: 27%;
    }

    .impact-content.gandhi li.impact2::before {
        transform: translateY(-50%) rotate(-6deg);
        width: 22% !important;
    }

    .impact-content.gandhi li.impact4::before {
        transform: translateY(-50%) rotate(3deg);
        width: 22%;
    }

    .btn {
        font-size: 14px;
        letter-spacing: 0.6px;
        font-weight: bold;
        padding: 0 30px;
        height: 48px;
        line-height: 48px;
        border-radius: 25px;
        background-color: #243746;
        display: inline-block;
    }

        .btn.card-btn {
            font-size: 14px;
            height: 42px;
            line-height: 42px;
            letter-spacing: 0.4px;
            padding: 0 32px;
        }

    .banner-cta .btn {
        line-height: 36px;
        height: 40px;
    }

    .jobTblWrap table tbody tr td .btn {
        line-height: 38px;
        height: 40px;
        font-size: 12px;
    }

        .jobTblWrap table tbody tr td .btn.icon {
            height: 40px;
            line-height: 40px;
            padding: 0;
            width: 40px;
        }

    .container {
        padding: 5rem 0;
    }

    nav,
    nav .nav-wrapper i,
    nav a.sidenav-trigger,
    nav a.sidenav-trigger i,
    .hamburger {
        height: 64px;
        line-height: 64px;
    }

        .top-search .input-field input[type="search"] ~ .mdi-navigation-close,
        .top-search .input-field input[type="search"] ~ .material-icons,
        nav .top-search .input-field label i {
            height: 64px;
            line-height: 64px;
            font-size: 28px;
        }

    .lang {
        padding: 0 25px;
        line-height: 64px;
        font-size: 16px;
    }

        .lang a {
            display: inline-block;
            width: 36px;
            height: 36px;
            line-height: 38px;
            font-size: 14px; /*margin-left: 12px;*/
        }

    .searchbarclick a {
        height: 64px;
        line-height: 64px;
        padding: 0 16px;
        font-size: 16px;
    }

    .hamburger {
        width: 80px;
        padding: 0 25px;
    }

    .mainlogo a {
        padding: 4px 25px;
    }

    .social-link {
        padding: 0 25px;
    }

        .social-link ul li a {
            display: inline-block;
            width: 36px;
            height: 36px;
            line-height: 36px;
        }

            .social-link ul li a i {
                height: 36px;
                line-height: 36px;
                font-size: 16px;
            }

    .top-search .input-field input[type="search"] + .label-icon {
        right: 23px;
    }

    .top-search .input-field input[type="search"] {
        padding: 0 55px 0 25px;
    }

    .banner-caption {
        padding: 1rem 0;
    }

        .banner-caption h1 {
            font-size: 2.6rem;
            /* letter-spacing: 0.1rem; */
        }

        .banner-caption span {
            font-size: 20px;
            margin-top: 1rem;
        }

    .homebanner-tabs ul li a {
        height: 180px;
        padding: 16px;
    }

    .homebanner {
        height: 100vh;
    }

    .tab-nav .caption .title {
        font-size: 18px;
        min-height: 25px;
    }

    .tab-nav .caption .subtext {
        font-size: 16px;
    }

    .post-section:before {
        right: -190px;
        top: -190px;
        width: 370px;
        height: 370px;
        border-left-width: 24px;
        box-shadow: 0px 0px 10px -1px rgba(0, 0, 0, 0.9);
    }

    .tab-nav .pf-circle {
        width: 80px;
        height: 80px;
        top: -40px;
    }

        .tab-nav .pf-circle:before {
            width: calc(100% + 9px);
            height: calc(100% + 9px);
            width: -webkit-calc(100% + 9px);
            height: -webkit-calc(100% + 9px);
        }

        .tab-nav .pf-circle:before {
            width: calc(100% + 18px);
            height: calc(100% + 18px);
            width: -webkit-calc(100% + 18px);
            height: -webkit-calc(100% + 18px);
        }

    .homebanner-tabs {
        margin-top: -90px;
        width: 100%;
    }

    .post-block {
        max-width: 550px;
    }

        .post-block.block-about {
            max-width: 580px;
        }

        .post-block h2 {
            font-size: 3.8rem;
            line-height: 3.8rem;
        }

        .post-block h4 {
            font-size: 2rem;
            line-height: 2.1rem;
            font-weight: bold;
            margin: 1.6rem 0 0;
        }

    .paragraph p {
        font-size: 14px;
        margin-bottom: 1rem;
    }

    .post-block .paragraph {
        padding: 4px 0;
        padding-right: 0;
    }

        .post-block .paragraph.quote-para {
            padding: 22px;
        }

    .paragraph .fa-quote-left {
        top: 22px;
        font-size: 25px;
    }

    .paragraph .fa-quote-right {
        font-size: 25px;
    }

    .post-block .post-icon {
        display: inline-block;
        width: 120px;
        height: 120px;
    }

    .post-block .action {
        padding: 12px 20px;
    }

    .ad-content h2 {
        font-size: 3rem;
        line-height: 3rem;
    }

    .news-card .news-title {
        font-size: 16px;
        padding: 16px 16px;
        min-height: 74px;
    }

    .news-card .news-img {
        height: 150px;
    }

    .news-card .news-content .paragraph {
        font-size: 14px;
        line-height: 140%;
        min-height: 82px;
    }

    .news-card .news-content {
        padding: 18px;
    }

        .news-card .news-content .action {
            padding: 18px 0 4px 0;
        }

    .section-title {
        font-size: 3rem;
        line-height: 3.1rem;
    }

    h5.section-title {
        font-size: 2.2rem;
    }

    .input-field > label {
        font-size: 15px;
    }

    .section-title i {
        margin-right: 6px;
    }

    .form-title {
        margin-bottom: 6px;
    }

    .footer-blk .footer-logo {
        max-width: 150px;
    }

    .footer-blk {
        font-size: 13px;
        padding: 4px 0;
        line-height: 130%;
    }

        .footer-blk li.title {
            font-size: 14px;
        }

        /* .footer-blk li {
			padding: 4px 0;
		} */

        .footer-blk .footer-logo img {
            margin-top: -20px;
        }

        .footer-blk address br {
            display: none;
        }

        .footer-blk address {
            max-width: 218px;
            font-size: 13px;
        }

    footer .container {
        padding: 4rem 0 2rem;
    }

    .footerband {
        font-size: 13px;
    }

        .footerband .container {
            padding: 16px 0;
        }

    .mainmenu > ul .menu > a {
        height: 64px;
    }

    .submenutrigger {
        height: 64px;
        width: 80px;
    }

    .mainmenu > ul .menu > a {
        padding: 0 86px 0 25px;
    }

    .banner-nav {
        padding: 72px 0px 9px 118px;
    }

        .banner-nav ul li {
            padding: 17px 0;
        }

        .banner-nav .caption {
            font-size: 16px;
        }

    .pf-circle {
        width: 60px;
        height: 60px;
    }

        .pf-circle .caption {
            font-size: 18px;
            padding: 0 20px;
        }

    .impact-content ul li .pf-circle {
        width: 100px;
        height: 100px;
    }

    .ring-wrapp {
        width: 40%;
    }

    .impact-content,
    .aspirational-impact-content {
        width: 60%;
    }

        .impact-content ul li {
            font-size: 15px;
            line-height: 140%;
            height: 80px;
            margin: 2.3% 0;
            border-radius: 20px !important;
        }

        .impact-content ul {
            padding-left: 10%;
        }

            .impact-content ul li .pf-circle {
                width: 80px;
                height: 80px;
            }

    .pf-circle.text i {
        font-size: 12px;
        line-height: 80px;
    }

    .post-block h3 {
        font-size: 2rem;
        line-height: 2.5rem;
        margin-bottom: 0.2rem;
    }

        .post-block h3 br {
            display: none;
        }

    .post-block h5 {
        font-size: 1.7rem;
        margin-bottom: 0.1rem;
    }

    .post-block ol,
    .post-block ul {
        font-size: 16px;
        padding: 4px 0 4px 18px;
    }

        .post-block ol li,
        .post-block ul li {
            margin-bottom: 0;
        }

    .scale-reach {
        padding: 8px 0;
    }

        .scale-reach .title {
            font-size: 16px;
        }

    .post-block .scale-reach ul {
        padding: 12px 0;
    }
    /* .section-slider .swiper-button-next,
  .swiper-button-prev {
    width: 50px;
    height: 50px;
  } */
    /*.section-slider .swiper-button-prev {
	right: calc(15% + 60px);
	right: -webkit-calc(15% + 60px);
  }*/
    .img-in-circle {
        width: 49vw;
        height: 49vw;
    }

    .section-nav .container {
        text-align: right;
    }

    .pf-tab-wrapp {
        padding: 12px 0;
    }

        .pf-tab-wrapp .nav-scroller {
            padding: 14px 0;
        }

    .mCSB_scrollTools.mCSB_scrollTools_horizontal {
        height: 10px !important;
        bottom: 2px !important;
        top: inherit !important;
    }

    .pf-tab-wrapp .nav-scroller-item {
        padding: 0 1.2rem;
        display: inline-block;
        height: 38px;
        line-height: 38px;
        font-size: 14px;
    }

    .tabs.pf-tab .tab a {
        min-width: 166px;
        font-size: 17px;
        padding: 0 24px;
        height: 46px;
        line-height: 46px;
    }

    .page-title h2 {
        font-size: 42px;
    }

    .quotes {
        font-size: 26px;
    }

        .quotes .left-quote,
        .quotes .right-quote {
            font-size: 32px;
        }

            .quotes .left-quote:after,
            .quotes .right-quote:after {
                top: 16px;
                width: calc(100% - 40px);
                width: -webkit-0calc(100% - 40px);
                height: 3px;
            }

        .quotes q {
            padding: 6px 0 6px;
        }

        .quotes .author {
            font-size: 18px;
            padding: 4px 0 0;
        }

    .paragraph .paragraph-art {
        padding: 8px 0 8px 18px;
    }

    .post-block .paragraph > strong {
        font-size: 18px;
    }

    .scale-reach figure {
        margin: 0;
        font-size: 14px;
    }

        .scale-reach figure > span {
            display: inline-block;
            width: 40px;
        }

    .section-slider .container {
        padding: 3rem 0;
    }

    .page-tab a {
        color: #225b7f;
        font-size: 20px;
        line-height: 22px;
        display: inline-block;
        padding: 9px 25px;
    }

    .page-tab ul li {
        float: left;
        position: relative;
        padding: 6px 16px;
    }

    .people-wrapp figure {
        margin: 0 50px 32px 0;
        max-width: 250px;
        display: inline-block;
        text-align: left;
    }

    .mainmenu .social-link ul li {
        padding: 0 10px;
    }

    .submenutrigger i {
        width: 26px;
        height: 26px;
    }

        .submenutrigger i:after,
        .submenutrigger i:before {
            width: 14px;
        }

    .mainmenu > ul .menu {
        font-size: 16px;
    }

    .crt-feed-container .crt-load-more a {
        font-size: 18px;
        height: 48px;
        line-height: 48px;
        padding: 0 30px;
    }

    .sticky {
        position: -webkit-sticky;
        position: sticky;
        top: 63px;
        z-index: 99;
    }
    /* .impact-wrapper {
    width: 1000px;
  } */
    .post-img .gray-circle {
        width: 300px;
        height: 300px;
    }

    .banner-nav .caption {
        left: 76px;
    }

    .blog-headline h3 {
        font-size: 32px;
    }

    .blog-headline {
        color: #c9cacb;
        font-size: 18px;
    }

        .blog-headline .blog-date-details {
            padding: 4px 0;
        }

        .blog-headline .blog-by {
            margin: 2px 0;
        }

        .blog-headline .blog-date-details > span > i {
            vertical-align: initial;
            margin-right: 2px;
        }

    .blog-years {
        font-size: 18px;
    }

    .sidebar {
        padding: 8px 0;
    }

    .sideblock {
        padding: 16px;
    }

    .sideblock-content {
        max-height: 260px;
    }

    .sideblock .title {
        font-size: 22px;
    }

    .recent-post {
        font-size: 18px;
        line-height: 130%;
        padding: 12px 12px;
    }

    .sideblock .tags a {
        font-size: 14px;
        padding: 4px 8px;
        margin: 0 6px 6px 0;
    }

    .post-block-wrapp {
        min-height: 390px;
    }

    .post-source {
        font-size: 14px;
    }

        .post-source > span > i {
            font-size: 14px;
            margin-right: 3px;
        }

    .post-block h2 .pf-circle {
        width: 90px;
        height: 90px;
        right: calc(100% + 30px);
        right: -webkit-calc(100% + 30px);
    }

    .reverse .post-block h2 .pf-circle {
        right: inherit;
        left: calc(100% + 30px);
        left: -webkit-calc(100% + 30px);
    }

    .pf-circle.bgimg:before {
        width: calc(100% + 18px);
        height: calc(100% + 18px);
        width: -webkit-calc(100% + 18px);
        height: -webkit-calc(100% + 18px);
    }

    .pf-circle.bgimg:after {
        width: -webkit-calc(100% + 40px);
        height: -webkit-calc(100% + 40px);
        width: calc(100% + 40px);
        height: calc(100% + 40px);
    }

    .impact-content li.impact1::before {
        transform: translateY(-50%) rotate(-16deg);
        width: 31%;
    }

    .impact-content li.impact2::before {
        transform: translateY(-50%) rotate(-4deg);
        width: 21%;
    }

    .impact-content li.impact3::before {
        transform: translateY(-50%) rotate(0);
        width: 22%;
    }

    .impact-content li.impact4::before {
        transform: translateY(-50%) rotate(1deg);
        width: 23%;
    }

    .impact-content li.impact5::before {
        transform: translateY(-50%) rotate(12deg);
        width: 29%;
    }

    .impact-wrapper.youthemp .impact-content li.impact2::before {
        width: 20%;
    }

    .impact-wrapper.youthemp .impact-content li.impact3::before {
        width: 25%;
    }

    ul.list li:before {
        margin: 12px;
        width: 7px;
        height: 7px;
    }

    .post-img {
        right: -12px;
        left: inherit;
    }

        .post-img.left {
            left: -12px;
            right: inherit;
        }

    .alumni-diversion li figure .img {
        width: 70px;
        height: 70px;
        line-height: 70px;
        font-size: 30px;
    }

    .alumni-diversion li figure .title {
        font-size: 16px;
    }

    .alumni-diversion li figure figcaption p {
        font-size: 12px;
    }

    ul.alumni-diversion {
        width: 100%;
        padding: 6px 0;
    }

    .brand-cta .container {
        padding: 30px 0;
    }

    .brand-cta .brand-logo span {
        display: inline-block;
        width: 240px;
    }

    .ring-wrapp.aspirational {
        width: 50%;
    }

    .aspirational-impact-content .impact-caption {
        font-size: 13px;
    }

    .aspirational-impact-content li {
        padding: 0 3%;
    }

        .aspirational-impact-content li.impact1 {
            top: 0.5%;
            width: 54%;
        }

        .aspirational-impact-content li.impact2 {
            top: 10%;
            width: 51%;
        }

        .aspirational-impact-content li.impact3 {
            top: 23.5%;
            width: 48%;
        }

        .aspirational-impact-content li.impact4 {
            top: 38%;
            width: 46.5%;
        }

        .aspirational-impact-content li.impact5 {
            top: 53.5%;
            width: 47%;
        }

        .aspirational-impact-content li.impact6 {
            top: 67%;
            width: 50%;
        }

        .aspirational-impact-content li.impact7 {
            top: 77%;
            width: 56%;
        }

    .horizontal.alumni-diversion li figure .title {
        position: absolute;
        right: 0;
        text-align: left;
        font-size: 16px;
        width: calc(100% - 86px);
        width: -webkit-calc(100% - 86px);
    }

    .news-card .news-content .paragraph p {
        font-size: 14px;
    }
    /* ul.list {
    font-size: 16px;
  } */
    .form-wrapp {
        max-width: 850px;
    }

    .news-list-card .caption h4 {
        font-size: 16px;
        line-height: 22px;
        margin: 0;
        color: #243746;
        height: 66px;
        margin-bottom: 8px;
        text-overflow: ellipsis;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-box;
        display: box;
        -webkit-box-orient: vertical;
        -moz-box-orient: vertical;
        -ms-box-orient: vertical;
        box-orient: vertical;
        overflow: hidden;
        -webkit-line-clamp: 3;
        -moz-line-clamp: 3;
        -ms-line-clamp: 3;
        line-clamp: 3;
        overflow: hidden;
    }

    .news-list-card .news-details {
        color: #cccccc;
        font-size: 16px;
        padding: 2px 0 0;
    }

    .map {
        padding-top: 64px;
    }

    .contact-way {
        padding: 10px;
        width: auto;
    }

        .contact-way .icon {
            display: inline-block;
            width: 60px;
            height: 60px;
            font-size: 30px;
            line-height: 60px;
        }

        .contact-way .caption {
            width: calc(100% - 70px);
            width: -webkit-calc(100% - 70px);
            font-size: 11px;
            line-height: 155%;
        }

    .contact-way-wrapp > ul > li {
        height: 170px;
    }

    .initiatives-card-wrapp > ul > li {
        padding: 0 12px;
    }

    .initiatives-img .title {
        font-size: 18px;
    }

    .initiatives-img {
        padding: 12px 12px 32px 12px;
    }

        .initiatives-img .title {
            margin-bottom: 20px;
        }

    .initiatives-card figcaption {
        font-size: 16px;
    }

        .initiatives-card figcaption a {
            padding: 1px 0;
        }

    .sideblock-card .img {
        height: 147px;
    }

    .sideblock-card .contact-info {
        font-size: 13px;
        line-height: 22px;
        text-align: center;
        padding-bottom: 4px;
        margin-bottom: 3px;
    }

        .sideblock-card .contact-info a i {
            line-height: 23px;
            margin-right: 2px;
        }

    .sideblock-card .btn {
        font-size: 16px;
    }

    .post-img > img {
        max-width: 110%;
    }

    .post-block .post-title i {
        font-size: 14px;
        line-height: 11px;
    }

    .post-block .paragraph.scrollbar {
        max-height: 420px;
    }

    .post-block .paragraph.small-para-scroll {
        max-height: 135px;
    }

    .journey-tab.page-tab a {
        transform: scale(0.9);
        -webkit-transform: scale(0.9);
        margin-top: -32px;
    }

    .journey-tab.page-tab ul li > span {
        font-size: 12px;
        line-height: 14px;
    }

    .journey-tab.page-tab ul li {
        padding: 0 12px;
        margin-bottom: 52px;
    }
    /*-- timeline style start--*/
    .pf-timeline .timeline__content p {
        font-size: 16px;
    }

    .pf-timeline .timeline__content {
        padding: 0.4rem 6px;
    }

    .pf-timeline .timeline--horizontal .timeline__item {
        padding: 0 0 2.5rem;
    }

    .pf-timeline .timeline--horizontal .timeline__item--bottom {
        padding: 2.5rem 0 0;
    }

    .pf-timeline .slide-year .item {
        position: relative;
        height: 400px;
        padding: 12px;
    }

    .pf-timeline .timeline-nav .item {
        height: 80px;
    }

    .year-nav label {
        bottom: 85%;
    }
    /*-- timeline style end--*/

    .post-block .quote-para .scrollbar {
        max-height: 290px;
    }

    /* .circle-img{
    width: 450px;
    height: 450px;
  
  } */

    .paragraph ol,
    .paragraph ul {
        font-size: 14px;
    }

    .bannerBotmIcon {
        height: 150px;
    }

    .economic-heding .head1 {
        font-size: 17px;
    }

    .economic-heding .head2 {
        font-size: 2.1rem;
    }

    .economic-heding .head3 {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 1300px) {
    .ourPresent .title {
        font-size: 28px;
    }

    .leftSide .post-block h2,
    .leftSide h2 {
        font-size: 1.8rem;
        line-height: 2.6rem;
    }

        .leftSide h2.headingFont {
            font-size: 1.5rem;
            line-height: 2.2rem;
        }

    .w40 {
        width: 35%;
    }

    .w25 {
        width: 25%;
    }

    .w20 {
        width: 20%;
    }

    .w10 {
        width: 10%;
    }
}

@media screen and (max-width: 1200px) {
    .impact-content.education li.impact1::before {
        transform: translateY(-50%) rotate(-13deg);
        width: 35%;
    }

    .impact-content.education li.impact2::before {
        transform: translateY(-50%) rotate(-1deg);
        width: 20%;
    }

    .impact-content.education li.impact3::before {
        transform: translateY(-50%) rotate(-2deg);
        width: 14%;
    }

    .impact-content.education li.impact4::before {
        transform: translateY(-50%) rotate(-18deg);
        width: 10%;
    }

    .impact-content.education li.impact5::before {
        transform: translateY(-50%) rotate(-7deg);
        width: 16%;
    }

    .impact-content.education li.impact6::before {
        transform: translateY(-50%) rotate(14deg);
        width: 24%;
    }

    .impact-content.gandhi li.impact2::before {
        transform: translateY(-50%) rotate(8deg);
        width: 12% !important;
    }

    .impact-content.gandhi li.impact4::before {
        transform: translateY(-50%) rotate(-14deg);
        width: 12%;
    }

    .impact-content.gandhi li.impact3::before {
        transform: translateY(-50%) rotate(-5deg);
        width: 12% !important;
    }

    .container {
        padding: 5rem 0;
        width: 90%;
    }

        .container.big {
            width: 95%;
        }

    .ad-section-vector {
        width: 100%;
    }

    .footerband {
        font-size: 13px;
    }

    .ring-wrapp {
        width: 50%;
    }

    .impact-content,
    .aspirational-impact-content {
        width: 50%;
    }

        .impact-content ul {
            padding-left: 0%;
        }

        .impact-content li.impact1::before {
            transform: translateY(-50%) rotate(0deg);
            width: 28%;
        }

        .impact-content li.impact2::before {
            transform: translateY(-50%) rotate(14deg);
            width: 13%;
        }

        .impact-content li.impact3::before {
            transform: translateY(-50%) rotate(0);
            width: 14%;
        }

        .impact-content li.impact4::before {
            transform: translateY(-50%) rotate(-21deg);
            width: 15%;
        }

        .impact-content li.impact5::before {
            transform: translateY(-50%) rotate(-5deg);
            width: 26%;
        }

    .homebanner-tabs {
        width: 100%;
    }

    .people-wrapp figure {
        margin: 0 54px 32px 0;
        max-width: 260px;
    }
    /* .impact-wrapper {
    width: 973px;
  } */
    .people-grid.gridtab {
        margin-left: auto;
        margin-right: auto;
    }

    .people-grid .profile-thum figcaption h5 {
        font-size: 14px;
    }

    .people-grid .profile-thum figcaption span {
        font-size: 11px;
        line-height: 18px;
    }

    .people-grid .content p {
        font-size: 12px;
        margin-bottom: 0.6rem;
    }

    .homebanner video {
        height: 100%;
        width: auto;
    }

    .aspirational-impact-content li {
        padding: 0 8%;
    }

        .aspirational-impact-content li.impact7 {
            top: 78%;
            width: 56%;
        }

        .aspirational-impact-content li.impact6 {
            top: 68%;
            width: 50%;
        }

        .aspirational-impact-content li.impact5 {
            top: 54.5%;
        }

    .contact-way-wrapp > ul > li {
        width: 50%;
        vertical-align: top;
    }

        .contact-way-wrapp > ul > li:first-child {
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .contact-way-wrapp > ul > li:nth-child(2) {
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

    .contact-way {
        width: 100%;
    }
    /*-- timeline style start--*/
    .pf-timeline .slide-year .item {
        height: auto;
        min-height: 450px;
    }

    .pf-timeline {
        width: 100%;
        color: #ffffff;
        max-width: 100%;
    }

    .circle-img {
        max-width: 450px;
    }

    .bannerText h3 {
        font-size: 36px;
        margin: 0 0 20px 0;
    }

    .bannerText p {
        font-size: 16px;
        max-width: 400px;
        margin: 0 0 20px 0;
    }

    .bannerText {
        padding: 30px 50px;
    }

    .iconWraper img {
        width: 50px;
    }

    .jobTblWrap table tbody tr td .btn {
        line-height: 34px;
        height: 36px;
        font-size: 12px;
        padding: 0 10px;
    }

        .jobTblWrap table tbody tr td .btn.icon {
            height: 36px;
            line-height: 36px;
            padding: 0;
            width: 36px;
        }

    /*-- timeline style end--*/
}

@media screen and (max-width: 992px) {

    .contactLinks {
        text-align: left;
    }

    /* .contactLinks > span{
    display: block;
    font-weight: bold;
  } */
    .footer-blk address {
        max-width: 280px;
    }

    .footerStates span {
        width: 33.3333%;
        /* font-size: 12px; */
    }

    .leader-grid-box {
        width: 33.3333%;
    }

    .supporrt-grid .supporrt-grid-box {
        width: 33.3333%;
        padding: 18px !important;
    }

    .about-people h4 {
        font-size: 20px;
    }

    .home-slider {
        position: relative;
        height: 87vh;
    }

        .home-slider .banner-caption {
            width: 90%;
            margin-bottom: 65px;
        }

        .home-slider .swiper-pagination {
            bottom: 0;
        }

        .home-slider .swiper-pagination-bullet {
            width: 20px;
            height: 5px;
        }

        .home-slider .swiper-pagination-bullet-active {
            width: 40px;
        }

    /* .home-slider .swiper-slide img{
    height: 60vh;
    width: auto;
  } */

    nav,
    nav .nav-wrapper i,
    nav a.sidenav-trigger,
    nav a.sidenav-trigger i,
    .hamburger {
        height: 60px;
        line-height: 60px;
    }

    .sticky {
        top: 60px;
    }

    .mobile-only {
        display: block !important;
    }

    .desktop-only {
        display: none !important;
    }

    .fixed-tab {
        display: none !important;
    }
    /* header nav .top-search,
  header nav .social-link {
    display: none;
  } */
    .mainmenu .social-link {
        position: static;
        background-color: #243746;
    }

    .mainmenu > ul {
        height: auto;
        /*height: -webkit-calc(100% - 204px);*/
        overflow: hidden;
    }

    .mainmenu {
        height: 100vh;
        max-height: 100%; /*	height: -webkit-calc(100vh - 80px);*/
    }

    .banner-caption {
        width: 90%;
    }

        .banner-caption h1 {
            font-size: 2.2rem;
            /* letter-spacing: 0.1rem; */
        }

        .banner-caption span {
            font-size: 18px;
        }

    .post-block {
        max-width: 100%;
    }

        .post-block.block-about {
            max-width: 400px;
        }

        .post-block .post-icon,
        .reverse .post-block .post-icon {
            position: relative;
            transform: none;
            -webkit-transform: none;
            margin-bottom: 1.2rem;
        }

        .post-block .post-title br {
            display: none;
        }

    .post-section {
        min-height: auto;
        display: block;
    }

    .section-img {
        position: relative;
        margin-top: -5%;
    }

    .tab-nav .caption .title {
        font-size: 15px;
    }

    .homebanner-tabs ul li {
        width: 33.333%;
    }

        .homebanner-tabs ul li a {
            height: 200px;
        }

        .homebanner-tabs ul li:first-child a,
        .homebanner-tabs ul li:last-child a {
            border-radius: 0;
        }

    .homebanner-tabs ul {
        display: block;
    }

    .homebanner-tabs {
        margin-top: 0;
        width: 100%;
    }

    .homebanner {
        height: auto;
        min-height: 250px;
    }

    .footerband {
        font-size: 12px;
    }

    .footer-blk .footer-logo {
        float: left;
        margin-right: 0;
        vertical-align: middle;
        border-right: 1px solid #2626;
        padding-right: 24px;
        width: 162px;
    }

    .footer-blk address {
        width: calc(100% - 162px);
        display: inline-block;
        float: left;
        padding: 4px 0 4px 24px;
    }

    .footer-blk .footer-logo img {
        margin-top: -12px;
    }

    .footer-blk {
        padding: 4px 0;
    }
    /* .footer-blk li {
    padding: 1px 0;
  } */
    .footer-nav {
        padding: 24px 0 0;
    }

        .footer-nav > ul > li {
            width: 33.33%;
            margin-bottom: 15px;
        }

            .footer-nav > ul > li:first-child {
                width: 100%;
            }

    footer .container {
        padding: 2rem 0 1rem;
    }

    .top-banner-bg {
        height: 60vh;
    }

    .top-banner .banner-nav li {
        display: inline-block;
        padding: 20px;
    }

    .top-banner-bg {
        min-height: 250px;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: flex-end;
        display: -webkit-flex;
        -webkit-align-items: flex-end;
    }

    .banner-nav {
        padding: 16px;
        text-align: center;
        max-width: inherit;
        width: 100%;
    }
    /* .top-banner-img {
    opacity: 0.7;
  } */
    .top-banner-img .simpleParallax img {
        min-height: 100%;
        object-fit: cover;
    }

    .pf-circle .caption {
        left: 50%;
        top: 100%;
        text-align: center;
        padding: 16px 6px;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
    }

        .pf-circle .caption span {
            text-align: center;
            transform: translateY(-20px);
            -webit-transform: translateY(-20px);
        }

    .banner-nav .pf-circle:hover .caption span,
    .banner-nav .pf-circle.active .caption span {
        transform: translateY(0);
        -webkit-transform: translateY(0);
    }

    .impact-wrapper {
        display: block;
    }

    .ring-wrapp {
        width: 100%;
    }

    .impact-content,
    .aspirational-impact-content {
        width: 100%;
    }

    .impact-ring .dots-img {
    }

    .impact-ring {
        transform: rotate(90deg);
        -webkit-transform: rotate(90deg);
    }

        .impact-ring .ring-img {
            transform: rotate(-90deg);
            -webkit-transform: rotate(-90deg);
        }

    .impact-ring {
        width: 90%;
        margin: 0 auto 2rem;
    }

    .impact-content ul li:before {
        display: none;
    }

    .impact-content ul li {
        width: calc(100% - 16px) !important;
        width: -webkit-calc(100% - 16px) !important;
    }

    .ad-section-img .parallax-bg .parallax-left {
        height: 100%;
        width: auto;
        object-fit: cover;
    }

    .col.img-col {
        position: relative;
    }

    .quotes br {
        display: none;
    }

    .quotes-section .container {
        padding: 3rem 0 0;
    }

    .paragraph .paragraph-art {
        display: block;
        width: 100%;
        padding: 16px 0;
    }

    .value-content .value-inner-content h4 {
        color: #243746;
    }

    .value-content .value-inner-content p {
        color: #243746;
    }

        .value-content .value-inner-content p strong {
            color: #243746;
        }

    .people-wrapp figure {
        max-width: 300px;
    }

    .impact-wrapper {
        width: 100%;
    }

    .top-banner .banner-nav li {
        padding: 12px;
        width: 50%;
        float: left;
        margin: 0;
        height: 170px;
        display: flex;
        align-items: center;
        justify-content: center;
        display: -webkit-flex;
        -webkit-align-items: center;
        -webkit-justify-content: center;
    }

    .banner-nav ul li .caption span br {
        display: none;
    }

    .banner-nav {
        padding: 0;
        position: static;
        overflow: visible;
    }

        .banner-nav .pf-circle:hover,
        .banner-nav .pf-circle.active {
            transform: translateX(-50%) scale(1);
            -webkit-transform: translateX(-50%) scale(1);
        }

        .banner-nav ul li .caption span {
            display: block;
            visibility: visible;
            transform: translateX(0);
            opacity: 1;
        }

        .banner-nav ul li .caption {
            position: static;
            width: 100%;
            transform: none;
            margin: 0;
            font-size: 16px;
            line-height: 118%;
            margin-top: -6px;
            text-align: center;
        }

    .top-banner .banner-nav li .pf-circle {
        position: absolute;
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
    }

    .banner-nav ul li .caption span {
        text-align: center;
    }

    .banner-nav .health-clr {
        background-color: #81d8d0 !important;
    }

    .banner-nav .education-clr {
        background-color: #fa9646 !important;
    }

    .banner-nav .youth-clr {
        background-color: #af6aea !important;
    }

    .banner-nav .water-clr {
        background-color: #1b98dc !important;
    }

    .post-img {
        position: relative;
        height: 350px;
        width: 100%;
        left: inherit;
        right: inherit;
    }

        .post-img.left {
            left: inherit;
            right: inherit;
        }

    .section-slider .container {
        padding-bottom: 0;
        padding-top: 4rem;
    }

    .container.post-img-full-container {
        padding-bottom: 4rem;
        padding-top: 4rem;
    }

    .post-img.left {
        margin-bottom: 22px;
    }

    .post-block h2 .pf-circle,
    .reverse .post-block h2 .pf-circle {
        position: relative;
        transform: none;
        left: inherit;
        top: inherit;
        right: inherit;
        margin-bottom: 26px;
        margin-left: 0px;
    }

    .post-block h2 .pf-circle {
        width: 80px;
        height: 80px;
    }

    .aspirational-impact-content {
        margin-top: 16%;
    }

    .ring-wrapp.aspirational,
    .aspirational-impact-content {
        width: 100%;
    }

        .aspirational-impact-content li {
            position: static;
            width: auto;
        }

        .aspirational-impact-content li {
            padding: 12px 24px;
            text-align: center;
            width: 100% !important;
        }

        .aspirational-impact-content ul {
            display: inline-block;
            width: 100%;
        }

    .reports-wrapp ul li {
        display: inline-block;
        padding: 18px 2% 26px;
    }

    .initiatives-card-wrapp > ul > li {
        width: 50%;
        margin-bottom: 24px;
    }

    .vector-bgImg::after {
        background-size: cover;
    }
    /* .map_iframe {
    max-width: 500px;
    min-height: 510px;
} */
    .bannerText h3 {
        font-size: 32px;
        margin: 0 0 20px 0;
    }

    .bannerText p {
        font-size: 16px;
        max-width: 400px;
        margin: 0 0 20px 0;
    }

    .bannerText {
        padding: 20px 30px;
    }

    .iconWraper img {
        width: 40px;
    }

    .social-link {
        display: block;
    }

    .followUsWraper {
        display: none;
    }

    .leftSide .post-block h2,
    .leftSide h2 {
        font-size: 1.6rem;
        line-height: 2.5rem;
    }

        .leftSide h2.headingFont {
            font-size: 1.3rem;
            line-height: 2rem;
        }

    h3.forName {
        font-size: 22px;
    }

    .ourPresent .title {
        font-size: 20px;
    }

    .icon_caption figcaption {
        font-size: 12px;
    }

        .icon_caption figcaption big {
            font-size: 32px;
        }

    .ourPresent {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .economic-heding .head1 {
        font-size: 14px;
    }

    .economic-heding .head2 {
        font-size: 1.8rem;
    }

    .economic-heding .head3 {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 824px) {
    .s_tabs a {
        color: #225b7f;
        font-size: 16px;
        line-height: 20px;
        display: inline-block;
        padding: 9px 20px;
    }

    .btn {
        font-size: 15px;
        letter-spacing: 0.2px;
        font-weight: bold;
        padding: 0 24px;
        height: 48px;
        line-height: 48px;
        border-radius: 22px;
        background-color: #243746;
        display: inline-block;
    }

    .container {
        padding: 3rem 0;
    }

    .post-block h2 {
        font-size: 2.3rem;
        line-height: 2.4rem;
    }

    .post-block h4 {
        font-size: 1.5rem;
        line-height: 1.8rem;
        font-weight: bold;
        margin: 1.2rem 0 0;
    }

    .post-block .post-title i {
        font-size: 12px;
        line-height: 10px;
    }

    .post-block .post-icon {
        display: inline-block;
        width: 100px;
        height: 100px;
    }

    .post-block .paragraph p {
        font-size: 14px;
    }

    .ad-section-vector {
        width: 100%;
    }

    .ad-content h2 {
        font-size: 1.9rem;
        line-height: 2rem;
    }

    .ad-content .subtext {
        font-size: 16px;
    }

    .news-card .news-img {
        height: 145px;
    }

    .section-title {
        font-size: 1.9rem;
        line-height: 2.1rem;
    }

    h5.section-title {
        font-size: 1.4rem;
    }

    .footer-blk .footer-logo {
        width: 100px;
        padding-right: 16px;
    }

    .footer-blk address {
        width: calc(100% - 100px);
        width: -webkit-calc(100% - 100px);
        padding-left: 16px;
    }

    .footer-blk.address-blk {
        display: flex;
        align-items: center;
    }

    footer .container {
        padding: 1rem 0 1rem;
    }

    .top-banner-bg {
        height: 60vh;
        min-height: 240px;
    }

    .banner-caption h1 {
        font-size: 1.6rem;
        /* letter-spacing: 0.1rem; */
    }

    .banner-caption span {
        font-size: 14px;
        line-height: 125%;
    }

    .banner-caption {
        padding: 1rem 0;
    }

    .homebanner {
        height: 100vh;
        min-height: 250px;
    }

    .page-title h2 {
        font-size: 30px;
    }

    .page-title {
        padding: 12px 0;
    }

    .quotes {
        font-size: 22px;
    }

        .quotes .author {
            font-size: 15px;
            padding: 4px 0 0;
        }

    .paragraph .paragraph-art .art {
        width: 100%;
        max-width: 400px;
    }

    .page-tab a {
        color: #225b7f;
        font-size: 16px;
        line-height: 20px;
        display: inline-block;
        padding: 9px 20px;
    }

    .mainmenu > ul {
        height: auto;
        overflow: hidden;
    }

    .post-block h3 {
        font-size: 2.2rem;
        line-height: 2.4rem;
        margin-bottom: 0.4rem;
    }

    .post-block h5 {
        font-size: 1.6rem;
        margin-bottom: 0.4rem;
    }

    .blog-headline h3 {
        font-size: 26px;
    }

    .blog-headline {
        color: #c9cacb;
        font-size: 14px;
    }

    .post-img {
        position: relative;
        height: 250px;
    }

    .brand-cta .brand-logo span {
        display: inline-block;
        width: 200px;
    }

    /* .map_iframe {
    max-width: 470px;
    min-height: 480px;
  } */
    .circle-img {
        max-width: 300px;
        margin: auto;
    }

    .leader-grid-box {
        width: 50%;
    }

    .supporrt-grid .supporrt-grid-box {
        width: 45%;
    }

    .contact-way .icon {
        width: 50px;
        height: 50px;
        font-size: 25px;
        line-height: 50px;
    }

    .contact-way-wrapp > ul > li {
        height: 110px;
    }

    .bannerBotmIcon {
        height: 100px;
    }
}

@media only screen and (max-width: 700px) {
    /*-- timeline style start--*/
    .pf-timeline .timeline__content:before {
        display: none;
    }

    .pf-timeline .timeline__content:after {
        width: 1.5rem;
        height: 2px;
    }

    .pf-timeline .timeline:not(.timeline--horizontal):before {
        width: 2px;
        left: 13px !important;
    }

    .pf-timeline .timeline__item:after {
        width: 24px;
        height: 24px;
        border-width: 6px;
    }

    .pf-timeline .timeline--mobile .timeline__item .timeline__content:after {
        left: -24px;
    }

    .pf-timeline .timeline__content {
        padding: 0.4rem 6px;
        border-left: 2px solid #81d8d0;
    }

    #PFoundation .pf-timeline .timeline__content {
        border-color: #182834;
    }

    #PSwasthya .pf-timeline .timeline__content {
        border-color: #81d8d0;
    }

    #educationLeadership .pf-timeline .timeline__content {
        border-color: #f9812a;
    }

    #gandhiFellowship .pf-timeline .timeline__content {
        border-color: #c488f7;
    }

    #PSarvajal .pf-timeline .timeline__content {
        border-color: #1ca3ec;
    }

    .pf-timeline .pf-timeline .timeline-nav .slick-center .year-nav span {
        box-shadow: 0 0 0 6px #ef4023;
    }

    .pf-timeline .year-nav span {
        display: inline-block;
        width: 12px;
        height: 12px;
    }

    .pf-timeline .timeline-nav .item {
        margin: 0 2%;
    }

    .pf-timeline .year-nav label {
        font-size: 15px;
    }

    .pf-timeline .timeline-nav .slick-center .year-nav label {
        font-weight: 600;
        font-size: 130%;
        bottom: 95%;
    }

    .pf-timeline .timeline-nav .slick-arrow {
        width: 26px;
        height: 26px;
        bottom: 11px;
    }

    .pf-timeline .timeline-nav .item {
        height: 74px;
    }
    /*-- timeline style end--*/

    .footerStates span {
        width: 50%;
        /* font-size: 12px; */
    }

    .footerStates.column {
        flex-direction: initial;
    }

        .footerStates.column span {
            width: 50%;
        }
    /* .icon_caption{
    margin-bottom: 20px;
  } */

    .footer-nav > ul > li {
        width: 50%;
    }

    .rightImgIn {
        float: none;
        width: 60%;
        margin: auto;
        margin-bottom: 30px;
    }

        .rightImgIn .overlay {
            opacity: 1;
        }

    /* .mobileHide {
    display: none;
  } */

    /* .rightImgIn .overlay a i {
    margin-right: 0;
  } */

    .brochureBtn a {
        height: 51px;
        width: auto;
        text-align: center;
        border-radius: 20px 0 0 0;
        right: 0;
        bottom: 0;
        left: auto;
        top: auto;
        transform: none;
    }

    .bannerText h3 {
        font-size: 26px;
        margin: 0 0 15px 0;
    }

    .bannerText p {
        font-size: 14px;
        max-width: 400px;
        margin: 0 0 15px 0;
    }

    .bannerText {
        padding: 10px 20px;
    }

    .jobTblWrap table {
        border: 0;
    }

        .jobTblWrap table caption {
            font-size: 1.3em;
        }

        .jobTblWrap table thead {
            border: none;
            clip: rect(0 0 0 0);
            height: 1px;
            margin: -1px;
            overflow: hidden;
            position: absolute;
            width: 1px;
            padding: 0;
        }

        .jobTblWrap table tr {
            display: block;
            margin-bottom: 15px;
        }

        .jobTblWrap table th,
        .jobTblWrap table td {
            padding: 15px;
        }

        .jobTblWrap table td {
            border-bottom: 1px solid #e1e5e9;
            display: block;
            font-size: 14px;
            text-align: right;
            position: relative;
            padding-left: 100px;
        }

            .jobTblWrap table td::before {
                content: attr(data-label);
                font-weight: bold;
                text-transform: uppercase;
                color: #243746;
                position: absolute;
                left: 10px;
                top: 50%;
                transform: translateY(-50%);
            }
        /* .jobTblWrap table tbody > tr > td:first-child{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  } */

        .jobTblWrap table tbody > tr > td:last-child {
            /* border-top-right-radius: 0;
    border-bottom-right-radius: 0; */
            border-bottom: none;
        }
}

@media only screen and (max-width: 600px) {
    .home-slider {
        height: 550px;
    }

    .slideBgImg {
        height: 50%;
        min-height: 275px !important;
    }

    .bannerTextWrap {
        height: 50%;
        border-left: none;
        border-top: 5px solid #fff;
        min-height: 275px !important;
    }

    .iconWraper {
        padding-top: 10px;
    }

        .iconWraper img {
            width: 30px;
        }

    .bannerText h3 {
        font-size: 24px;
        margin: 0 0 10px 0;
    }

    .bannerText p {
        margin: 0 0 10px 0;
    }

    .bigbetsIcon img {
        margin-top: 10%;
    }

    .profile-thum figcaption h5 {
        font-size: 12px;
    }
}

@media screen and (max-width: 500px) {

    .contactLinks i {
        width: 20px;
        height: 20px;
        line-height: 20px;
        font-size: 9px;
    }

    .footer-blk .footer-logo {
        width: 95px;
        padding-right: 10px;
    }

    .footer-blk address {
        width: calc(100% - 95px);
        width: -webkit-calc(100% - 95px);
        padding-left: 10px;
    }

    .post-block .btn {
        margin-right: 0;
        float: left;
        margin-bottom: 0.6rem;
        width: 100%;
    }

    .leader-grid-box {
        padding: 5px !important;
    }

    .about-people h4 {
        font-size: 16px;
    }

    .homebanner-tabs ul li {
        width: 50%;
    }

    .profile-thum {
        padding: 5px;
    }

    .footer-nav > ul > li {
        width: 100%;
    }

    .footer-blk.address-blk {
        justify-content: center;
    }

    .footer-blk li {
        list-style-type: none !important;
    }

    /*.mainmenu > ul  {
	height: calc(100% - 204px);
	height: -webkit-calc(100% - 204px);
	overflow: auto;
	}	*/
    .section-img > img {
        max-width: 100%;
    }

    .section-img {
        margin-top: -11%;
    }

    .homebanner {
        height: auto;
        padding-top: 64px;
    }

        .homebanner video {
            height: 420px;
            width: auto;
        }

    .banner-caption {
        margin-bottom: 20px;
    }

    .tab-nav .caption .title {
        font-size: 18px;
    }

    .tab-nav .caption .subtext {
        font-size: 14px;
    }

    .post-block h2 {
        font-size: 2rem;
        line-height: 2.2rem;
    }

    .post-block h4 {
        font-size: 1.3rem;
        line-height: 1.8rem;
        font-weight: bold;
        margin: 1.5rem 0 0;
    }

    .ad-section-vector {
        width: 100%;
        opacity: 0.8;
    }

    .ad-section-img .parallax-bg {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    /*.ad-section-vector {
	-webkit-clip-path: polygon( -webkit-calc(100% - 85px) 0, 100% 100%, 0% 100%, 0 100%, 0% 0%);
	clip-path: polygon(calc(100% - 85px) 0, 100% 100%, 0% 100%, 0 100%, 0% 0%);
	}
	.ad-section-vector:before {
		-webkit-clip-path: polygon(-webkit-calc(100% - 20px) 0, 100% 100%, -webkit-calc(100% - 0px) 100%, 0% 0%);
		clip-path: polygon(calc(100% - 20px) 0, 100% 100%, calc(100% - 0px) 100%, 0% 0%);
	}
	.ad-content {
		padding-right: 40px;
	}*/
    .footer-blk {
        padding: 2px 0;
        font-size: 14px;
    }
        /* .footer-blk li {
    padding: 0;
  } */
        .footer-blk li.title {
            font-size: 105%;
            margin-bottom: 0px;
        }

    ul.footer-blk {
        padding-right: 10px;
        text-align: center;
    }

    .footerband {
        font-size: 12px;
        line-height: 18px;
    }

    .tnc,
    .copyright {
        width: 100%;
        text-align: center;
        padding: 4px 0;
    }

    footerband .container {
        padding: 10px 0;
    }

    .impact-content ul li {
        height: auto;
        padding: 32px 42px;
        width: 100% !important;
        margin-bottom: 50px;
        text-align: justify;
    }

    .impact-content ul {
        padding: 0% 24px;
    }

        .impact-content ul li .pf-circle {
            width: 70px;
            height: 70px;
            transform: none;
            left: -12px;
            top: -36px;
        }

    .pf-circle.text i {
        font-size: 12px;
        line-height: 70px;
    }

    .homebanner {
        align-items: flex-end;
        -webkit-align-items: flex-end;
    }

    .banner-caption {
        padding: 0.5rem 0;
    }

        .banner-caption span {
            margin-top: 1.2rem;
        }

    .homebanner video {
        height: 257px;
        width: auto;
    }

    .news-card .news-title {
        font-size: 18px;
        padding: 16px 16px;
    }

    .top-search .input-field input[type="search"] + .label-icon {
        right: 0px;
    }

    .tabs.pf-tab {
        border: none;
        border-radius: 0;
        padding: 0;
    }

        .tabs.pf-tab .tab a {
            min-width: auto;
            font-size: 16px;
            padding: 0 32px;
        }

    .paragraph .paragraph-art .art {
        background-color: #fff;
        padding: 4px;
    }

    .page-tab ul li {
        width: 50%;
    }

    .page-tab a {
        border-radius: 4px;
        width: 100%;
    }

    .people-wrapp {
        margin: 0;
        text-align: center;
    }

        .people-wrapp figure {
            max-width: 400px;
            margin: 0 auto;
            text-align: center;
        }

            .people-wrapp figure figcaption > span {
                margin-top: 0;
                margin-bottom: 12px;
            }

            .people-wrapp figure figcaption h5 {
                padding-bottom: 4px;
                padding-top: 0;
            }

    .ad-section-img .parallax-bg {
        display: none;
    }

    .post-img .gray-circle {
        width: 200px;
        height: 200px;
    }

    .post-block h3 {
        font-size: 1.8rem;
        line-height: 2rem;
        margin-bottom: 0.4rem;
    }

    .post-block h5 {
        font-size: 1.3rem;
        margin-bottom: 0.4rem;
    }

    .scale-reach figure {
        margin: 0;
        font-size: 12px;
    }

    .scale-reach .title {
        font-size: 14px;
    }
    /* .section-slider .swiper-button-next,
  .swiper-button-prev {
    top: inherit;
    bottom: 20px;
  } */
    .section-angle .border-angle:after {
        top: 20%;
    }

    .page-tab ul li:last-child {
        padding-right: 0;
    }

    .people-grid.gridtab > dt {
        padding: 8px !important;
    }

    .people-grid .content {
        padding: 20px 12px 12px 12px;
    }

    .people-grid.gridtab > dd > .gridtab__controls > .gridtab__arrow:before,
    .people-grid.gridtab > dd > .gridtab__controls > .gridtab__arrow:after,
    .people-grid.gridtab > dd > .gridtab__controls > .gridtab__close:before,
    .people-grid.gridtab > dd > .gridtab__controls > .gridtab__close:after {
        width: 1px;
        height: 11px;
    }

    .people-grid.gridtab > dd > .gridtab__controls {
        right: -4px;
        top: -4px;
    }

    .post-source {
        width: 100%;
        font-size: 14px;
    }

        .post-source > span > i {
            font-size: 15px;
            margin-right: 2px;
        }

    .alumni-diversion li {
        width: 100%;
        padding: 12px 0;
        border: none;
    }

        .alumni-diversion li:nth-child(2) {
            border: none;
        }

    .brand-cta .simpleParallax img {
        height: 100%;
        width: auto;
    }

    .brand-cta .container {
        display: block;
        text-align: center;
        padding: 0;
    }

    .brand-cta .brand-logo {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    }

        .brand-cta .brand-logo span {
            width: 180px;
        }

    .brand-cta .brand-logo,
    .brand-cta .brand-cta {
        display: inline-block;
        padding: 1.2rem 0;
    }

    .brand-cta .brand-text {
        padding-top: 15px;
        font-size: 16px;
    }

    .brand-cta .brand-cta .btn {
        height: 44px;
        line-height: 40px;
        font-size: 13px;
    }

    .news-list-card .img {
        width: 100%;
        border-right: none;
        border-bottom: 2px dotted #42525f;
        height: auto;
        padding-bottom: 12px;
        padding-right: 0;
    }

    .news-list-card .caption {
        width: 100%;
        padding-left: 0;
        padding-top: 12px;
    }

    .news-list-card .news-details span {
        display: inline-block;
        width: 100%;
        border: none;
        padding: 2px 0;
    }

    .horizon-reports-blk a {
        max-width: 350px;
        width: 100%;
    }

    .contact-way-wrapp > ul > li {
        width: 100%;
    }

    .contact-way-wrapp > ul > li {
        height: auto;
        /* min-height: 155px; */
        border: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .initiatives-card-wrapp > ul > li {
        width: 100%;
        margin-bottom: 16px;
    }

    .journey-tab.page-tab {
        margin-top: 0;
    }

        .journey-tab.page-tab ul {
            display: flex;
            display: -webkit-flex;
            overflow-x: auto;
            margin-top: -27px;
        }

            .journey-tab.page-tab ul li:last-child {
                padding-right: 12px;
            }

            .journey-tab.page-tab ul li {
                width: auto;
                display: inline-block;
                margin-bottom: 40px;
            }

        .journey-tab.page-tab a {
            width: 50px;
            height: 50px;
            margin: 0;
        }

        .journey-tab.page-tab ul li > span {
            padding: 6px 0;
        }

        .journey-tab.page-tab .pf-circle:before {
            width: calc(100% + 4px);
            height: calc(100% + 4px);
        }

    .pf-timeline {
        padding: 0;
    }

    .vector-bgImg::after {
        display: none;
    }

    .map_iframe {
        /* max-width: 400px;
    min-height: 430px; */
        overflow: hidden;
        /* padding: 20px 0 0; */
    }
}

@media screen and (max-width: 430px) {
    .rightImgIn {
        width: 80%;
    }
    /* .modal.forVideo{
    height: 445px;
    max-height: 445px;
  } */
}


@media screen and (max-width: 340px) {
    .homebanner-tabs ul li {
        width: 100%;
    }
}

._mPS2id-t {
    display: block !important;
}

