/*============================FONTS===============================*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* font-family: 'Montserrat', sans-serif; */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

/* font-family: 'IBM Plex Sans', sans-serif; */

@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url(https://example.com/MaterialIcons-Regular.eot);
    /* For IE6-8 */
    src: local('Material Icons'), local('MaterialIcons-Regular'), url(https://example.com/MaterialIcons-Regular.woff2) format('woff2'), url(https://example.com/MaterialIcons-Regular.woff) format('woff'), url(https://example.com/MaterialIcons-Regular.ttf) format('truetype');
}


/*==========================Common=============================*/

*,
html {
    padding: 0;
    margin: 0;
}

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.clear {
    clear: both;
}

.clear:after {
    content: '';
    clear: both;
    position: relative;
    width: 100%;
    display: table;
}

body {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 15px;
    line-height: 28px;
    background: #fff;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a,
a:hover,
a:focus {
    text-decoration: none
}

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 60px 0;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}


/*=============HEADER START=============*/

.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 0 15px rgba(0, 0, 0, .25);
    transition: all 0.5s ease-in-out;
}

.site-header.sticky {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
}

.header-top {
    background: #22252e;
    padding: 12px 0;
    display: none;
}

.header-top-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.phone-emil-trigger {
    display: none;
}

.left-links ul {
    display: flex;
    flex-wrap: wrap;
}

.left-links ul li {
    display: flex;
    flex-wrap: wrap;
    margin-right: 20px;
    align-items: center;
}

.left-links ul li:last-child {
    margin-right: 0;
}

.left-links ul li .icon {
    width: 24px;
}

.left-links ul li .link {
    width: calc(100% - 24px);
    padding-left: 10px;
    color: #fff;
}

.left-links ul li .link a {
    color: #fff;
    transition: all 0.5s ease-in-out;
}

.left-links ul li .link a:hover {
    color: #f26f21;
}

.right-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.right-links ul {
    display: flex;
    flex-wrap: wrap;
}

.right-links .ht-quick-links li {
    padding-right: 15px;
    margin-right: 15px;
    border-right: 1px solid #fff;
    line-height: 15px;
}

.right-links .ht-quick-links li:last-child {
    margin: 0;
    border: none;
}

.right-links .ht-quick-links li a {
    color: #fff;
    display: inline-block;
    transition: all 0.5s ease-in-out;
}

.right-links .ht-quick-links li a:hover {
    color: #f26f21;
}

.right-links .ht-social li:not(:last-child) {
    margin-right: 7px;
}

.right-links .ht-social li a img {
    transition: all 0.5s ease-in-out;
}

.right-links .ht-social li a:hover img {
    transform: scale(0.9);
}

.hdr-bottom {
    background: #fff;
}

.hdr-bottom-hldr {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}

.desktop-nav>ul {
    display: flex;
    flex-wrap: wrap;
}

.desktop-nav>ul>li {
    height: 105px;
    line-height: 105px;
}

.desktop-nav>ul>li:not(:last-child) {
    margin-right: 25px;
}

.desktop-nav>ul>li {
    font-size: 17px;
}

.desktop-nav>ul>li>a {
    color: #000;
    transition: all 0.5s ease-in-out;
    padding: 38px 15px 38px 0px;
}

.desktop-nav>ul>li.current-menu-item>a,
.desktop-nav>ul>li>a:hover {
    color: #db5a0d;
}

.desktop-nav>ul>li.current-menu-item>a {
    font-weight: 700;
}

.has-submenu {
    position: relative;
}

.has-submenu>a {
    padding-right: 15px;
    position: relative;
}

.has-submenu>a:after {
    content: '\f2f2';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font: normal normal normal 14px/1 'Material-Design-Iconic-Font';
    color: #000;
    font-size: 20px;
    transition: all 0.5s ease-in-out;
}

.has-submenu .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 70px);
    background: #fff;
    border-radius: 0 0 7px 7px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    width: 250px;
    padding: 10px 0;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s ease-in-out;
    z-index: 999;
}

.has-submenu:hover>.sub-menu {
    transform: translate(-50%, 0);
    opacity: 1;
    pointer-events: all;
}

.has-submenu .sub-menu>li {
    height: auto;
    line-height: 20px;
}

.has-submenu .sub-menu>li>a {
    padding: 5px 15px;
    display: block;
    font-size: 16px;
    color: #000;
    transition: all 0.5s ease-in-out;
}

.desktop-nav>ul>li.current-menu-item>a:after,
.has-submenu:hover>a:after {
    color: #db5a0d;
}

.has-submenu .sub-menu>li>a:hover {
    background: #db5a0d;
    color: #fff;
}

.has-submenu .sub-menu .has-sub-menu-sub {
    position: relative;
}

.has-submenu .sub-menu .has-sub-menu-sub a {
    position: relative;
}

.has-submenu .sub-menu .has-sub-menu-sub>a:after {
    content: '\f2f2';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font: normal normal normal 14px/1 'Material-Design-Iconic-Font';
    color: #000;
    font-size: 20px;
    transition: all 0.5s ease-in-out;
}

.has-submenu .sub-menu .has-sub-menu-sub>a:hover:after {
    color: #fff;
}

.has-submenu .sub-menu .has-sub-menu-sub .sub-menu {
    left: 100%;
    top: 0;
    transform: translate(50px, 0);
}

.has-submenu .sub-menu .has-sub-menu-sub:hover .sub-menu {
    transform: translate(0, 0);
    opacity: 1;
    pointer-events: all;
}


/*=============HEADER END=============*/


/*=============INDEX START=============*/

.hero-section {
    padding: 0;
}

.item-inner {
    position: relative;
    height: calc(100vh - 161px);
}

.item-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-cont {
    position: absolute;
    width: 100%;
    max-width: 1170px;
    padding: 0 15px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    top: 50%;
}

.hero-cont-inner {
    display: inline-block;
    padding: 13px 25px 20px 25px;
    color: #fff;
    background: rgb(242 111 33 / 61%);
    transform: translateY(100px);
    opacity: 0;
    transition: all 1.2s ease-in-out;
    width: 100%;
    max-width: 732px;
}

.hero-cont-inner h2 {
    font-size: 49px;
    font-weight: 700;
}

.hero-cont-inner h3 {
    font-size: 36px;
    font-weight: 600;
}

.hero-slider .owl-item.active .hero-cont-inner {
    transform: translateY(0);
    opacity: 1;
}

.hero-slider .owl-nav {
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 165px;
}

.hero-slider .owl-nav {
    pointer-events: none;
}

.hero-slider .owl-nav button {
    pointer-events: all;
    outline: none;
    height: 45px;
}

.hero-slider .owl-nav button img {
    height: 100%;
}

.theory-section {
    position: relative;
    background: #fff;
}


/*.theory-section:after {*/


/*    content: '';*/


/*    position: absolute;*/


/*    top: -270px;*/


/*    left: 0;*/


/*    width: 100%;*/


/*    background: url('../images/theory-top-shep.png') no-repeat center;*/


/*    z-index: 4;*/


/*    height: 555px;*/


/*    pointer-events: none;*/


/*}*/

.section-heading {
    text-align: center;
    width: 100%;
    margin: 0 auto 40px auto;
    max-width: 980px;
}

.section-heading h3 {
    font-size: 45px;
    color: #393838;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-heading p {
    margin-bottom: 0;
    color: #000;
    font-size: 20px;
    margin-top: 20px;
}

.theory-inner .cont-title {
    display: block;
    font-size: 30px;
    color: #393838;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.sector-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
}

.sector-wrapper .sector-item {
    width: 25%;
    padding: 0 5px;
}

.sec-link {
    background: #fff;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.10);
    display: block;
    padding: 15px;
    border-radius: 10px;
}

.sec-link figure {
    margin-bottom: 10px;
    border-radius: 7px;
    overflow: hidden;
    height: 185px
}

.sec-link figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease-in-out;
}

.sec-link p {
    font-size: 18px;
    text-align: center;
    color: #000;
    margin-bottom: 0;
    min-height: 56px;
    display: flex;
    align-items: flex-start;
    margin-top: 10px;
    justify-content: center;
    transition: all 0.5s ease-in-out;
}

.sec-link:hover figure img {
    transform: scale(1.1);
}

.sec-link:hover p {
    color: #db5a0d;
}

.our-video-section {
    position: relative;
    padding: 0 0 80px 0;
}

.our-video-section:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 135px;
    background: #f8f8f8;
}
.vdo_row_box video {
  width: 100%;
  object-fit: cover;
}
.video-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.video-wrapper .text-holder {
    width: 50%;
    padding-right: 100px;
}

.video-wrapper .text-holder p {
    font-size: 17px;
    color: #393838;
    margin-bottom: 20px
}

.video-wrapper .text-holder p:last-child {
    margin: 0;
}

.video-wrapper .video-holder {
    width: 68%;
    position: relative;
    margin-left: auto;
}

.video-wrapper .video-holder .vdo-bg {
    position: absolute;
    left: -30px;
    top: -80px;
    width: 95%;
}

.section-heading.left-align {
    text-align: left;
}

.section-heading.no-p {
    margin-bottom: 20px;
}

.video-box {
    position: relative;
    border: 8px solid #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.25);
}

.video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-box .video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100px;
    width: 100px;
    border: 6px solid #fff;
    outline: none;
    background: transparent;
    font-size: 50px;
    border-radius: 100%;
    padding-left: 5px;
    color: #fff;
    transition: all 0.5s ease-in-out;
}

.video-box .video-play:hover {
    color: #db5a0d;
    border-color: #db5a0d;
}

.video-box .video-play.btn-hide {
    opacity: 0;
    pointer-events: none;
}

.video-txtbox {
    position: absolute;
    bottom: 135px;
    width: 320px;
    height: 80px;
    background: #e88346;
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 24px;
    padding: 20px;
    justify-content: flex-end;
    z-index: 1;
}

.video-txtbox h4 {
    margin-right: 15px;
}

.video-txtbox .icon {
    display: inline-block;
}

.video-txtbox .icon img {
    max-width: 50px;
}

.video-txtbox:before {
    content: '';
    position: absolute;
    right: 0;
    width: 100vw;
    height: 80px;
    background: #e88346;
    z-index: -1;
}

.about-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.about-wrapper .image-holder {
    width: calc(50% - 65px);
    margin-right: 65px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.about-wrapper .image-holder:after {
    content: '';
    position: absolute;
    left: 65px;
    top: 55px;
    border: 5px solid #d9d9d9;
    height: calc(100% - 110px);
    width: calc(100% - 130px);
}

.about-wrapper .image-holder img {
    width: 100%;
    object-fit: cover;
    border: 6px solid #fff;
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);
    height: 100%;
    object-position: center;
}

.about-wrapper .image-holder figure {
    position: relative;
    z-index: 2;
}

.about-wrapper .image-holder figure:nth-child(1) {
    /* padding-left: 150px;
    height: 320px;
    margin: 0;
    z-index: 123; */
    height: 320px;
    margin: 0;
    z-index: 123;
    width: 405px;
    margin-left: auto;
}

.about-wrapper .image-holder figure:nth-child(2) {
    padding-right: 200px;
    margin-bottom: 0;
    height: 270px;
    margin-top: -125px;
}

.about-wrapper .text-holder {
    width: 50%;
}

.about-wrapper .text-holder p {
    font-size: 17px;
    color: #393838;
    margin-bottom: 20px
}

.about-wrapper .text-holder .read-more-btn {
    margin-top: 10px;
}

.read-more-btn {
    display: inline-block;
    height: 52px;
    padding: 0 30px;
    background: #f16a19;
    color: #fff;
    border: 2px solid #f16a19;
    line-height: 48px;
    border-radius: 35px;
    font-size: 18px;
    transition: all 0.5s ease-in-out;
}

.read-more-btn:hover {
    background: #fff;
    color: #f16a19;
}

.read-more-btn span {
    margin-left: 10px;
    height: 18px;
    width: 18px;
    border: 1px solid #fff;
    text-align: center;
    border-radius: 100%;
    padding-left: 2px;
    font-size: 14px;
    line-height: 16px;
    transition: all 0.5s ease-in-out;
}

.read-more-btn:hover span {
    transform: translateX(7px);
    border-color: #f16a19;
    color: #f16a19;
}

.history-sec {
    background: #e9e9e9;
    padding: 60px 0;
}

.history-sec .titleh2 img {
    filter: brightness(0);
    -webkit-filter: brightness(0);
}

.histry-way-wrpr {
    display: flex;
    position: relative;
    margin-top: -20px;
}

.histry-way-wrpr:before {
    content: '';
    position: absolute;
    top: 46px;
    left: -11px;
    width: 88%;
    height: 670px;
    background: url('../images/line-bg.png') no-repeat;
    background-size: 94%;
}

.history-year-wrpr {
    width: 33.3%;
}

.history-year-wrpr:nth-child(2) {
    margin-top: 237px;
}

.history-milestn {
    display: flex;
    align-self: center;
    margin-bottom: 130px;
    position: relative;
}

.history-milestn:after {
    content: '';
    position: absolute;
    bottom: 92px;
    left: 45px;
    width: 1px;
    height: 129px;
    border-left: 2px dashed #000;
    display: none;
}

.history-milestn:last-child {
    margin-bottom: 0;
}

.history-milestn .icon {
    width: 90px;
    height: 90px;
    border: 1px solid #000;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    padding: 10px;
    background: #fff;
    display: grid;
    place-content: center;
    position: relative;
    overflow: hidden;
}

.history-milestn .icon:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    height: 90%;
    transform: translate(-50%, -50%);
    border: 14px solid #ddd;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}

.history-milestn .icon img {
    max-width: 45px;
    position: relative;
    z-index: 1;
    transform: scale(1);
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}

.history-milestn:hover .icon img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.history-milestn:hover .icon:before {
    border-width: 40px;
}

.history-milestn .content {
    max-width: 205px;
    margin-left: 5px;
    padding: 7px 10px;
    background: transparent;
    border-radius: 18px;
    margin-left: 7px;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
}

.history-milestn:hover .content {
    background: #fff;
}

.history-milestn .content h3 {
    font-size: 25px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #000;
}

.history-milestn .content p {
    font-size: 17px;
    line-height: 23px;
    margin: 0;
    color: #000;
    font-weight: 500;
}

.history-year-wrpr.one .history-milestn:first-child {
    transform: translate(190px, 50px);
    -webkit-transform: translate(190px, 50px);
    -moz-transform: translate(190px, 50px);
    -ms-transform: translate(190px, 50px);
    -o-transform: translate(190px, 50px);
}

.history-year-wrpr.two .history-milestn:nth-child(2) {
    transform: translateX(35px);
    -webkit-transform: translateX(35px);
    -moz-transform: translateX(35px);
    -ms-transform: translateX(35px);
    -o-transform: translateX(35px);
}

.history-year-wrpr.two .history-milestn:last-child {
    transform: translateX(235px);
    -webkit-transform: translateX(235px);
    -moz-transform: translateX(235px);
    -ms-transform: translateX(235px);
    -o-transform: translateX(235px);
}

.history-year-wrpr.one .history-milestn:first-child .icon:before {
    border-color: #fd418b;
}

.history-year-wrpr.one .history-milestn:nth-child(2) .icon:before {
    border-color: #ffd71e;
}

.history-year-wrpr.one .history-milestn:nth-child(3) .icon:before {
    border-color: #00d983;
}

.history-year-wrpr.two .history-milestn:first-child .icon:before {
    border-color: #5defe9;
}

.history-year-wrpr.two .history-milestn:nth-child(2) .icon:before {
    border-color: #f56f42;
}

.history-year-wrpr.two .history-milestn:nth-child(3) .icon:before {
    border-color: #c473f4;
}

.history-year-wrpr.three .history-milestn:first-child .icon:before {
    border-color: #ffa52b;
}

.history-year-wrpr.three .history-milestn:last-child .icon:before {
    border-color: #705efe;
}

.history-year-wrpr.one .history-milestn:nth-child(2):after {
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    width: 200px;
    height: 218px;
    transform: rotate(30deg);
}

.history-year-wrpr:last-child {
    margin-top: 107px;
    padding-left: 75px;
}

.history-year-wrpr:nth-child(2) .history-milestn:nth-child(2) {
    margin-bottom: 43px;
}

.count-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -30px;
}

.count-wrapper .count-box {
    width: 25%;
    padding: 0 30px;
    text-align: center;
}

.count-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.count-inner figure {
    height: 75px;
    width: 75px;
    display: inline-block;
    background: #70ecbe;
    padding: 10px;
    border-radius: 5px;
    margin: 0 15px 0px 0;
    transform: scale(1) rotate(0);
    -webkit-transform: scale(1) rotate(0);
    -moz-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    -o-transform: scale(1) rotate(0);
    transition: 0.6s;
    -webkit-transition: 0.6s;
    -moz-transition: 0.6s;
    -ms-transition: 0.6s;
    -o-transition: 0.6s;
}

.count-wrapper .count-box:hover .count-inner figure {
    transform: scale(-1) rotate(180deg);
    -webkit-transform: scale(-1) rotate(180deg);
    -moz-transform: scale(-1) rotate(180deg);
    -ms-transform: scale(-1) rotate(180deg);
    -o-transform: scale(-1) rotate(180deg);
}

.count-inner figure img {
    width: 55px;
    filter: grayscale(190);
    -webkit-filter: grayscale(190);
}

.count-inner .numbers {
    width: 61%;
    text-align: left;
}

.count-inner .numbers strong {
    font-size: 38px;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    display: block;
    margin-bottom: 5px;
}

.count-inner .numbers p {
    margin: 0;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    color: #000;
    font-weight: 600;
}

.pop-content {
    position: absolute;
    background: radial-gradient(#fafafa, #fcd8c2);
    z-index: 9;
    width: 100%;
    max-width: 170px;
    height: 170px;
    border-radius: 50%;
    overflow: hidden;
    padding: 27px 22px;
    top: -40px;
    text-align: center;
    box-shadow: 0 0 16px -9px rgb(0 0 1);
    display: none;
}

.pop-content.open {
    display: block;
}

.pop-content p {
    margin: 0;
    line-height: 18px;
    color: #fff;
}

.our-program-section {
    position: relative;
    height: 470px;
}

.our-program-section .section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.our-program-section .section-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}

.our-program-section .container {
    position: relative;
    z-index: 2;
    height: 100%;
}

.our-program-wrapper {
    width: 40%;
    padding-right: 30px;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.our-program-wrapper .section-heading {
    width: 100%;
}

.our-program-wrapper .section-heading h3 {
    font-size: 45px;
    color: #fff;
}

.our-program-wrapper .section-heading p {
    color: #fff;
    font-size: 18px;
    line-height: 22px;
}

.our-pgrm-holder {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    padding: 60px 30px 60px 0;
    z-index: 3;
}

.our-pgm-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
}

.our-pgm-wrapper .our-program-item {
    width: 33.33%;
    padding: 0 20px;
}

.our-program-inner {
    display: block;
    position: relative;
    overflow: hidden;
    height: 350px;
}

.our-program-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.our-program-inner:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    background-image: linear-gradient(transparent, #000);
}

.our-program-inner img {
    width: 100%;
    transition: all 0.5s ease-in-out;
}

.our-program-inner:hover>img {
    transform: scale(1.1);
}

.logo-text {
    position: absolute;
    padding: 20px;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2
}

.logo-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.logo-wrapper img {
    width: calc(33.33% - 5px) !important;
}

.logo-text p {
    margin: 20px 0 0 0;
    color: #fff;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    line-height: 22px;
    min-height: 44px;
}

.our-program .owl-nav {
    position: absolute;
    width: auto;
    left: 0;
    bottom: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.our-program .owl-nav button:not(:last-child) {
    padding: 0;
    margin-right: 20px;
}

.our-program .owl-nav button span {
    height: 45px;
    width: 45px;
    background: #fff;
    border-radius: 100%;
    display: inline-block;
    line-height: 45px;
    text-align: center;
    font-size: 40px;
    font-weight: 300;
    color: #fd4b37;
    transition: all 0.5s ease-in-out;
}

.our-program .owl-nav button.owl-prev span {
    padding-right: 3px;
}

.our-program .owl-nav button.owl-next span {
    padding-left: 3px;
}

.our-program .owl-nav button span:hover {
    background: #f16a19;
    color: #fff;
}

.success-story-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.success-story-wrapper .image-holder {
    width: 300px;
    padding-right: 60px;
}

.success-story-wrapper .image-holder figure {
    height: 240px;
    width: 240px;
    margin: 0;
    position: relative;
}

.success-story-wrapper .image-holder figure img {
    border-radius: 100%;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.success-story-wrapper .image-holder figure:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    background: #f16a19;
}

.success-story-wrapper .image-holder figure:before {
    content: '';
    position: absolute;
    right: 0;
    top: 30px;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background: #f16a19;
    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.15);
}

.success-story-wrapper .text-holder {
    width: calc(100% - 300px);
    position: relative;
}

.success-story-wrapper .text-holder:before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
    width: 15px;
    height: 10px;
    background: url('../images/quate.png') no-repeat center;
    background-size: contain;
    transform: rotate(180deg);
}

.success-story-wrapper .text-holder p {
    font-size: 17px;
    font-weight: 600;
    color: #393838;
    line-height: 28px;
    margin-bottom: 10px;
}

.success-story-wrapper .text-holder .name-box strong {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    display: block;
}

.success-story-wrapper .text-holder .name-box p {
    margin: 0;
    font-size: 18px;
    color: #000;
    font-weight: 400;
    line-height: 24px;
}

.success-stories .owl-nav {
    padding-left: 0;
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.success-stories .owl-nav button {
    border: none;
    outline: none;
}

.success-stories .owl-nav button:not(:last-child) {
    margin-right: 20px;
}

.success-stories .owl-nav button span {
    height: 35px;
    width: 35px;
    text-align: center;
    line-height: 35px;
    background: #f16a19;
    border-radius: 100%;
    font-size: 24px;
    color: #fff;
    transition: all 0.5s ease-in-out;
}

.success-stories .owl-nav button span:hover {
    background: #fa8840;
    color: #fff;
}

.award-section {
    background: #fff;
    padding: 75px 0 15px 10px;
    position: relative;
}

.award-section .section-heading {
    margin-bottom: 70px;
}

.award-section .aw-left-object {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 100%;
    max-width: 334px;
}

.award-section .aw-left-object img {
    width: 100%;
}

.award-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.award-wrapper .award-box {
    width: 33.33%;
    padding: 0 10px;
    margin-bottom: 60px;
}

.award-inner {
    position: relative;
    padding: 0 50px;
}

.award-inner .award-left-img {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
}

.award-inner .award-right-img {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
}

.award-logo {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0;
    padding-top: 45px;
    text-align: center;
}

.award-logo img {
    max-width: 100%;
    margin-bottom: 20px;
}

.award-logo figcaption {
    font-size: 20px;
    color: #232323;
    font-weight: 600;
    text-align: center;
}

.news-blog-section {
    background: #23262f;
    position: relative;
    height: 563px;
}

.news-blog-section .container {
    height: 100%;
}

.news-blog-section .left-object {
    position: absolute;
    left: 0;
    bottom: 0;
    margin: 0;
    width: 100%;
    max-width: 243px;
}

.news-blog-section .left-object img {
    width: 100%;
}

.news-wrapper {
    width: 465px;
    padding-right: 45px;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.news-blog-section .section-heading h3 {
    font-size: 40px;
    font-weight: 600;
    color: #fff;
}

.news-wrapper p {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.news-form .form-group {
    margin-bottom: 15px;
}

.news-form .tnp-subscription .form-group input {
    width: 100%;
    background: #fff;
    border-radius: 20px;
    border: none;
    outline: none;
    height: 60px;
    padding: 0 30px;
    font-size: 18px;
    color: #000;
}

.submit-input {
    text-align: right;
}

.news-form .tnp-subscription input.tnp-submit {
    height: 55px;
    padding: 0 65px;
    color: #fff;
    font-size: 18px;
    background: #fd4a36;
    border: 2px solid #fd4a36;
    outline: none;
    border-radius: 35px;
    transition: all 0.5s ease-in-out;
    margin-left: auto;
}

.news-form .tnp-subscription input.tnp-submit:hover {
    background: transparent;
    color: #fd4a36;
}

.latest-blogs {
    width: 100%;
    max-width: 60%;
    position: absolute;
    top: 0;
    right: 0;
    background: #e88346;
    padding: 60px 30px;
    height: 100%;
}

.latest-blogs .section-heading {
    margin-bottom: 0;
}

.latest-blog-slider {
    margin-top: -20px;
}

.blog-item {
    position: relative;
    background: #fff;
    padding: 15px;
    margin-top: 45px;
    margin-bottom: 7px;
    min-height: 280px;
}

.blog-item:after {
    content: '';
    position: absolute;
    left: 7px;
    top: 7px;
    width: 100%;
    height: 100%;
    background: #cf753e;
    z-index: -1
}

.blog-item figure {
    position: absolute;
    height: 110px;
    width: 110px;
    border-radius: 100%;
    overflow: hidden;
    margin: 0;
    top: -45px;
    right: 25px;
}

.blog-item figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.publish-date {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 25px;
}

.publish-date span {
    display: block;
    font-size: 40px;
    font-weight: 600;
    color: #fd4a36;
}

.publish-date span sub {
    font-size: 20px;
}

.publish-date small {
    font-size: 17px;
    color: #000;
    display: block;
    margin-top: 5px;
    position: relative;
    padding-bottom: 4px;
}

.publish-date small:after {
    content: '';
    position: absolute;
    left: 0;
    height: 3px;
    width: 30px;
    background: #fd4a36;
    top: 100%;
}

.blog-title {
    color: #23262f;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    line-height: 22px;
    display: inline-block;
    margin-bottom: 15px;
    transition: all 0.5s ease-in-out;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-title:hover {
    color: #fd4a36;
}

.blog-item p {
    color: #4d4d4d;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
}

.blog-item p a {
    color: #fd4a36;
    font-weight: 600;
    transition: all 0.5s ease-in-out;
}

.blog-item p a:hover {
    color: #000;
}

.latest-blog-slider .owl-nav {
    position: absolute;
    width: auto;
    left: 0;
    bottom: -56px;
}

.latest-blog-slider .owl-nav button:not(:last-child) {
    padding: 0;
    margin-right: 20px;
}

.latest-blog-slider .owl-nav button span {
    height: 45px;
    width: 45px;
    background: #fff;
    border-radius: 100%;
    display: inline-block;
    line-height: 45px;
    text-align: center;
    font-size: 40px;
    font-weight: 300;
    color: #fd4b37;
    transition: all 0.5s ease-in-out;
}

.latest-blog-slider .owl-nav button.owl-prev span {
    padding-right: 3px;
}

.latest-blog-slider .owl-nav button.owl-next span {
    padding-left: 3px;
}

.latest-blog-slider .owl-nav button span:hover {
    background: #23262f;
}

.testimonials {
    background: #f7f7f7;
}

.testimoni-fig-slider .item figure img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    opacity: 0.5;
    transition: 1s;
    border-radius: 100%;
}

.testimoni-fig-slider .item {
    text-align: center;
    display: inline-block;
    width: auto;
}

.testimoni-fig-slider .slick-slide.slick-current.slick-active.slick-center .item figure img {
    opacity: 1;
}

.testimoni-slider span.nm {
    display: block;
    color: #f16a19;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 24px;
    margin: 0 auto 5px;
}

.testimoni-slider span.desg {
    font-size: 20px;
    font-weight: 500;
    color: #000;
}

.testimoni-slider p {
    margin: 0 0 20px;
    position: relative;
}

.testimoni-slider p::before {
    content: "";
    position: absolute;
    left: -22px;
    top: 0;
    width: 22px;
    height: 22px;
    background: url(../images/testi-moni-dot1.png) no-repeat center;
    background-size: 22px;
}

.testimoni-slider p::after {
    content: "";
    position: absolute;
    right: auto;
    bottom: 0;
    width: 22px;
    height: 22px;
    background: url(../images/testi-moni-dot2.png) no-repeat center;
    background-size: 22px;
}

.testimoni-fig-slider .item figure {
    position: relative;
    display: inline-block;
    background: #000;
    transition: 1s;
    border-radius: 100%;
    overflow: hidden;
    width: 120px;
    height: 120px;
    transform: scale(0.6);
    margin: 0 auto;
}

.testimoni-fig-slider .slick-slide.slick-current.slick-active.slick-center .item figure {
    transform: scale(1);
}

.testimoni-slider .item {
    text-align: center;
    padding: 0 200px;
}

.testimoni-fig-slider {
    max-width: 400px;
    margin: 0 auto 20px;
}

.upcoming-section-holdr {
    background: #efefef;
    padding: 50px 0 80px;
}

.upcoming-eve-holdr figure {
    height: 160px;
    overflow: hidden;
    border-radius: 8px;
}

.upcoming-eve-holdr figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upcoming-eve-holdr {
    background: #fff;
    padding: 10px 12px;
    border-radius: 3px;
    position: relative;
    padding-bottom: 35px;
}

.upcoming-eve p {
    line-height: 22px;
    margin: 0;
}

.upcoming-eve>a {
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.upcoming-eve span {
    font-size: 18px;
    font-weight: 700;
    color: #f16a19;
    display: block;
    margin: 0 0 1rem;
}

.upcoming-eve span strong {
    color: #000;
}

.read-more {
    background: #f16a19;
    color: #fff;
    padding: 4px 22px;
    display: inline-block;
    border-radius: 30px;
    transition: 0.4s ease-in-out;
}

.upcoming-eve .read-more {
    position: absolute;
    right: 15px;
    color: #fff;
    bottom: -15px;
}

.upcoming-eve .read-more:hover {
    background: #23262f;
    color: #fff;
}

.top-header h2.titleh2 {
    font-size: 45px;
    line-height: 1;
    font-weight: 700;
    text-align: center;
    margin: 0 0 30px;
}

.our-partner-slider.owl-carousel .owl-item figure img {
    width: 138px;
    height: 120px;
    object-fit: contain;
    margin: 0 auto;
}

.our-partner-slider.owl-carousel .owl-item figure {
    margin: 0;
}

.our-partner-slider.owl-carousel .owl-nav {
    text-align: center;
    margin-top: 30px;
}

.our-partner-section {
    background:#f7f7f7;
}

.our-partner-slider.owl-carousel .owl-nav button {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background: #efefef;
    font-size: 30px;
    margin: 0 8px;
    font-weight: 400;
    color: #999;
    transition: 0.4s ease-in-out;
}

.our-partner-slider.owl-carousel .owl-nav button:hover {
    background: #f16a19;
    color: #fff;
}

.initivts-sec {
    padding-top: 60px;
    background: #fff;
}


/*=============INDEX END===============*/


/*=============ABOUT PAGE START===============*/

.inner-page-hero-section {
    padding: 0;
    background: #b5cc61;
    height: 400px;
    overflow: hidden;
}

.inner-page-hero-section img {
    width: 100%;
    object-position: top;
    object-fit: cover;
    height: 100%;
}

.breadcrumb-holder {
    position: relative;
    z-index: 3;
    padding: 10px 0;
    background: #feefe7;
}

.breadcrumb-holder .breadcrumb {
    padding: 0;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: transparent;
}

.breadcrumb-holder .breadcrumb-item+.breadcrumb-item::before {
    content: '|';
    color: #0f0f0f;
}

.breadcrumb-holder .breadcrumb-item,
.breadcrumb-holder .breadcrumb-item a {
    color: #0f0f0f;
}

.breadcrumb-holder .breadcrumb-item.active {
    color: #f26f21;
    font-weight: 600;
}

.our-story-section {
    /* position: relative;
    z-index: 2;
    padding: 40px 0 150px 0;
    margin-top: -250px; */
    position: relative;
    padding: 120px 0;
}

.our-story-section.contact-page-section {
    padding: 60px 0;
}

.our-story-section .sec-over {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    top: 0;
    left: 0;
}

.our-story-section .sec-over img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.our-story-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
}

.our-story-wrapper .image-holder {
    width: 525px;
    padding-right: 55px;
    position: relative;
    z-index: 1;
}

.our-story-wrapper .image-holder figure {
    display: block;
    margin-bottom: 45px;
    border-radius: 7px;
    overflow: hidden;
    height: 341px;
}

.our-story-wrapper .image-holder figure:last-child {
    margin-bottom: 0;
    height: 280px;
}

.our-story-wrapper .image-holder figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.our-story-wrapper .text-holder {
    width: calc(100% - 525px);
    position: relative;
}

.our-story-wrapper .text-holder:after {
    content: '';
    position: absolute;
    left: -225px;
    top: -60px;
    width: calc(100% + 240px);
    height: calc(100% + 120px);
    background: #fff;
    border-radius: 10px;
    display:none;
}

.our-story-wrapper .text-holder .section-heading,
.our-story-wrapper .text-holder p {
    position: relative;
    z-index: 1;
}

.our-story-wrapper .text-holder p {
    font-size: 16px;
    color: #000;
    margin-bottom: 20px;
    line-height: 28px;
}

.our-story-wrapper .text-holder p:last-child {
    margin-bottom: 0;
}

.about-org-section {
    position: relative;
}

.about-org-section .section-lft-object {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.about-org-section .section-lft-object img {
    max-width: 100%;
    height: 457px;
}

.about-org-section .section-lft-object img:last-child {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
}

.about-org-section .container {
    position: relative;
    z-index: 1;
}

.abtorg-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}

.abtorg-wrapper .image-holder {
    width: 450px;
    height: 450px;
    position: relative;
}

.abtorg-wrapper .image-holder:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -20px;
    background: #f16a19;
    border-radius: 100%;
}

.abtorg-wrapper .image-holder img {
    border-radius: 100%;
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.abtorg-wrapper .image-holder figure {
    position: absolute;
    top: -30px;
    right: -120px;
}

.abtorg-wrapper .text-holder {
    width: calc(100% - 450px);
    padding-left: 150px;
}

.abtorg-wrapper .text-holder .section-heading {
    margin-bottom: 35px;
}

.abtorg-wrapper .text-holder .section-heading h3 {
    font-size: 43px;
}

.abtorg-wrapper .text-holder ul li {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.abtorg-wrapper .text-holder ul li:last-child {
    margin-bottom: 0;
}

.abtorg-wrapper .text-holder ul li .icon {
    width: 105px;
}

.abtorg-wrapper .text-holder ul li .text {
    width: calc(100% - 105px);
}

.abtorg-wrapper .text-holder ul li .text h4 {
    color: #f16a19;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 7px;
}

.abtorg-wrapper .text-holder ul li .text p {
    margin: 0;
    font-size: 20px;
    color: #000;
}


/*=============ABOUT PAGE END=================*/


/*=============CONTACT PAGE START=================*/

.contact-page-section {
    padding-bottom: 100px;
}

.our-story-section .section-shape.contact-shep {
    top: -260px;
}

.contact-page-section .breadcrumb-holder {
    margin-bottom: 70px;
    padding-top: 15px;
}

.contact-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
}

.contact-wrapper .contact-form {
    width: calc(100% - 475px);
    padding-right: 60px;
}

.contact-form .sub-heading {
    display: block;
    font-size: 26px;
    font-family: 'Montserrat', sans-serif;
}

.contact-form h3 {
    font-size: 45px;
    color: #000;
    font-weight: 700;
    margin-bottom: 35px;
}

.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form .form-group input {
    width: 100%;
    height: 55px;
    border: 1px solid #d1d1d1;
    outline: none;
    background: #fff;
    padding: 0 15px;
    border-radius: 5px;
}

.contact-form .form-inline {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.contact-form .form-inline .form-group {
    padding: 0 15px;
    width: 50%;
}

.contact-form .form-group textarea {
    width: 100%;
    height: 185px;
    border: 1px solid #d1d1d1;
    outline: none;
    background: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    resize: vertical;
}

.submit-btn-wrapper {
    text-align: right;
}

.submit-btn-wrapper input,
.submit-btn-wrapper button {
    padding: 0 55px;
    color: #fff;
    border: 1px solid #f26f21;
    background: #f26f21;
    outline: none;
    height: 60px;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    border-radius: 10px;
    transition: all 0.5s ease-in-out;
    line-height: 55px;
}

.submit-btn-wrapper input:hover,
.submit-btn-wrapper button:hover {
    background: #fff;
    color: #f26f21;
}

.contact-info {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.15);
    width: 475px;
}

.contact-info ul li {
    padding: 30px 15px;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #e1e1e1
}

.contact-info ul li:last-child {
    border-bottom: none;
}

.contact-info ul li .icon {
    width: 60px;
}

.contact-info ul li .text {
    width: calc(100% - 60px)
}

.contact-info ul li .text h4 {
    font-size: 22px;
    color: #000;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-info ul li .text address,
.contact-info ul li .text p {
    color: #000;
    font-size: 17px;
    margin: 0;
    line-height: 24px;
}

.contact-info ul li .text address:not(:last-child) {
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.contact-info ul li .text p a {
    color: #000;
    transition: all 0.5s ease-in-out;
}

.contact-info ul li .text p a:hover {
    color: #f26f21;
}

.map-holder {
    height: 500px;
}

.map-holder p {
    width: 100%;
    height: 100%;
}

.map-holder iframe {
    width: 100%;
    height: 100%;
}


/*=============CONTACT PAGE END=================*/

.our-story-section .section-shape.contact-shep {
    z-index: -1;
}


/* TEAM PAGE */

.team-wrpr {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
    align-items: flex-start;
}

.team-card {
    width: 25%;
    padding: 10px;
    margin-bottom: 50px;
    min-height: 288px;
}

.team-card .team-card-inner {
    padding: 0 15px 15px 15px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    text-align: center;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.12);
    position: relative;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    background: #fff;
}

.team-card:hover .team-card-inner {
    background: #ffe0cd;
}

.team-card figure {
    height: 240px;
    overflow: hidden;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transform: translateY(-50px);
}

.team-card figure img {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card:hover figure img {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}


/* .team-card:hover figure {
    margin-top: -50px;
} */

.team-card .content-hldr {
    margin-top: -50px;
}

.team-card h4 {
    color: #f16a19;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.team-card span {
    color: #3a3939;
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    width: 100%;
    display: inline-block;
    line-height: 16px;
}

.section-heading.teamheading {
    margin-bottom: 100px;
}

.viewall-holdr {
    text-align: center;
}


/* TEAM PAGE END */


/* work page */

.ourwork-wrpr {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: -18px;
}

.workcard {
    position: relative;
    width: 46%;
    margin: 15px 20px;
}

.workcard img {
    width: 100%;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}

.workcard:hover img {
    filter: brightness(0.5);
    -webkit-filter: brightness(0.5);
}

.wrkdetls-hldr {
    position: absolute;
    top: 70px;
    left: 0;
}

.wrkdetls-hldr .box {
    background: #f26f21;
    padding: 5px 10px;
    border-radius: 0 35px 35px 0;
    -webkit-border-radius: 0 35px 35px 0;
    -moz-border-radius: 0 35px 35px 0;
    -ms-border-radius: 0 35px 35px 0;
    -o-border-radius: 0 35px 35px 0;
    width: 115px;
    margin: 0 0 20px 0;
    box-shadow: 2px 5px 1px 1px rgb(0 0 0 / 48%);
}

.wrkdetls-hldr .box :is(h4,
p) {
    color: #fff;
    font-weight: bold;
    margin: 0;
}

.wrkdetls-hldr .box h4 {
    font-size: 30px;
    font-family: 'IBM Plex Sans', sans-serif;
}

.wrkdetls-hldr .box p {
    font-size: 20px;
    font-weight: normal;
    font-family: 'IBM Plex Sans', sans-serif;
}

.workcard .content-box {
    width: 100%;
    max-width: 85%;
    padding: 15px 15px 42px;
    position: relative;
    background: #fff;
    margin: 0 auto;
    transform: translateY(-62px);
    -webkit-transform: translateY(-62px);
    -moz-transform: translateY(-62px);
    -ms-transform: translateY(-62px);
    -o-transform: translateY(-62px);
    text-align: center;
    box-shadow: 0 10px 23px -10px rgb(0 0 0 / 25%);
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}

.workcard:hover .content-box {
    transform: translateY(-150px);
    -webkit-transform: translateY(-150px);
    -moz-transform: translateY(-150px);
    -ms-transform: translateY(-150px);
    -o-transform: translateY(-150px);
    background: #e3ffd3;
}

.workcard .content-box h5 {
    font-size: 25px;
    color: #f26f21;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.workcard .content-box p {
    color: #2a2a2a;
    margin: 0;
    font-size: 18px;
    line-height: 24px;
}

.workdtls-btn {
    width: 50px;
    height: 50px;
    background: #f26f21;
    color: #fff;
    font-size: 25px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: grid;
    place-content: center;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    position: absolute;
    right: 24px;
    bottom: -20px;
    z-index: 1;
}

.workdtls-btn:hover {
    color: #fff;
    background: #55bf1b;
}


/* end work page */


/* agriculture page */

.agricltr-listwrpr {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin: 70px 0 0 0;
}

.agricltr-box {
    width: 23.6%;
    margin: 0 20px 0 0;
    position: relative;
}

.agricltr-box:last-child {
    margin: 0;
}

.agricltr-box .img-cont-hldr {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    position: relative;
    box-shadow: 0 0px 19px -2px rgb(0 0 0 / 20%);
}

.agricltr-box .img-cont-hldr:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #131313e6 -20%, transparent 77%);
    transition: 0.5s;
    z-index: 1;
}

.agricltr-box .img-cont-hldr:hover:before {
    background: linear-gradient(0deg, #d6af62e6 -20%, transparent 77%);
}

.agricltr-box .img-cont-hldr h4 {
    position: absolute;
    bottom: 15px;
    left: 0;
    padding: 10px;
    min-height: 100px;
    color: #fff;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    font-size: 18px;
    z-index: 1;
}

.agricltr-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    /* z-index: -1; */
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}

.agricltr-box:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.agricltr-box .workdtls-btn {
    width: 45px;
    height: 45px;
    font-weight: bold;
}

.ongoing-sec {
    padding: 70px 0;
}

.ongoingprjct-accrdn .accordion-item {
    margin: 0 0 20px 0;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border: none;
    overflow: hidden;
    box-shadow: 0 0 13px -6px rgb(0 0 0 / 20%);
}

.agricltr-listwrpr .agricltr-box {
    width: 23.2%;
    margin: 0 20px 38px 0;
}

.ongoingprjct-accrdn .accordion-item button {
    color: #393838;
    font-size: 23px;
    font-weight: 700;
    background: #fff;
    box-shadow: inset 0 -2px 0 rgb(0 0 0 / 13%);
    padding-right: 50px;
}

.ongoingprjct-accrdn .accordion-button::after {
    content: '\f273';
    font: normal normal normal 21px/1 'Material-Design-Iconic-Font';
    line-height: 31px;
    color: #fff;
    padding-left: 0px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: #f26f21;
    position: absolute;
    right: 22px;
    top: 14px;
    padding: 0;
    text-align: center;
}

.ongoingprjct-accrdn .accordion-button.collapsed::after {
    content: '\f278';
    font: normal normal normal 21px/1 'Material-Design-Iconic-Font';
    line-height: 31px;
    color: #fff;
    padding-left: 2px;
}

.ongoingprjct-accrdn .accordion-body p {
    margin: 0;
    font-size: 18px;
    color: #2e2e2e;
}


/* agriculture page end */


/*====EVENTS PAGE START====*/

.event-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.event-wrapper .event-slider-list {
    width: 33%;
    padding-left: 70px;
    position: sticky;
    top: 80px;
    height: 405px;
}

.event-item {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 80px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
    border-radius: 0 0 25px 188px;
    box-shadow: 0 35px 32px -39px rgb(0 0 0 / 20%);
    -webkit-border-radius: 0 0 25px 188px;
    -moz-border-radius: 0 0 25px 188px;
    -ms-border-radius: 0 0 25px 188px;
    -o-border-radius: 0 0 25px 188px;
}

.event-item:last-child {
    margin-bottom: 0;
}

.event-item .event-image {
    width: 305px;
    padding-left: 31px;
    position: relative;
    padding-top: 31px;
    height: 305px;
}

.event-item .event-image:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 31px);
    height: calc(100% - 31px);
    border: 1px solid #f16a19;
    border-radius: 100%;
    transition: all 0.5s ease-in-out;
}

.event-item:hover .event-image:after {
    left: 31px;
    top: 31px;
}

.event-item .event-image:before {
    content: '';
    position: absolute;
    height: 50px;
    width: 50px;
    border-radius: 100%;
    background: #f16a19;
    bottom: 31px;
    left: 31px;
}

.event-item .event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100%;
    transition: all 0.5s ease-in-out;
}

.event-item:hover .event-image img {
    box-shadow: 0 0 35px rgb(255 213 188);
}

.event-item .event-text {
    width: calc(100% - 305px);
    padding-left: 50px;
}

.event-item .event-text h3 {
    font-weight: 700;
    color: #010101;
    font-size: 24px;
    margin-bottom: 15px;
}

.event-item .event-text p {
    font-style: italic;
    color: #797575;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.event-item .event-text ul {
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #000000;
    margin-bottom: 25px;
}

.event-item .event-text ul li {
    position: relative;
    margin-bottom: 10px;
}

.event-item .event-text ul li i {
    font-size: 18px;
    vertical-align: middle;
    margin-right: 3px;
}

.event-item .event-text ul li i.zmdi-pin {
    font-size: 23px;
    margin-top: -2px;
}

.event-slider-item {
    position: relative;
}

.event-slider-item img {
    object-fit: cover;
    height: 354px;
}

.event-slider-item .inner-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
}

.inner-text .celeb-text {
    text-align: center;
    color: #fff;
    margin-top: -38px;
}

.inner-text .celeb-text h4 {
    font-family: 'Dancing Script', cursive;
    font-size: 47px;
    line-height: 47px;
    margin-bottom: 7px;
}

.inner-text .celeb-text p {
    font-size: 19px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 10px;
}

.event-slider-item .inner-text a {
    display: inline-block;
    position: absolute;
    bottom: 25px;
    padding: 5px;
    border-radius: 100%;
    transition: all 0.5s ease-in-out;
}

.event-slider-item .inner-text a:hover {
    background: #c80000;
}

.event-slider-item .inner-text a img {
    height: auto;
}

.event-banner-slider .owl-dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 25px;
}

.event-banner-slider .owl-dots .owl-dot {
    display: inline-block;
    height: 10px;
    width: 10px;
    background: #d7d7d7;
    border-radius: 100%;
    margin-right: 10px;
}

.event-banner-slider .owl-dots .owl-dot.active {
    background: #fdb900;
}

.event-banner-slider .owl-dots .owl-dot:last-child {
    margin-right: 0;
}

.event-pagination {
    padding-top: 0;
}

.pagination-holder {
    padding: 25px 0;
    text-align: center;
}

.page-numbers {
    justify-content: center;
    display: flex;
    align-items: center;
}

.page-numbers li+li {
    margin-left: 10px;
}

.page-numbers li :is(span,
a) {
    border: none;
    outline: none;
    background: #e7e7e7;
    color: #000;
    border-radius: 5px;
    height: 35px;
    width: 35px;
    padding: 0;
    text-align: center;
    line-height: 35px;
    font-family: 'Poppins', sans-serif;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.page-numbers li span.page-numbers.current,
.page-numbers li span.page-numbers:hover {
    background: #3a3636;
    color: #fff;
}

.page-numbers li a.prev,
.page-numbers li a.next {
    background: transparent;
    width: auto;
    height: auto;
    color: #000;
}

.page-numbers li a.prev:hover,
.page-numbers li a.next:hover {
    color: #e86618;
}


/* .pagination-holder ul .page-link:focus {
    box-shadow: none;
} */

.page-numbers li a.prev {
    margin-right: 15px;
}

.page-numbers li a.next {
    margin-left: 15px;
}


/*====EVENTS PAGE END====*/


/*====RESEARCH REPORT PAGE START====*/

.research-report-tabs {
    border: none;
    justify-content: space-between;
    margin-bottom: 50px;
}

.research-report-tabs .nav-link {
    border: 1px solid transparent;
    margin: 0;
    padding: 8px 33px;
    border-radius: 35px;
    font-size: 17px;
    line-height: 22px;
    height: 100%;
    color: #070606;
}

.research-report-tabs .nav-item.show .nav-link,
.research-report-tabs .nav-link.active {
    border-color: #f16a19;
    color: #f16a19;
}

.research-report-heading {
    margin-bottom: 40px !important;
}

.research-report-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.research-report-wrapper .research-report-item {
    width: 50%;
    padding: 0 15px;
    margin-bottom: 30px;
}

.research-report-wrapper .research-report-item:nth-last-child(-n+2) {
    margin-bottom: 0;
}

.research-report-item-inner {
    position: relative;
}

.research-report-item-inner figure {
    height: 515px;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    margin: 0;
}

.research-report-item-inner figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.research-report-item-inner .report-text {
    position: absolute;
    width: 100%;
    padding: 7px 71px 7px 25px;
    background: rgba(0, 0, 0, 0.6);
    bottom: 45px;
    left: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    height: 81px;
}

.research-report-item-inner .download-pdf {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 12px;
    width: 90px;
    height: 90px;
    background: #f26f21;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


/*====RESEARCH REPORT PAGE END======*/


/*====STATUTATORY REPORT PAGE START====*/

.section-heading p span {
    color: #df5a0a;
    font-weight: 600;
}

.str-heading {
    margin-bottom: 94px;
}

.str-heading p {
    font-weight: 500;
}

.str-heading p a {
    color: #094aab;
    transition: all 0.5s ease-in-out;
}

.str-heading p a:hover {
    color: #df5a0a;
}

.str-report-section {
    padding-bottom: 0 !important;
    background: #f7f7f7;
}

.str-report-section .section-heading {
    margin-bottom: 0;
}

.str-report-cont {
    background: #f7f7f7;
    position: relative;
    height: 538px;
}

.bg-white {
    background: #fff !important;
}

.str-report-cont .left-image {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: 645px;
}

.str-report-cont .left-image img {
    width: 100%;
}

.str-report-cont .our-program-wrapper .section-heading h3 {
    color: #000;
}

.str-report-cont .our-program-wrapper .section-heading p {
    color: #000;
}

.str-report-cont .our-pgrm-holder {
    padding-top: 60px;
    padding-right: 20px;
    height: 100%;
    padding-bottom: 60px;
}

.str-report-box figure {
    height: 370px;
    border-radius: 8px;
    overflow: hidden;
}

.str-report-box figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.str-report-box a {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    color: #f26f21;
    transition: all 0.5s ease-in-out;
}

.str-report-box a:hover {
    color: #000;
}

.str-reports .owl-nav {
    position: absolute;
    bottom: 70px;
    left: -465px;
    width: auto;
    display: flex;
    pointer-events: none;
}

.str-reports .owl-nav button {
    outline: none;
    pointer-events: all;
    margin-right: 20px;
}

.str-reports .owl-nav button:last-child {
    margin-right: 0;
}

.str-reports .owl-nav button span {
    display: inline-block;
    height: 45px;
    width: 45px;
    border-radius: 100%;
    background: #f16a19;
    font-size: 30px;
    color: #fff;
    text-align: center;
    line-height: 43px;
    border: 1px solid #f16a19;
    transition: all 0.5s ease-in-out;
}

.str-reports .owl-nav button span:hover {
    background: #fff;
    color: #f16a19;
}


/*====STATUTATORY REPORT PAGE END======*/


/* initivies start */

.initivies-wrpr {
    display: flex;
    align-items: center;
    justify-content: center;
}

.initivies-wrpr .itemm {
    cursor: pointer;
}

.initivies-wrpr .itemm img {
    width: 100%;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.initivies-wrpr .itemm:hover img {
    transform: scale(1.1);
}

.initivies-wrpr .itemm:not(:last-child) {
    margin-right: 10px;
}

.initivies-cont {
    padding: 15px;
    background: #f6f6f6;
    margin: 20px 0 0 0;
    display: none;
}

.initivies-cont.show {
    display: block;
}

.initivies-cont h4 {
    font-size: 25px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #f26f21;
}

.initivies-cont a {
    background: #fff6f1;
    padding: 5px 28px;
    border: 1px solid #f26f21;
    color: #f87222;
    border-radius: 5px;
    margin-left: auto;
    display: table;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.initivies-cont a:hover {
    background: #f87222;
    color: #fff;
}

.initivies-wrpr .itemm.active img {
    filter: grayscale(0);
}


/* html,
body {
    overflow-x: hidden;
} */


/* initivies end */


/*=============FOOTER START=============*/

.site-footer {
    font-size: 17px;
    color: #fff;
}

.footer-contact-holdr {
    background: #0f1016;
    padding: 40px 0;
}

.footer-contacts {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
}

.footer-contact-box {
    display: flex;
    align-items: center;
    width: 18%;
}

.footer-contact-box figure {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    background: #fd4a36;
    justify-content: center;
    border-radius: 100%;
    margin-bottom: 0;
    margin-right: 20px;
}

.footer-contact-box figure img {
    height: 30px;
}

.footer-contact-box a {
    color: #fff;
    transition: 0.4s ease-in-out;
}

.footer-contact-box address,
.footer-contact-box .call-nos a,
.footer-contact-box a.email {
    margin: 0;
    width: calc(100% - 115px);
}

.copy-right-bar {
    background: #23262f;
    padding: 15px 0;
}

.copy-right-bar p a {
    color: #e17b70;
    transition: 0.4s ease-in-out;
}

.copy-right-bar p {
    margin: 0;
    font-size: 15px;
}

.copy-right-socials {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copy-right-socials ul {
    display: flex;
}

.copy-right-socials ul li {
    margin-right: 10px;
}

.copy-right-socials ul li:last-child {
    margin-right: 0px;
}

.copy-right-bar p a:hover,
.footer-contact-box a:hover {
    color: #f16a19;
}

.copy-right-socials ul li a {
    display: inline-block;
    transition: 0.4s ease-in-out;
}

.copy-right-socials ul li a:hover {
    filter: grayscale(1);
}


/*=============FOOTER END===============*/


/* blog page */

.blogSection {
    padding: 435px 0 50px 0;
}

.blogContentSec {
    margin-bottom: 55px;
}

.blogSection h4 {
    font-size: 20px;
    line-height: 26px;
    color: #b71a14;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.blogSection h4 a {
    color: #f26f21;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.blogSection h4 a:hover {
    color: #000;
}

.blogSection h5 {
    font-size: 17px;
    line-height: 24px;
    color: #000000;
    margin: 0 0 10px 0;
}

.blogSection h5 i {
    margin-right: 7px;
    font-size: 22px;
    vertical-align: middle;
}

.blogSection p {
    font-size: 16px;
    line-height: 24px;
    color: #515151;
    font-weight: 400;
    margin: 0 0 10px 0;
    text-align: justify;
}

.blogSection p a {
    color: #0360f0;
}

.blogSection a.more {
    color: #515151;
    font-size: 16px;
    line-height: 24px;
    display: inline-block;
}

.blogSection a.more:hover {
    color: #b71a14;
}

.blogSection ul li {
    font-size: 15px;
    color: #515151;
    font-weight: 400;
    position: relative;
}

.blogSection img {
    margin-bottom: 20px;
    object-fit: cover;
    height: 100% !important;
    width: 100% !important;
}

.blogSection ol {
    padding-left: 18px;
}

.blogSection ol li strong {
    color: #127cc1;
}

.blogSection p strong {
    color: #127cc1;
}

.blogSidePanel {
    position: sticky;
    top: 125px;
}

.blogSidePanel h3 {
    background: #f0f0f0;
    color: #fff;
    font-size: 18px;
    line-height: 24px;
    padding: 10px;
    margin: 0 0 10px 0;
}

.blogSidePanel ul {
    background: #fff1e8;
}

.blogSidePanel ul li {
    display: block;
    padding: 10px;
    border-bottom: 1px solid #f5d2bb;
}

.blogSidePanel ul li:last-child {
    border-bottom: none;
}

.blogSidePanel ul li a {
    font-size: 16px;
    line-height: 24px;
    color: #000;
    font-weight: 400;
    display: block;
}

.blogSidePanel ul li:after {
    display: none;
}

.blogSidePanel aside {
    margin-bottom: 20px;
}

#respond h3 {
    margin: 0;
    font-size: 28px;
    line-height: 32px;
    color: #5d5d5d;
    padding-bottom: 10px;
    font-weight: 900;
}

.blogSection p.comment-notes,
.blogSection label {
    color: #700000;
}

.blogSection textarea {
    height: 60px;
    border-radius: 50px!important;
    border: 1px solid #9b9b9b!important;
    padding: 10px!important;
}

.blogSection input {
    height: auto!important;
    border-radius: 50px!important;
    width: 100%;
    border: 1px solid #9b9b9b!important;
    padding: 10px!important;
    box-sizing: border-box!important;
}

.blogSection textarea:focus {
    outline: none;
}

.blogSection input:focus {
    outline: none;
    box-shadow: none!important;
}

.blogSection input[type=submit] {
    width: auto;
    background: #e44d26;
    padding: 9px 20px!important;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    background-image: linear-gradient(#97371e, #97371e);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 0% 100%;
    transition: background-size .5s, color .5s;
    border: none;
    height: auto;
    text-transform: capitalize;
    height: auto;
}

.blogSection input[type=submit]:hover {
    background-size: 100% 100%;
}

.blogSection input[type=submit]:focus {
    outline: none;
}

.blogContentSec .more {
    display: inline-block;
    padding: 7px 15px;
    background: #f26f21;
    border-radius: 8px;
    color: #fff !important;
    border: 1px solid #f26f21;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.blogContentSec .more:hover {
    background: #fff;
    color: #f26f21 !important;
}

.post-categories {
    margin: 0 0 10px 0;
}

.singleblogSection img {
    width: 100%;
}

.singleblogSection {
    padding-top: 200px;
}

.post-categories li a {
    position: relative;
    color: #000;
    font-size: 15px;
    display: inline-block;
    padding-left: 20px;
}

.post-categories li a:before {
    content: '';
    position: absolute;
    top: 7px;
    left: 0;
    width: 15px;
    height: 15px;
    background: url(../images/pin.png) no-repeat;
    background-size: 15px;
}

.singleblogSection ul,
.singleblogSection ol {
    margin: 10px 0;
}

.singleblogSection ol {
    padding-left: 19px;
}

.singleblogSection ul li {
    position: relative;
    color: #000;
    padding-left: 17px;
}

.singleblogSection ul li:before {
    content: '';
    position: absolute;
    top: 9px;
    left: 0;
    width: 11px;
    height: 11px;
    background: #f27830;
    border: 1px solid #bb591e;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.singleblogSection ul.wp-block-categories-list.wp-block-categories li,
.singleblogSection .post-categories li {
    padding-left: 10px;
}

.singleblogSection ul.wp-block-categories-list.wp-block-categories li:before,
.singleblogSection .post-categories li:before {
    display: none;
}


/* end blog page */


/*event page singel page */

.singleblogSection {
    padding: 435px 0 50px 0;
}

.contact-page-section.singleblogSection .breadcrumb-holder {
    margin-bottom: 24px;
}

.event-meta ul li {
    padding: 0;
    margin: 0 0 8px 0;
    font-size: 15px;
}

.event-meta ul li i {
    font-size: 22px;
    vertical-align: middle;
    margin: 0 5px 0 0;
}

.event-meta ul li:before {
    display: none;
}

.eventcontent {
    padding: 10px;
    background: #f8f8f8;
    border-radius: 10px;
    margin: 15px 0 0 0;
}

.eventcontent img {
    width: 300px;
    height: 300px;
    float: left;
    margin: 0 15px 10px 0 !important;
}


/* event singel page end */


/* image gallery page */

.our-gallery {
    padding-top: 50px;
}

.gallery-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 -4px;
}

.gallery-wrapper a {
    width: 23%;
    padding: 10px;
    display: block;
    position: relative;
    height: 238px;
    background: #f0f0f0;
    margin: 10px;
    border-radius: 7px;
}

.gallery-wrapper a img {
    width: 100%;
    height: 212px;
    border-radius: 7px;
}

.gallery-wrapper a p {
    text-align: center;
    font-size: 17px;
    color: #f26f21;
    font-weight: 600;
    background: #ffe8da;
    display: table;
    padding: 6px 12px;
    margin: 10px auto;
    border-radius: 10px;
    margin-top: -13px;
    position: relative;
}

.gallery-wrapper .main-column a span {
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    height: 40px;
    width: 40px;
    border-radius: 100%;
    top: 45%;
    left: 50%;
    transform: translateY(-45%) translateX(-50%);
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s ease-in-out;
}

.gallery-wrapper .main-column a span:hover {
    background: #000;
}

.gallery-wrapper .main-column a:hover span {
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    opacity: 1;
    pointer-events: all;
}

.view-more-link-holder {
    margin-top: 50px;
}

.view-more-link-holder a {
    display: inline-block;
    color: #fff;
    background: #c80000;
    border-radius: 35px;
    height: 50px;
    padding: 0 15px;
    line-height: 55px;
    font-size: 18px;
    transition: all 0.5s ease-in-out;
    width: 185px;
    line-height: 48px;
}

.view-more-link-holder a:hover {
    background: #f30808;
}

.view-more-link-holder a img {
    margin-right: 10px;
    transition: all 0.5s ease-in-out;
}

.view-more-link-holder a:hover img {
    filter: drop-shadow(4px 0 6px rgba(0, 0, 0, 0.7));
}


/* end image gallery page */

.page-id-267 .tnp-subscription {
    max-width: 600px;
    margin-top: 50px;
}

.page-id-267 .tnp-subscription form {
    display: flex;
    flex-wrap: wrap;
}

.page-id-267 .tnp-subscription form label {
    width: 100%;
    text-align: left;
}

.page-id-267 .tnp-subscription div.tnp-field {
    width: 75%;
}

.page-id-267 .tnp-subscription div.tnp-field input.tnp-email {
    height: 52px;
    border: 1px solid #444;
}

.page-id-267 .tnp-subscription div.tnp-field input.tnp-email:focus {
    outline: none;
}

.page-id-267 .tnp-subscription div.tnp-field.tnp-field-button {
    width: 18%;
    margin-top: 29px;
}

.page-id-267 .tnp-subscription div.tnp-field.tnp-field-button input {
    width: 100%;
    padding: 17px;
}

.wpcf7-form .wpcf7-response-output {
    position: absolute;
    color: white;
    margin: 22px 0 0 0;
    background: #cc4040;
    border: none !important;
}

.wpcf7-form.sent .wpcf7-response-output {
    background: green;
}

.singleblogSection img {
    margin: 15px 0;
}

.singleblogSection .blog_dates {
    font-weight: 600;
    font-size: 16px;
    margin: 10px 0;
}

.singleblogSection .blog_dates i {
    margin-right: 5px;
    vertical-align: middle;
    font-size: 20px;
}

.singleblogSection h4 {
    color: #f26f21;
    font-size: 24px;
    line-height: 30px;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.singleblogSection p img {
    float: left;
    width: 280px;
    height: 280px;
    margin: 0 15px 10px 0;
}

.singleblogSection p {
    margin: 0 0 10px 0;
    text-align: justify;
}

.award-section.award-onpage-section {
    padding-top: 0;
}

.page-id-465 .str-report-section:after {
    display: none;
}

.our-partner-onpage-section .our-partner-list {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}

.our-partner-onpage-section .our-partner-list .item {
    width: 19%;
    border: 1px solid #ddd;
    padding: 10px;
    display: grid;
    place-content: center;
    margin: 5px;
}

.our-partner-onpage-section .our-partner-list .item figure {
    margin: 0;
    width: 100%;
    height: 100%;
}

.our-partner-onpage-section {
    padding-bottom: 70px;
}

.page-id-504 .str-report-section:after {
    display: none;
}

.workwith-frmr-hldr {
    background: #F2F2F2;
    padding: 20px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.workwith-frmr-hldr .form-group {
    margin: 0 0 25px 0;
    position: relative;
}

.workwith-frmr-hldr .form-group input+label,
.workwith-frmr-hldr .form-group textarea+label {
    position: absolute;
    top: 14px;
    left: 35px;
    color: #888888;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    pointer-events: none;
}

.workwith-frmr-hldr .form-group textarea+label {
    left: 15px;
}

.workwith-frmr-hldr .form-group textarea:focus+label,
.workwith-frmr-hldr .form-group textarea:valid+label {
    background: #f2f2f2;
    line-height: 20px;
    top: -14px;
    left: 7px;
    border: 1px solid #9A9A9A;
    padding: 2px 8px;
}

.workwith-frmr-hldr .form-inline {
    display: flex;
    flex-wrap: wrap;
}

.workwith-frmr-hldr .form-inline .form-group {
    width: 49%;
}

.workwith-frmr-hldr .form-inline .form-group:last-child {
    margin-left: 10px;
}

.workwith-frmr-hldr input,
.workwith-frmr-hldr textarea {
    padding: 10px 15px 5px 15px;
    border: none;
    border-bottom: 1px solid #9A9A9A;
    width: 100%;
    background: transparent;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.workwith-frmr-hldr input:focus,
.workwith-frmr-hldr textarea:focus {
    outline: none;
}

.workwith-frmr-hldr textarea {
    border: 1px solid #9A9A9A;
    height: 115px;
    padding-top: 15px;
}

.workwith-frmr-hldr input.name,
.workwith-frmr-hldr input.email,
.workwith-frmr-hldr input.phno {
    background: transparent url(../images/user.svg) no-repeat;
    background-size: 22px;
    background-position: left 15px;
    padding-left: 35px;
}

.workwith-frmr-hldr input.email {
    background: transparent url(../images/email.svg) no-repeat;
    background-size: 22px;
    background-position: left 19px;
    padding-left: 35px;
}

.workwith-frmr-hldr input.phno {
    background: transparent url(../images/phone.svg) no-repeat;
    background-size: 22px;
    background-position: left 15px;
    padding-left: 35px;
}

.workwith-frmr-hldr input:focus+label,
.workwith-frmr-hldr input:valid+label {
    top: -15px;
    /*color: #0473EA;*/
}

.workwith-frmr-hldr input[type="submit"] {
    background: #AEECFF;
    border-radius: 25px;
    color: #000;
    margin: 15px auto 0;
    display: table;
    border: none;
    padding: 10px;
    max-width: 175px;
    font-size: 17px;
    font-weight: 500;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.workwith-frmr-hldr input[type="submit"]:hover {
    background: #0473ea;
    color: #fff;
}

.recapcha {
    width: 100%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/*MODAL*/

.modal-backdrop.show {
    display: none;
}

.modal-bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    opacity: 0;
    transition: opacity .15s linear;
    pointer-events: none;
}

.modal-open {
    padding-right: 0 !important;
}

.modal-open .modal-bg {
    opacity: 0.5;
    pointer-events: all;
}

.inotiavtiveModal-modal {
    z-index: 999999;
}

.inotiavtiveModal-modal .modal-dialog {
    max-width: 700px;
}

.inotiavtiveModal-modal .modal-header {
    background: #db5a0d;
    color: #fff;
    padding: 10px 15px;
}

.inotiavtiveModal-modal .modal-header .btn-close {
    position: absolute;
    height: 40px;
    width: 40px;
    background: #fff;
    border-radius: 100%;
    padding: 0;
    outline: none;
    color: red;
    opacity: 1;
    top: -10px;
    right: -5px;
    font-size: 25px;
}

.inotiavtive-cont p {
    font-size: 16px;
    color: #000;
}

.inotiavtive-cont a {
    background: #fff6f1;
    padding: 5px 28px;
    border: 1px solid #f26f21;
    color: #f87222;
    border-radius: 5px;
    margin-left: auto;
    display: table;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.inotiavtive-cont a:hover {
    background: #f87222;
    color: #fff;
}


/*MODAL*/

.award-page-section {
    padding-bottom: 0 !important;
    background: #fff;
}


/*======START MOBILE MENU SECTION=======*/

.mobileMenuSection {
    display: none;
}

.mobilemenuBtn {
    display: none;
}

.mobilemenuBtn span {
    background: #00aeef;
    display: block;
    width: 25px;
    height: 2px;
    margin: 0 0 5px 0;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
}

.mobilemenuBtn span:last-child {
    margin: 0;
}

.mm-opened .mobilemenuBtn span:first-child {
    transform: rotate(45deg) translate(4px, 6px);
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transform: rotate(45deg) translate(4px, 6px);
    -moz-transform: rotate(45deg) translate(4px, 6px);
    -ms-transform: rotate(45deg) translate(4px, 6px);
    -o-transform: rotate(45deg) translate(4px, 6px);
}

.mm-opened .mobilemenuBtn span:last-child {
    transform: rotate(-45deg) translate(4px, -6px);
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transform: rotate(-45deg) translate(4px, -6px);
    -moz-transform: rotate(-45deg) translate(4px, -6px);
    -ms-transform: rotate(-45deg) translate(4px, -6px);
    -o-transform: rotate(-45deg) translate(4px, -6px);
}

.mm-opened .mobilemenuBtn span:nth-child(2) {
    opacity: 0;
}

.mm-panel.mm-hasnavbar .mm-navbar {
    background: #3db6e5;
    box-shadow: 0 2px 19px -2px rgba(0, 0, 0, 0.4);
}

.mm-navbar .mm-title {
    font-size: 18px;
    line-height: 24px;
    color: #fff !important;
}

.mm-listview>li>a,
.mm-listview>li>span {
    font-size: 15px;
    line-height: 24px;
    font-weight: 500;
    color: #202124;
    font-family: 'Montserrat', sans-serif;
}

.mm-listview>li>a:hover,
.mm-listview>li.active>a {
    color: #000;
}

.mm-listview>li:not(.mm-divider):after {
    left: 0;
}

.mm-menu .mm-listview>li .mm-next:after {
    border-color: rgb(0, 0, 0);
}

.mm-menu .mm-btn:after,
.mm-menu .mm-btn:before {
    border-color: rgb(243, 243, 243);
}

.mmenu-open-fade .mobileMenuSection {
    display: none;
}

.mmenu-open-fade .mobileMenuSection {
    display: none;
}


/*=======END MOBILE MENU SECTION=======*/


/* NEW HISTORY SECTION */

.history-sec {
    background: url(../images/histrybg.jpg) no-repeat;
    background-size: cover;
    padding-bottom: 95px;
}

.history-sec .container-fluid {
    padding: 0 60px;
}

.history-new-wrp {
    display: flex;
    align-items: stretch;
    position: relative;
    margin: 70px 0 0 0;
}

.history-new-wrp::after {
    content: '';
    position: absolute;
    top: 172px;
    left: 0;
    width: 100%;
    height: 13px;
    background: #23294b;
    border-radius: 15px;
}

.histry-card {
    position: relative;
    text-align: center;
    width: 10%;
}

.histry-card .yr {
    position: relative;
    margin: 0 0 50px 0;
    height: 146px;
}

.histry-card .yr:after {
    content: '';
    position: absolute;
    bottom: -26px;
    left: 50%;
    border: 12px solid #23294b;
    border-top: 12px solid transparent;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    transform: translateX(-50%);
}

.histry-card .yr.yr2014:after {
    bottom: -26px;
}

.histry-card .yr.yr2017:after {
    bottom: -26px;
}

.histry-card:nth-last-of-type(odd) .yr {
    margin-top: 75px;
    margin-bottom: 0;
}

.histry-card:nth-last-of-type(odd) .yr:after {
    bottom: auto;
    top: -23px;
    border: 12px solid #23294b;
    border-bottom: 12px solid transparent;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
}

.histry-card .yr img {
    width: 100%;
    max-width: 112px;
    cursor: pointer;
    filter: hue-rotate(571deg);
    -webkit-filter: hue-rotate(571deg);
}

.histry-card .yr h5 {
    color: #3f248d;
    font-size: 20px;
    font-weight: bold;
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.histry-card:nth-last-of-type(odd) .yr h5 {
    top: 63%;
}

.histry-card .details {
    margin: 16px 0 0 0;
}

.histry-card .details i {
    display: block;
}

.histry-card .details i img {
    max-width: 70px;
    margin: 0 0 15px;
}

.histry-card .details p {
    color: #383838;
    font-size: 16px;
    margin: 0;
    line-height: 19px;
    font-weight: 600;
}

.pop-content {
    position: absolute;
    /* background: radial-gradient(#e7e7e7, #ffffff); */
    background: radial-gradient(#4365de, #6484ff);
    z-index: 9;
    width: 100%;
    max-width: 170px;
    height: 170px;
    border-radius: 50%;
    overflow: hidden;
    padding: 27px 22px;
    top: -40px;
    text-align: center;
    box-shadow: 0 5px 15px -9px rgb(0 0 1);
}

.histry-card:nth-child(6) .yr {
    margin-top: 93px;
}

.agri-common .agricltr-listwrpr {
    margin-top: 20px;
}


/* END NEW HISTORY SECTION */

.footer-contact-box.footer-content-address {
    width: 33.33%;
    flex-wrap: wrap;
    align-items: flex-start;
}

.all-address {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% - 107px);
    padding-left: 15px;
    align-items: flex-start;
}

.all-address address {
    width: 32%;
    margin: 5px;
    font-size: 15px;
}

.all-address address label {
    width: auto;
    display: table;
    font-size: 18px;
    color: #f16a19;
    border-bottom: 1px solid #424242;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}
.all-address address label:hover{
    color:#fff;
}
.all-address.all-con-dls {
    flex-wrap: wrap;
    width: 100%;
}

.all-address.all-con-dls address {
    width: 100%;
}

.all-address.all-con-dls address label {
    border: none;
}

.our-story-section.contact-page-section.error-pg-sec {
    padding-top: 0;
}

.bnglcancard-wrpr{
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
}
.bnglcancard-wrpr h3{
    width:100%;
    text-align:center;
    font-size:28px;
    font-weight:bold;
    margin:0 0 25px 0;
    color:#ff8e1d;
}

.bnglcancard-wrpr .card{
    width: 19%;
    margin: 9px;
    background: linear-gradient(45deg, white, #ffe8d3);
    padding: 30px;
    border: none;
    border-radius: 3px;
    box-shadow: 5px 5px 20px -6px rgb(0 0 0 / 16%);
    display: block;
    text-align: left;
    outline: 1px solid #fdd4d4;
    outline-offset: -15px;
}

.bnglcancard-wrpr .card h4{
    font-size: 24px;
    font-weight: bold;
    color: #a94141;
    padding: 0 0 15px 0;
}

.bnglcancard-wrpr .card p{
    font-size: 15px;
    color: #000;
    margin: 0 0 8px 0;
    position: relative;
    font-weight: 500;
    padding-left: 16px;
    line-height: 20px;
}

.bnglcancard-wrpr .card p:last-child{
    margin:0;
}
.bnglcancard-wrpr .card p:before{
    content: '';
    position: absolute;
    top: 7px;
    left: 0;
    width: 8px;
    height: 8px;
    background: #ffc8c8;
    border-radius: 50%;
}

.keylist{
    max-width: 60%;
    margin:20px auto 0;
}

.keylist li{
    display: flex;
    margin: 0 0 26px 0;
    align-items: center;
}
.keylist li:last-child{
    margin:0;
}

.keylist li p{
    font-size: 17px;
    margin: 0;
    font-weight: 600;
}

.keylist li i{
    margin-right:12px;
}

.keyachiv-sec{
    background: #f2f2f2;
}

/* 26.10.22 */

.mm-page {
    box-sizing: border-box;
    position: initial;
    z-index: 0 !important;
}
.modal {
    z-index: 99999;
}

.modal .form-group input, .modal .form-group select{
    width: 100%;
    height: 55px;
    border: 1px solid #d1d1d1;
    outline: none;
    background: #fff;
    padding: 0 15px;
    border-radius: 5px;
}
.modal .form-group textarea{
    width: 100%;
    height: 100px;
    border: 1px solid #d1d1d1;
    outline: none;
    background: #fff;
    padding: 0 15px;
    border-radius: 5px;
}
.modal .form-group{
    margin-bottom: 15px;
    padding: 0px 10px;
}
.modal-header{
    background: #ea5d2f;
}
.modal-header h5{
    color:#fff;
}
button.btn-close {
    color: #fff !important;
    opacity: 1;
    background-color: #fff;
    width: 30px;
    height: 30px;
    position: absolute;
    right: -16px;
    border-radius: 50%;
    font-size: 16px;
    top: -11px;
}

.modal-dialog-scrollable .modal-content {
    max-height: 100%;
    overflow: visible;
}
.modal .form-group input[type="submit"]{
    background: #ea5d2f;
    color:#fff;
    border:1px solid #ea5d2f;
    transition: all 0.5s ease-in-out;

}
.modal .form-group input[type="submit"]:hover{
  background: #000;
  color:#fff;
  border:1px solid #000;
}

.idea-challnge-block table{
    border: 1px solid #d8d1d1;
}

.idea-challnge-block table td{
    vertical-align: middle;
}
.idea-challnge-block table td span{
    font-weight: 500 !important;
}

/* 31.10.22 */
.gbin-img .image-box>img {
    width: 100%;
    min-height: 190px;
    object-fit: cover;
}

.on-gbin p a{
    color: #f26f21;
}
.on-gbin p a:hover{
    color:#000;
}
.on-gbin ul{
    margin: 5px 0px 25px;
}
.on-gbin h4{
    font-size: 25px;
}
.gbin-img .image-box{
    position: relative;
}
.gbin-img .image-box .zoom-ic {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translateY(-50%);
    width: 25px;
    top: 50%;
    transition: all 0.5s ease-in-out;
    opacity: 0;
}
.gbin-img .image-box .zoom-ic img{
    width:25px;
}
.gbin-img .image-box{
    margin-bottom: 26px;
}
.gbin-img .image-box:before{
    position: absolute;
    left:0px;
    top:0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    content: "";
    transition: all 0.5s ease-in-out;
    opacity: 0;

}
.gbin-img .image-box:hover:before{
    opacity: 1; 
}
.gbin-img .image-box:hover .zoom-ic{
    opacity: 1;
}
.gbin-img {
    margin-top: 42px;
}
.on-gbin ul li{
     position: relative;
     padding-left: 12px;
}
.on-gbin ul li:not(:last-child){
    margin-bottom: 10px;
}
.on-gbin ul li:before{
    position: absolute;
    left: 0px;
    top:10px;
    width:6px;
    height: 6px;
    background: #000;
    border-radius: 50%;

    content: "";
}
.on-gbin h4 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}
.gbin-imp {
    background: #ede1db;
    padding: 25px;
}
.gbin-imp p b{
    font-size:20px;
}
.gbin-imp p{
    text-align: left!important;
}
.gbin-imp h3{
    color: #F26F21;
}
/* 01.11.22 */

.inotiavtiveModal-modal .modal-header .btn-close .zmdi.zmdi-close{
    color:#000;
}
.desktop-nav .has-submenu .sub-menu .key_inia {
    border-bottom: 1px solid #f16a19;
    font-weight: 500;
}


/* 02.11.22 */








@media(max-width:1700px) {
    .our-pgrm-holder {
        width: 60%;
    }
    .award-section .aw-left-object {
        max-width: 230px;
    }
    .latest-blogs {
        width: 100%;
        max-width: 60%;
    }
    .news-blog-section .section-heading h3 {
        font-size: 35px;
    }
    .news-wrapper {
        width: 411px;
    }
    .our-program-wrapper {
        width: 40%;
    }
    .our-story-section {
        background-image: linear-gradient(transparent, #f3f5f7);
    }
    .our-story-section .section-shape {
        top: -285px;
    }
    .our-story-section .section-shape.contact-shep {
        top: -235px;
    }
    .contact-page-section {
        padding-bottom: 100px;
    }
    .str-report-section {
        padding-bottom: 70px;
        background: #f7f7f7;
        position: relative;
    }
    .str-heading {
        margin-bottom: 0;
    }
    .str-report-cont {
        margin-top: 0;
    }
    .str-reports .owl-nav {
        left: -411px;
    }
    .footer-contact-box {
        width: 23%;
    }
    .footer-contact-box.footer-content-address {
        
        margin: 0 0 30px 0;
    }
    .footer-contact-box {
        width: 33.33%;
    }
    .footer-contacts {
        overflow: hidden;
    }
    
    .bnglcancard-wrpr .card {
     margin: 13px;
        
    }
    .bnglcancard-wrpr .card h4 {
      font-size: 20px;
        
    }
}

@media(max-width:1600px) {
    .our-pgrm-holder {
        width: 60%;
    }
    .award-section .aw-left-object {
        max-width: 200px;
    }
    .news-blog-section .left-object {
        max-width: 195px;
    }
    .latest-blogs {
        width: 100%;
        max-width: 60%;
    }
    .blog-title {
        font-size: 16px;
    }
    .blog-item p {
        font-size: 15px;
    }
    .logo-text p {
        font-size: 17px;
    }
    .our-story-section .section-shape.contact-shep {
        top: -225px;
    }
    .all-address {
        width: calc(100% - 107px);
        padding-left: 15px;
    }
    .histry-card:nth-child(6) .yr {
        margin-top: 75px;
    }
}

@media (max-width:1500px) {
    .hero-cont-inner {
        max-width: 605px;
    }
    .hero-cont-inner h2 {
        font-size: 40px;
    }
    .hero-cont-inner h3 {
        font-size: 30px;
    }
    .hero-slider .owl-nav .owl-prev {
        margin-left: -100px;
    }
    .hero-slider .owl-nav .owl-next {
        margin-right: -100px;
    }
    .our-program-section {
        height: 420px;
    }
    .our-pgrm-holder {
        width: 60%;
    }
    .our-program-inner {
        height: 300px;
    }
    .logo-text p {
        font-size: 15px;
    }
    .award-section .aw-left-object {
        max-width: 135px;
    }
    .latest-blogs {
        width: 100%;
        max-width: 60%;
        height: 100%;
    }
    .news-blog-section .left-object {
        max-width: 170px;
    }
    .str-report-box figure {
        height: 300px;
    }
    .str-report-cont {
        padding: 60px 0 60px 0;
        margin-top: 0;
        height: 468px;
    }
    .str-report-section:after {
        height: 95px;
    }
    .str-report-section .section-heading {
        position: relative;
        z-index: 2;
    }
    .str-reports .owl-nav {
        bottom: 10px;
    }
    .str-report-slider-holder {
        width: 870px;
    }
    .str-report-cont .left-image {
        max-width: 470px;
    }
    /* new history */
    .history-sec .container-fluid {
        padding: 0 15px;
    }
    .histry-card .details p {
        height: 68px;
    }
    .histry-card:nth-last-of-type(odd) .yr {
        margin-top: 45px;
    }
    .histry-card .details p {
        font-size: 15px;
    }
    .pop-content {
        padding: 10px;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
        height: 135px;
        top: 0;
    }
    
    .bnglcancard-wrpr .card {
        width: 31%;
        
    }
    
}

@media (max-width:1400px) {
    .latest-blogs {
        width: 100%;
        max-width: 60%;
        height: 100%;
    }
    .news-blog-section .left-object {
        max-width: 100px;
    }
    .award-section .aw-left-object {
        max-width: 95px;
    }
    .hero-cont-inner h2 {
        font-size: 40px;
    }
    .hero-cont-inner h3 {
        font-size: 30px;
    }
    .hero-slider .owl-nav button {
        height: 40px;
    }
    .hero-slider .owl-nav button img {
        height: 100%;
    }
    .str-report-slider-holder {
        width: 845px;
    }
    .str-reports .owl-nav {
        left: -400px;
    }
    .str-report-section:after {
        height: 105px;
    }
    .blog-item {
        min-height: 255px;
    }
    .latest-blog-slider .owl-nav {
        bottom: -70px;
    }
    .our-partner-onpage-section {
        padding-bottom: 0;
    }
    .singleblogSection {
        padding-top: 400px;
    }
    .blogSection {
        padding-top: 390px;
    }
}

@media(max-width:1300px) {
    .hero-slider .owl-nav .owl-prev {
        margin-left: -145px;
    }
    .hero-slider .owl-nav .owl-next {
        margin-right: -145px;
    }
    .our-pgrm-holder {
        width: 60%;
    }
    .latest-blogs {
        width: 100%;
        max-width: 60%;
    }
    .our-story-section .section-shape.contact-shep {
        top: -180px;
    }
    .str-report-section:after {
        height: 120px;
    }
    /* new history design */
    .history-new-wrp {
        margin: 55px 0 0 0;
    }
    /* end new history design */
}

@media (max-width:1199px) {
    .hdr-bottom-hldr .logo {
        max-width: 70px;
    }
    .hdr-bottom-hldr .logo a {
        display: inline-block;
        width: 100%;
    }
    .hdr-bottom-hldr .logo a img {
        width: 100%;
    }
    .desktop-nav {
        width: calc(100% - 70px);
    }
    .desktop-nav>ul {
        justify-content: center;
    }
    /*.desktop-nav>ul>li:not(:last-child) {*/
    /*    margin-right: 14px;*/
    /*}*/
    .has-submenu>a {
        padding-right: 12px;
    }
    .desktop-nav>ul>li {
        height: 90px;
        line-height: 90px;
    }
    .desktop-nav>ul>li:not(:last-child) {
        margin-right: 12px;
    }
    .has-submenu .sub-menu .has-sub-menu-sub .sub-menu {
        width: 150px;
        transform: translate(30px, 0);
    }
    .item-inner {
        height: calc(100vh - 146px);
    }
    .hero-cont-inner {
        margin-left: 50px;
        max-width: 465px;
    }
    .hero-cont-inner h2 {
        font-size: 30px;
    }
    .hero-cont-inner h3 {
        font-size: 20px;
    }
    .theory-section:after {
        background: url('../images/theory-top-shep-1200.png') no-repeat center;
        height: 364px;
        top: -163px;
    }
    .hero-slider .owl-nav {
        top: 50%;
    }
    .section-heading h3 {
        font-size: 35px;
    }
    .section-heading p {
        font-size: 16px;
        margin-top: 10px;
        line-height: 24px;
    }
    .sec-link p {
        font-size: 16px;
        line-height: 24px;
    }
    section {
        padding: 50px 0;
    }
    .video-wrapper .video-holder .vdo-bg {
        position: absolute;
        left: -30px;
        top: -38px;
        width: 84%;
    }
    .video-wrapper .text-holder {
        padding-right: 75px;
    }
    .video-box .video-play {
        height: 80px;
        width: 80px;
        line-height: 60px;
    }
    /* .about-wrapper .image-holder figure:nth-child(1) {
        padding-left: 120px;
    } */
    .about-wrapper .image-holder figure:nth-child(2) {
        padding-right: 165px;
        margin-bottom: 0;
        height: 270px;
        margin-top: -125px;
    }
    .about-wrapper .image-holder:after {
        height: calc(100% - 158px);
    }
    .history-milestn {
        margin-bottom: 99px;
    }
    .history-year-wrpr:nth-child(2) {
        margin-top: 213px;
    }
    .history-year-wrpr.one .history-milestn:first-child {
        transform: translate(168px, 50px);
        -webkit-transform: translate(168px, 50px);
        -moz-transform: translate(168px, 50px);
        -ms-transform: translate(168px, 50px);
        -o-transform: translate(168px, 50px);
    }
    .history-year-wrpr.two .history-milestn:last-child {
        transform: translateX(205px);
        -webkit-transform: translateX(205px);
        -moz-transform: translateX(205px);
        -ms-transform: translateX(205px);
        -o-transform: translateX(205px);
        margin-top: -29px;
    }
    .history-year-wrpr:last-child {
        padding-left: 27px;
        transform: translateX(30px);
    }
    .top-header h2.titleh2 {
        font-size: 35px;
    }
    .history-sec h2.titleh2 {
        margin-bottom: 0;
    }
    .count-wrapper {
        margin: 0 -15px;
    }
    .count-wrapper .count-box {
        padding: 0 15px;
    }
    .count-inner .numbers strong {
        font-size: 35px;
        font-weight: 600;
    }
    .count-inner .numbers p {
        font-size: 18px;
    }
    .count-inner figure {
        height: 90px;
        width: 90px;
    }
    .our-pgrm-holder {
        width: 60%;
        height: 100%;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .our-program-section {
        height: 470px;
    }
    .our-program-inner {
        height: 300px;
    }
    .success-story-wrapper .text-holder p {
        font-size: 18px;
        line-height: 28px;
    }
    .upcoming-section-holdr {
        padding-bottom: 65px;
    }
    .award-section .aw-left-object {
        display: none;
    }
    .award-section {
        padding: 50px 0 0 0;
    }
    .award-section .section-heading {
        margin-bottom: 40px;
    }
    .award-wrapper .award-box {
        margin-bottom: 50px;
    }
    .award-logo figcaption {
        font-size: 16px;
        line-height: 24px;
    }
    .award-logo {
        padding-top: 67px;
    }
    .latest-blogs {
        width: 100%;
        max-width: 60%;
        padding: 50px 30px;
    }
    .news-blog-section .section-heading h3 {
        font-size: 30px;
    }
    .our-program-wrapper .section-heading h3 {
        font-size: 30px;
    }
    .news-blog-section {
        height: 520px;
    }
    .news-wrapper {
        width: 360px;
    }
    .news-form .tnp-subscription .form-group input {
        height: 45px;
    }
    .news-form .tnp-subscription input.tnp-submit {
        height: 45px;
    }
    .blog-item figure {
        height: 80px;
        width: 80px;
        top: -40px;
    }
    .history-year-wrpr:last-child {
        transform: translateX(16px);
    }
    .our-story-wrapper .image-holder {
        width: 450px;
    }
    .our-story-wrapper .image-holder figure {
        height: 525px;
    }
    .our-story-wrapper .text-holder {
        width: calc(100% - 450px);
    }
    .our-story-wrapper .text-holder:after {
        height: calc(100% + 80px);
        top: -40px;
    }
    .our-story-wrapper .image-holder figure:last-child {
        height: auto;
    }
    .our-story-section {
        padding: 80px 0;
    }
    .initivts-sec {
        padding-top: 50px;
    }
    .history-sec {
        padding: 50px 0;
    }
    .about-org-section {
        padding: 50px 0;
    }
    .about-org-section .section-lft-object img {
        height: 290px;
    }
    .abtorg-wrapper .image-holder {
        height: 400px;
        width: 400px;
    }
    .abtorg-wrapper .image-holder figure {
        max-width: 200px;
        right: -60px;
    }
    .abtorg-wrapper .image-holder:after {
        left: -15px;
    }
    .abtorg-wrapper .text-holder {
        width: calc(100% - 400px);
        padding-left: 70px;
    }
    .abtorg-wrapper .text-holder .section-heading h3 {
        font-size: 35px;
    }
    .abtorg-wrapper .text-holder .section-heading {
        margin-bottom: 30px;
    }
    .our-story-section .section-shape.contact-shep {
        top: -140px;
    }
    .section-heading.teamheading {
        margin-bottom: 65px;
    }
    .team-card {
        margin-bottom: 20px;
    }
    .team-card figure {
        height: 205px;
        transform: translateY(-30px);
    }
    .team-card .content-hldr {
        margin-top: -30px;
    }
    .team-card h4 {
        font-size: 18px;
    }
    .agricltr-box {
        width: 23.4%
    }
    .ongoingprjct-accrdn .accordion-button.collapsed::after {
        padding-left: 0;
    }
    .ongoingprjct-accrdn .accordion-item button {
        font-size: 19px;
    }
    .ongoingprjct-accrdn .accordion-button::after {
        top: 12px;
        right: 16px;
    }
    .our-story-section.contact-page-section {
        padding: 50px 0;
    }
    /*RESEARCH REPORT*/
    .research-report-item-inner .report-text {
        font-size: 18px;
    }
    /*RESEARCH REPORT*/
    .str-report-box figure {
        height: 335px;
    }
    .str-reports .owl-nav {
        bottom: 60px;
        left: -410px;
    }
    .video-txtbox {
        width: 290px;
    }
    .wpcf7-form .wpcf7-response-output {
        position: inherit;
        bottom: auto;
    }
    .our-partner-onpage-section .our-partner-list .item {
        width: 31%;
    }
    .agricltr-listwrpr .agricltr-box {
        margin-right: 16px;
    }
    .singleblogSection {
        padding-top: 300px;
    }
    .blogSection {
        padding-top: 310px;
    }
    .about-wrapper .image-holder .video-play {
        left: 50%;
    }
    .str-report-cont {
        height: 500px;
        padding: 40px 0;
    }
    .str-report-cont .our-pgrm-holder {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .contact-wrapper .contact-form {
        width: 100%;
        padding-right: 0;
    }
    .contact-info {
        width: 100%;
        margin: 55px 0 0 0;
    }
    .bnglcancard-wrpr .card{
        width:47%;
    }
    
    .bnglcancard-wrpr .card:last-child{
        width:96%;
    }
    
    .keylist {
        max-width: 85%;
        
    }
    .desktop-nav>ul>li>a{
        padding: inherit;
        padding-right: 12px;
        font-size: 16px;
    }
}

@media(max-width:1023px) {
    .desktop-nav {
        text-align: right;
        height: 45px;
    }
    .desktop-nav ul {
        display: none;
    }
    .mobilemenuBtn {
        display: inline-block;
        height: 45px;
        width: 45px;
        background: #f16a19;
        padding-left: 7.5px;
        padding-top: 15px;
    }
    .mobilemenuBtn span {
        width: 30px;
        background: #fff;
    }
    .right-links {
        position: relative;
    }
    .right-links .ht-social {
        position: absolute;
        bottom: -72px;
        right: 60px;
    }
    .mm-panel.mm-hasnavbar .mm-navbar {
        background: #f16a19;
    }
    .hdr-bottom {
        padding: 5px 0;
    }
    .item-inner {
        height: 400px;
    }
    .theory-section:after {
        background: url('../images/theory-top-shep-1023.png') no-repeat center;
        height: 360px;
        top: -163px;
    }
    .section-heading h3 {
        font-size: 30px;
    }
    .section-heading {
        margin-bottom: 25px;
    }
    .theory-inner .cont-title {
        font-size: 26px;
        margin-bottom: 25px;
    }
    .sector-wrapper .sector-item {
        width: 50%;
        margin-bottom: 10px;
    }
    .sec-link figure {
        height: 230px;
    }
    .sec-link p {
        min-height: 1px;
    }
    .video-wrapper .text-holder {
        width: 100%;
        text-align: center;
        padding-right: 0;
    }
    .video-wrapper .video-holder {
        width: 70%;
    }
    .our-video-section .section-heading.left-align {
        text-align: center;
    }
    section {
        padding: 40px 0;
    }
    .about-wrapper .image-holder {
        width: 100%;
        margin-right: 0;
    }
    .about-wrapper .image-holder figure:nth-child(1) {
        padding-left: 0;
        max-width: 500px;
    }
    .about-wrapper .image-holder figure:nth-child(2) {
        padding-right: 0;
        padding-left: 0;
    }
    .about-wrapper .text-holder {
        width: 100%;
        padding-top: 40px;
    }
    .about-wrapper .image-holder:after {
        height: calc(100% - 105px);
    }
    /*===HISTORY SECTION=====*/
    .histry-way-wrpr:before {
        display: none;
    }
    .histry-way-wrpr {
        flex-wrap: wrap;
        margin-top: 0;
    }
    .history-year-wrpr {
        width: 100% !important;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .history-milestn {
        margin-bottom: 0;
        padding: 15px;
        width: calc(33.33% - 14px);
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
        background: #fff;
        border-radius: 10px;
        min-height: 213px;
    }
    .history-year-wrpr.one .history-milestn:first-child {
        transform: translate(0);
    }
    .history-year-wrpr:nth-child(2) {
        margin-top: 0;
    }
    .history-year-wrpr.two .history-milestn:nth-child(2) {
        transform: translateX(0);
        margin: 0;
    }
    .history-year-wrpr.two .history-milestn:last-child {
        transform: translateX(0);
        margin-top: 0;
    }
    .history-milestn .content {
        padding: 0;
        margin: 10px 0 0 0;
        width: 100%;
    }
    .history-milestn .content p {
        font-size: 16px;
        line-height: 24px;
    }
    .history-year-wrpr.one {
        flex-direction: row-reverse;
        margin-bottom: 20px;
    }
    .history-year-wrpr:last-child {
        justify-content: center;
        padding-left: 0;
        margin-top: 20px;
        flex-direction: row-reverse;
    }
    .history-year-wrpr:last-child .history-milestn:last-child {
        margin-right: 20px;
    }
    .history-sec h2.titleh2 {
        margin-bottom: 30px;
        font-size: 30px;
    }
    .history-sec {
        padding: 40px 0;
    }
    /*===HISTORY SECTION=====*/
    .count-inner figure {
        height: 60px;
        width: 60px;
    }
    .count-inner .numbers strong {
        font-size: 26px;
    }
    .count-inner .numbers p {
        font-size: 16px;
        line-height: 24px;
    }
    .our-pgrm-holder {
        width: 50%;
        padding-right: 15px;
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .our-program-inner {
        height: 310px;
    }
    .our-program-inner img {
        height: 100%;
        object-fit: cover;
    }
    .logo-text p {
        min-height: 1px;
    }
    .success-story-wrapper .text-holder p {
        font-size: 16px;
        font-weight: 600;
        text-align: justify;
        line-height: 22px;
    }
    .success-story-wrapper .image-holder {
        padding-right: 30px;
    }
    .award-wrapper .award-box {
        width: 50%;
    }
    .news-blog-section {
        height: 500px;
    }
    .latest-blogs {
        width: 100%;
        max-width: 60%;
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .testimoni-slider .item {
        padding: 0 100px;
    }
    .testimonials {
        padding: 40px 0;
    }
    .upcoming-section-holdr {
        padding: 40px 0 60px 0;
    }
    .top-header h2.titleh2 {
        font-size: 30px;
        margin-bottom: 20px;
    }
    .upcoming-section .row .col:last-child {
        margin-top: 35px;
    }
    .our-partner-section {
        padding: 40px 0;
    }
    .footer-contact-box {
        flex-wrap: wrap;
        display: block;
    }
    .footer-contact-box figure {
        height: 60px;
        width: 60px;
    }
    .footer-contact-box figure{
        margin-bottom: 20px;
    }
    .footer-contact-box figure img {
        height: 20px;
    }
    .footer-contact-box address {
        width: 100%;
        display: block;
        text-align: center;
    }
    .footer-contacts {
        justify-content: center;
        margin: 0;
    }
    /* .footer-contacts .footer-contact-box {
        padding: 0 15px;
        width: 33.33%;
    } */
    /* .footer-contact-holdr {
        padding: 40px 0;
    } */
    .our-story-wrapper .text-holder:after {
        display: none;
    }
    .our-story-section {
        padding-bottom: 40px;
    }
    .our-story-section .section-shape {
        top: -135px;
    }
    .our-story-wrapper {
        flex-direction: column-reverse;
    }
    .our-story-wrapper .image-holder {
        width: calc(100% + 30px);
        display: flex;
        flex-wrap: wrap;
        margin: 0 -15px;
        padding: 0;
    }
    .our-story-wrapper .image-holder figure {
        padding: 0 15px;
        width: 50%;
        height: auto;
        margin: 0;
    }
    .our-story-wrapper .image-holder figure img {
        border-radius: 10px;
    }
    .our-story-wrapper .text-holder {
        width: 100%;
        margin-bottom: 30px;
    }
    .our-story-wrapper .text-holder p {
        font-size: 16px;
        line-height: 24px;
        text-align: justify;
    }
    .abtorg-wrapper .image-holder {
        height: 300px;
        width: 300px;
    }
    .abtorg-wrapper .text-holder {
        width: calc(100% - 300px);
    }
    .abtorg-wrapper .image-holder figure {
        max-width: 175px;
    }
    .abtorg-wrapper .text-holder .section-heading h3 {
        font-size: 28px;
    }
    .abtorg-wrapper .text-holder ul li .text h4 {
        font-size: 18px;
    }
    .abtorg-wrapper .text-holder ul li .text p {
        font-size: 15px;
        line-height: 20px;
    }
    .abtorg-wrapper .text-holder ul li {
        margin-bottom: 25px;
    }
    .our-story-section .section-shape.contact-shep {
        top: -106px;
    }
    /* .contact-info {
        width: 300px;
    } */
    /* .contact-wrapper .contact-form {
        width: calc(100% - 300px);
        padding-right: 30px;
    } */
    .contact-form h3 {
        font-size: 40px;
    }
    .contact-form .sub-heading {
        font-size: 20px;
    }
    .contact-info ul li {
        padding: 20px;
    }
    .contact-info ul li .icon {
        width: 40px;
    }
    .contact-info ul li .icon img {
        max-width: 30px;
    }
    .contact-info ul li .text h4 {
        font-size: 18px;
    }
    .contact-info ul li .text address,
    .contact-info ul li .text p {
        font-size: 15px;
        line-height: 24px;
    }
    .contact-form .form-group input {
        height: 45px;
    }
    .contact-form .form-group textarea {
        height: 90px;
    }
    .submit-btn-wrapper input,
    .submit-btn-wrapper button {
        height: 45px;
        padding: 0 40px;
        font-size: 18px;
        line-height: 45px;
    }
    .map-holder {
        height: 300px;
    }
    .contact-page-section .breadcrumb-holder {
        margin-bottom: 40px;
    }
    .team-card {
        width: 33.33%;
        margin-bottom: 35px;
    }
    .team-card .team-card-inner {
        min-height: 269px;
    }
    .inner-page-hero-section {
        height: 335px;
    }
    .ourwork-wrpr {
        margin: 0;
        justify-content: center;
    }
    .workcard {
        width: 45%;
        margin: 0px 15px;
    }
    .wrkdetls-hldr {
        top: 15px;
    }
    .wrkdetls-hldr .box h4 {
        font-size: 18px;
    }
    .wrkdetls-hldr .box p {
        font-size: 16px;
    }
    .wrkdetls-hldr .box {
        margin-bottom: 8px;
    }
    .workcard .content-box h5 {
        font-size: 18px;
    }
    .workcard .content-box p {
        font-size: 15px;
        line-height: 20px;
    }
    .workcard .content-box {
        height: 168px;
    }
    .section-heading.teamheading {
        margin-bottom: 50px;
    }
    .agricltr-box,
    .agricltr-box:last-child {
        width: 47%;
        margin: 10px 10px 37px 10px;
    }
    .agricltr-listwrpr {
        margin: 45px 0 0 0;
    }
    .ongoing-sec {
        padding: 50px 0;
    }
    .ongoingprjct-accrdn .accordion-item button {
        font-size: 16px;
    }
    .ongoingprjct-accrdn .accordion-button::after {
        top: 9px;
    }
    .event-item {
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
    }
    .event-item .event-image {
        width: 235px;
        height: 235px;
    }
    .event-item .event-text {
        width: calc(100% - 235px);
        padding-left: 25px;
    }
    /*RESEARCH REPORT*/
    .research-report-tabs .nav-link {
        padding: 5px 15px;
        max-width: 214px;
    }
    .research-report-item-inner figure {
        height: 330px;
    }
    .research-report-item-inner .report-text {
        font-size: 15px;
        font-weight: 500;
        padding-right: 100px;
        line-height: 20px;
    }
    .research-report-item-inner .download-pdf {
        height: 60px;
        width: 60px;
        right: 25px;
    }
    .research-report-item-inner .download-pdf img {
        height: 35px;
    }
    /*RESEARCH REPORT*/
    .str-report-section .section-heading {
        margin-bottom: 0;
    }
    .our-story-section.contact-page-section.str-report-section {
        padding-bottom: 40px;
    }
    .video-txtbox {
        width: 195px;
        padding: 10px;
    }
    .video-txtbox .icon img {
        max-width: 34px;
    }
    .video-txtbox h4 {
        font-size: 19px;
    }
    .our-video-section {
        padding: 20px 0 60px 0;
    }
    .video-txtbox:before {
        height: 60px;
    }
    .video-txtbox {
        height: 60px;
    }
    .pop-content {
        max-width: 195px;
        height: 195px;
        padding: 30px 35px;
        top: 10px;
    }
    .wpcf7-form .wpcf7-response-output {
        line-height: 18px;
        padding: 10px 8px !important;
        text-align: center;
    }
    .blogContentSec img {
        height: 150px !important;
    }
    .blogSidePanel ul li a {
        line-height: 20px;
    }
    .singleblogSection {
        padding-top: 250px;
    }
    .award-onpage-section {
        padding-bottom: 0;
    }
    .gallery-wrapper a {
        width: 30%;
    }
    .initivies-cont a {
        margin-left: 0;
    }
    .initivies-cont {
        text-align: justify;
    }
    .inner-page-hero-section {
        padding: 0;
    }
    .agricltr-listwrpr .agricltr-box {
        margin-right: 12px;
    }
    .agricltr-box .img-cont-hldr {
        height: 300px;
    }
    .agricltr-listwrpr .agricltr-box:last-child {
        width: 31.5%;
        margin: 0 20px 38px 0;
    }
    .blogSection {
        padding-top: 265px;
    }
    .our-program-section {
        height: 392px;
    }
    .ongoing-sec {
        padding: 50px 0;
    }
    /* new history design */
    .history-new-wrp {
        flex-wrap: wrap;
    }
    .histry-card {
        width: 32%;
    }
    .history-new-wrp::after {
        display: none;
    }
    .histry-card .yr:after {
        display: none;
    }
    .histry-card .yr img {
        display: none;
    }
    .histry-card {
        width: 31.9%;
        background: #fff;
        margin: 5px;
        border-radius: 20px;
        box-shadow: 0 14px 18px -8px rgb(0 0 0 / 20%);
    }
    .histry-card .yr {
        height: auto;
        margin: 15px auto;
    }
    .histry-card:nth-last-of-type(odd) .yr {
        margin-top: 15px;
    }
    .histry-card .yr h5 {
        position: inherit;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        width: 100px;
        height: 100px;
        background: #e9e9e9;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        margin: 0 auto;
        line-height: 100px;
        color: #fff;
    }
    .histry-card:nth-last-of-type(odd) .yr h5 {
        top: auto;
        color: #fff;
    }
    .histry-card .details i img {
        max-width: 45px;
    }
    .histry-card:nth-last-of-type(odd) {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    .histry-card:nth-child(1) .yr h5 {
        background: #5dbec2;
    }
    .histry-card:nth-child(2) .yr h5 {
        background: #68c26b;
    }
    .histry-card:nth-child(3) .yr h5 {
        background: #a6579e;
    }
    .histry-card:nth-child(4) .yr h5 {
        background: #cf386a;
    }
    .histry-card:nth-child(5) .yr h5 {
        background: #e65656;
    }
    .histry-card:nth-child(6) .yr h5 {
        background: #6767bf;
    }
    .histry-card:nth-child(7) .yr h5 {
        background: #90c034;
    }
    .histry-card:nth-child(8) .yr h5 {
        background: #3f248d;
    }
    .histry-card:nth-child(9) .yr h5 {
        background: #910c5f;
    }
    .histry-card:nth-child(10) .yr h5 {
        background: #ffc600;
    }
    .histry-card .details p {
        font-size: 17px;
        padding: 0 10px;
        line-height: 22px;
    }
    .pop-content {
        max-width: 100%;
        height: 160px;
    }
    /* end history design */
    .all-address address {
        width: 39%;
        text-align: left;
    }
    .all-address address label{
        font-size: 14px;
    }
    .has-submenu>a:after {
        display: none;
    }
    
    .bnglcancard-wrpr .card{
        width: 46%;
    }
    .gbin-img .image-box>img {
        width: 100%;
        min-height: 131px;
        object-fit: cover;
    }
    .gbin-img .image-box {
        margin-bottom: 12px;
    }
    .all-address {
        width: 100%;
        padding-left: 0;
       
    }
}

@media (max-width:767px) {
    .phone-emil-trigger {
        display: inline-block;
        height: 45px;
        width: 45px;
        background: #f16a19;
        border-radius: 100%;
        text-align: center;
        line-height: 43px;
    }
    .vdo_row_box video {height: auto;}
    
    .phone-emil-trigger img {
        height: 25px;
    }
    .phone-emil-trigger span {
        display: none;
    }
    .left-links {
        position: relative;
    }
    .left-links ul {
        position: absolute;
        top: 129%;
        left: 0;
        background: #fff;
        z-index: 99;
        width: 250px;
        padding: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
        transform: translateY(30px);
        opacity: 0;
        pointer-events: none;
        transition: all 0.5s ease-in-out;
    }
    .left-links.ct-show ul {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .right-links .ht-quick-links li:last-child {
        padding-right: 0;
    }
    .left-links ul li .link a {
        font-size: 17px;
        color: #000;
    }
    .left-links ul li .icon img {
        filter: invert(100%);
    }
    .left-links.ct-show .phone-emil-trigger img {
        display: none;
    }
    .left-links.ct-show .phone-emil-trigger span {
        display: inline-block;
        font-size: 20px;
        color: #fff;
        font-weight: 700;
        height: 45px;
        line-height: 45px;
    }
    .header-top {
        padding: 5px 0;
    }
    .item-inner {
        height: 195px;
    }
    .theory-section {
        margin-top: 0;
        padding-bottom: 30px;
    }
    .theory-section:after {
        display: none;
    }
    .theory-inner {
        border-radius: 0;
        transform: translateY(0);
        background: #fff;
    }
    .hero-slider .owl-nav {
        padding: 0;
    }
    .hero-slider .owl-nav .owl-prev,
    .hero-slider .owl-nav .owl-next {
        margin: 0;
    }
    .hero-cont {
        bottom: auto;
        height: 100%;
        display: flex;
        align-items: center;
    }
    .hero-cont-inner {
        width: 90%;
        padding: 10px;
        margin: 0 auto;
    }
    .hero-cont-inner h2 {
        font-size: 20px;
        margin-bottom: 5px;
    }
    .hero-cont-inner h3 {
        font-size: 16px;
    }
    .hero-slider .owl-nav {
        top: 50%;
        transform: translateY(-50%);
    }
    .hero-slider .owl-nav button {
        height: 25px;
    }
    .right-links .ht-social {
        bottom: -65px;
    }
    .hero-slider .owl-nav button img {
        filter: invert(100%);
    }
    .sector-wrapper .sector-item {
        width: 100%;
    }
    .video-wrapper .text-holder p {
        font-size: 15px;
        line-height: 24px;
    }
    .video-wrapper .video-holder {
        width: 100%;
        margin: 60px 0 0 0;
    }
    .video-wrapper .video-holder .vdo-bg {
        left: -15px;
    }
    .video-wrapper .video-holder .vdo-bg img {
        width: 90%;
    }
    .about-wrapper .image-holder figure:nth-child(1) {
        width: 70%;
        height: 200px;
    }
    .about-wrapper .image-holder figure:nth-child(2) {
        padding-left: 0;
        width: 72%;
        height: 200px;
        margin-right: auto;
        margin-left: 0;
    }
    .about-wrapper .image-holder:after {
        height: calc(100% - 60px);
        width: calc(100% - 60px);
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    .section-heading h3 {
        font-size: 23px;
    }
    .theory-inner .cont-title {
        font-size: 20px;
        margin-bottom: 22px;
    }
    .about-wrapper .text-holder {
        padding-top: 20px;
    }
    .section-heading h3 {
        margin-bottom: 0;
    }
    .section-heading.no-p {
        margin-bottom: 15px;
    }
    .about-wrapper .text-holder p {
        font-size: 15px;
        line-height: 24px;
        text-align: justify;
    }
    .read-more-btn {
        height: 45px;
        line-height: 41px;
    }
    .history-milestn {
        width: calc(50% - 7px);
        padding: 7px;
        min-height: 185px;
    }
    .history-milestn .icon {
        height: 60px;
        width: 60px;
    }
    .history-milestn .icon img {
        max-width: 25px;
    }
    .history-milestn .icon:before {
        border: 5px solid #ddd
    }
    .history-milestn .content {
        max-width: 100%;
        margin-top: 0;
    }
    .history-milestn .content h3 {
        font-size: 20px;
    }
    .history-milestn .content p {
        font-size: 15px;
        font-weight: 500;
        line-height: 20px;
    }
    .history-year-wrpr.one {
        flex-direction: inherit;
        margin-bottom: 14px;
    }
    .history-year-wrpr.one .history-milestn:first-child {
        transform: translateY(107%);
        margin-top: 14px;
    }
    .history-year-wrpr.one .history-milestn:last-child {
        transform: translateY(-100%);
    }
    .history-year-wrpr.one .history-milestn:nth-child(2) {
        margin-top: 14px;
    }
    .history-year-wrpr:nth-child(2) .history-milestn:first-child {
        transform: translate(109%, -100%);
    }
    .history-year-wrpr.two .history-milestn:nth-child(2) {
        transform: translate(-109%, 14px);
    }
    .history-year-wrpr.two .history-milestn:last-child {
        transform: translate(109%, -93%);
    }
    .history-year-wrpr:last-child {
        flex-direction: inherit;
        transform: translate(0, -96%);
        justify-content: space-between;
    }
    .history-year-wrpr:last-child .history-milestn:last-child {
        margin-right: 0;
    }
    .history-sec {
        height: 955px;
        overflow: hidden;
    }
    .count-wrapper {
        margin: 0;
        justify-content: space-between;
    }
    .count-wrapper .count-box {
        width: calc(50% - 5px);
        padding: 15px 10px;
        margin-bottom: 10px;
        border: 1px solid #fff;
        border-radius: 10px;
    }
    .count-inner .numbers strong {
        margin-bottom: 5px;
    }
    .count-inner .numbers p {
        font-size: 15px;
        line-height: 20px;
    }
    .auto-count-section {
        padding-bottom: 30px;
    }
    .our-pgrm-holder {
        position: static;
        width: 100%;
        padding: 0 15px;
        margin-top: 30px;
    }
    .our-program-inner {
        height: 300px;
    }
    .our-program-section {
        padding: 40px 0;
        height: auto;
    }
    .our-program-wrapper {
        width: 100%;
        padding-right: 0;
        text-align: center;
    }
    .our-program-wrapper .section-heading.left-align {
        text-align: center;
    }
    .our-program .owl-nav {}
    .our-program .owl-nav button span {
        height: 35px;
        width: 35px;
        line-height: 35px;
        font-size: 18px;
    }
    .success-story-wrapper .image-holder {
        width: 100%;
        padding-right: 0;
    }
    .success-story-wrapper .text-holder {
        width: 100%;
        margin-top: 20px;
    }
    .success-story-wrapper .image-holder figure {
        height: 250px;
        width: 250px;
        margin: 0 auto;
    }
    .success-story-wrapper .text-holder:before {
        top: -10px;
        left: 0;
    }
    .success-story-wrapper .text-holder p {
        margin-bottom: 15px;
        line-height: 22px;
        font-weight: normal;
    }
    .success-stories .owl-nav {
        padding-left: 0;
        text-align: center;
        margin-top: 20px;
    }
    .award-wrapper .award-box {
        width: 100%;
        margin-bottom: 25px;
    }
    .award-section {
        padding-bottom: 15px;
    }
    .latest-blogs {
        position: static;
        width: 100%;
        padding: 40px 15px;
        margin-top: 40px;
        max-width: 100%;
    }
    .news-blog-section {
        padding: 40px 0 0 0;
        height: auto;
    }
    .news-blog-section .section-heading h3 {
        font-size: 26px;
    }
    .news-wrapper {
        padding-right: 30px;
    }
    .news-wrapper .section-heading {
        text-align: center;
    }
    .news-wrapper p {
        text-align: center;
    }
    .tnp-subscription {
        margin-bottom: 0 !important;
    }
    .submit-input {
        text-align: center;
    }
    .news-blog-section .left-object {
        display: none;
    }
    .latest-blog-slider .owl-nav {
        position: static;
        text-align: center;
        margin-top: 20px;
    }
    .latest-blog-slider .owl-nav button span {
        height: 35px;
        line-height: 35px;
        font-size: 20px;
        width: 35px;
    }
    .testimoni-slider .item {
        padding: 0;
    }
    .testimoni-slider span.nm {
        font-size: 20px;
    }
    .testimoni-slider span.desg {
        font-size: 16px;
    }
    .testimoni-slider p {
        line-height: 22px;
    }
    .testimonials {
        padding: 30px 0;
    }
    .top-header h2.titleh2 {
        font-size: 25px;
    }
    .upcoming-section .row .col {
        margin-bottom: 30px;
    }
    .upcoming-section .row .col:last-child {
        margin: 0;
    }
    .upcoming-eve span {
        margin-bottom: 5px;
        font-size: 17px;
        line-height: 24px;
    }
    .footer-contacts .footer-contact-box {
        width: 100%;
        margin-bottom: 15px;
    }
    .footer-contacts .footer-contact-box:last-child {
        margin-bottom: 0;
    }
    .footer-contacts .footer-contact-box figure {
        height: 45px;
        width: 45px;
    }
    
    .footer-contact-box .call-nos,
    .footer-contact-box a.email {
        width: calc(100% - 55px);
        margin-left: 10px;
        text-align: left
    }
    .footer-contact-box address{
        width: 30%;
    } 
    .footer-contact-holdr {
        padding: 30px 0;
    }
    .copy-right-socials {
        flex-wrap: wrap;
    }
    .copy-right-socials p {
        width: 100%;
        line-height: 20px;
        text-align: center;
    }
    .copy-right-socials ul {
        justify-content: center;
        margin-top: 15px;
        width: 100%;
    }
    .our-story-section .section-shape {
        top: -84px;
        height: 84px;
        overflow: hidden;
    }
    .our-story-section .section-shape.contact-shep {
        top: -70px;
    }
    .our-story-section {
        margin-top: 0;
        padding-top: 0;
    }
    .our-story-wrapper .image-holder {
        width: calc(100% + 10px);
        margin: 0 -5px;
    }
    .our-story-wrapper .image-holder figure {
        padding: 0 5px;
    }
    .history-sec {
        padding: 40px 0 10px 0;
    }
    .abtorg-wrapper .image-holder figure {
        right: -30px;
        max-width: 150px
    }
    .about-org-section .section-lft-object img {
        width: 100%;
    }
    .abtorg-wrapper .image-holder {
        margin: 0 auto;
    }
    .abtorg-wrapper .text-holder {
        width: 100%;
        padding-left: 0;
        margin-top: 25px;
    }
    .about-org-section .section-lft-object img:last-child {
        display: none;
    }
    .abtorg-wrapper .text-holder .section-heading h3 {
        font-size: 25px;
    }
    .abtorg-wrapper .text-holder ul li .icon img {
        max-width: 50px;
    }
    .abtorg-wrapper .text-holder ul li .icon {
        width: 75px;
    }
    .abtorg-wrapper .text-holder ul li .text {
        width: calc(100% - 75px);
    }
    .about-org-section {
        padding: 40px 0;
    }
    .contact-wrapper .contact-form {
        width: 100%;
        padding: 0;
    }
    .contact-info {
        width: 100%;
        margin-top: 25px;
    }
    .contact-form h3 {
        font-size: 30px;
        margin-bottom: 20px;
    }
    .contact-page-section .breadcrumb-holder,
    .breadcrumb-holder {
        background: #feefe7;
        padding: 5px 0;
    }
    .contact-form .form-inline .form-group {
        width: 100%;
    }
    .submit-btn-wrapper {
        text-align: center;
    }
    .team-card {
        width: 50%;
        margin-bottom: 10px;
        min-height: 1px;
    }
    .team-card .team-card-inner {
        padding: 10px;
        min-height: 256px;
    }
    .team-card figure {
        height: 120px;
        transform: translateY(0);
    }
    .team-card figure img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
    }
    .team-card .content-hldr {
        margin-top: 0;
    }
    .team-card h4 {
        font-size: 16px;
        font-weight: 500;
    }
    .team-card span {
        font-size: 14px;
        line-height: 17px;
    }
    .team-wrpr {
        align-items: stretch;
        margin: 0;
    }
    .inner-page-hero-section {
        height: 165px;
        background: #ddd;
    }
    .section-heading.teamheading {
        margin-bottom: 24px;
    }
    .section-heading {
        max-width: 100%;
    }
    .workcard {
        width: 100%;
        margin: 0;
    }
    .breadcrumb-holder .breadcrumb-item.active {
        font-weight: 500;
    }
    .agreecltr-sec .section-heading p {
        text-align: justify;
    }
    .agricltr-box .img-cont-hldr {
        height: 195px;
    }
    .agricltr-box,
    .agricltr-box:last-child {
        width: 46%;
        margin: 5px 5px 15px 5px;
    }
    .agricltr-box .img-cont-hldr h4 {
        font-size: 15px;
    }
    .agricltr-box .workdtls-btn {
        width: 30px;
        height: 30px;
        font-weight: bold;
        font-size: 18px;
        bottom: auto;
        top: -1px;
        right: -1px;
    }
    .agricltr-box .img-cont-hldr h4 {
        bottom: 2px;
    }
    .agricltr-listwrpr {
        margin: 25px 0 0 0;
    }
    .agreecltr-sec {
        padding-bottom: 30px;
    }
    .ongoing-sec {
        padding: 30px 0;
    }
    .ongoingprjct-accrdn .accordion-item button {
        font-size: 15px;
        line-height: 22px;
    }
    .ongoingprjct-accrdn .accordion-button::after {
        width: 25px;
        height: 25px;
        line-height: 25px;
        top: 20px;
        right: 9px;
    }
    .ongoingprjct-accrdn .accordion-button.collapsed::after {
        line-height: 27px;
    }
    .ongoingprjct-accrdn .accordion-body p {
        font-size: 16px;
        line-height: 23px;
    }
    .event-item {
        justify-content: center;
        margin-bottom: 32px;
    }
    .event-item .event-text {
        width: 100%;
        padding: 15px 12px 0 0;
        text-align: center;
    }
    .pagination-holder {
        padding-bottom: 0;
    }
    .our-story-section.contact-page-section {
        padding-bottom: 40px;
    }
    /*RESEARCH REPORT*/
    .research-report-heading {
        margin-bottom: 20px !important;
    }
    .research-report-tabs {
        margin: 0 -5px 20px -5px;
    }
    .research-report-tabs .nav-item {
        padding: 0 5px;
        width: 100%;
    }
    .research-report-tabs .nav-link {
        font-size: 15px;
        padding: 3px 7px;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
    }
    .research-report-tabs .nav-link br {
        display: none;
    }
    .research-report-wrapper .research-report-item {
        width: 100%;
    }
    .research-report-item-inner .report-text {
        bottom: 30px;
        padding: 7px 90px 7px 15px;
    }
    .research-report-item-inner .download-pdf {
        right: 15px;
    }
    .research-report-wrapper .research-report-item {
        margin-bottom: 20px !important;
    }
    .research-report-wrapper .research-report-item:nth-last-child(-n+1) {
        margin-bottom: 0 !important;
    }
    /*RESEARCH REPORT*/
    .our-story-section.contact-page-section.str-report-section {
        padding-bottom: 30px;
    }
    .str-report-section:after {
        height: 200px;
    }
    .str-report-cont {
        height: auto;
    }
    .str-report-cont .left-image {
        display: none;
    }
    .str-report-box a {
        font-size: 18px;
    }
    .str-reports .owl-nav {
        position: static;
        justify-content: center;
        margin-top: 20px;
    }
    .str-reports .owl-nav button span {
        height: 35px;
        width: 35px;
        line-height: 33px;
        font-size: 18px;
    }
    .str-report-box figure {
        height: 390px;
    }
    .our-program-wrapper .section-heading h3 {
        font-size: 23px;
    }
    .video-txtbox {
        bottom: auto;
        top: 0;
    }
    .video-txtbox,
    .video-txtbox:before {
        height: 50px;
    }
    .our-video-section {
        padding-bottom: 40px;
    }
    .pop-content {
        width: 100%;
        height: 100%;
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        top: 0;
        padding: 15px 5px;
    }
    .page-id-267 .tnp-subscription div.tnp-field {
        width: 70%;
    }
    .page-id-267 .tnp-subscription div.tnp-field.tnp-field-button {
        width: 28%;
    }
    .page-id-267 .tnp-subscription {
        margin-top: 18px;
    }
    .wpcf7-spinner {
        display: none;
    }
    .news-form .tnp-subscription input.tnp-submit {
        width: auto;
        margin: 0 auto;
    }
    .blogContentSec img {
        height: auto !important;
    }
    .blogSection h4 {
        font-size: 16px;
        line-height: 22px;
    }
    .blogContentSec {
        margin-bottom: 30px;
    }
    .blogSidePanel {
        position: inherit;
        top: auto;
        margin-top: 42px;
    }
    .our-story-section.contact-page-section.singleblogSection {
        padding-top: 165px;
    }
    .singleblogSection h4 {
        color: #f26f21;
        font-size: 16px;
        line-height: 24px;
    }
    .singleblogSection .post-categories li {
        padding-left: 0;
    }
    .blog-content blockquote {
        margin: 0 0 10px 0;
    }
    .singleblogSection p img {
        float: none;
        margin: 0 0 10px 0;
        width: 100%;
    }
    .blogSidePanel aside {
        margin-bottom: 10px;
    }
    .eventcontent img {
        width: 100%;
        height: auto;
        margin: 0 0 10px 0;
    }
    .award-section.award-onpage-section {
        padding-bottom: 0;
    }
    .our-partner-onpage-section .our-partner-list .item {
        width: 46%;
    }
    .gallery-wrapper a {
        width: 47%;
        margin: 5px;
    }
    .gallery-wrapper a img {
        height: 125px;
    }
    .gallery-wrapper a {
        padding: 8px;
        height: 152px;
        margin-bottom: 20px;
    }
    .gallery-wrapper a p {
        font-size: 15px;
        font-weight: 500;
        padding: 5px 12px;
        margin-top: -7px;
        line-height: 22px;
    }
    .initivies-cont {
        line-height: 22px;
    }
    .initivies-wrpr {
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .initivies-wrpr .itemm {
        margin: 0 0 10px 0 !important;
        width: calc(50% - 5px);
        border: 1px solid #ddd;
        padding: 7px;
    }
    .initivies-wrpr .itemm.active {
        border-color: #f16a19;
    }
    .inner-page-hero-section {
        padding: 0;
    }
    .agricltr-listwrpr .agricltr-box,
    .agricltr-listwrpr .agricltr-box:last-child {
        width: 46%;
        margin: 0 5px 10px;
    }
    .blogSection {
        padding-top: 170px;
    }
    .inotiavtiveModal-modal .modal-header .btn-close {
        right: 0;
    }
    .inotiavtive-cont p {
        font-size: 15px;
        line-height: 24px;
    }
    .ongoing-sec {
        padding: 40px 0;
    }
    .our-story-section.contact-page-section.str-report-section {
        padding: 40px 0;
    }
    .str-report-cont .our-pgrm-holder {
        margin-top: 0;
        padding: 0 15px;
    }
    /* new history design */
    .histry-card {
        width: 48%;
        margin: 2px;
    }
    .history-sec {
        height: auto;
        overflow: auto;
        padding-bottom: 50px;
    }
    .histry-card .details p {
        font-size: 16px;
        line-height: 18px;
        height: 60px;
        margin: 0 0 10px 0;
    }
    .histry-card {
        display: flex;
        flex-wrap: wrap;
    }
    .histry-card:nth-last-of-type(odd) {
        align-items: flex-end;
    }
    .histry-card:nth-last-of-type(odd) .yr {
        margin-top: 0;
    }
    .pop-content {
        height: auto;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
    }
    .count-inner figure {
        margin: 0 0 10px 0;
    }
    .history-new-wrp {
        margin: 30px 0 0 0;
    }
    .all-address {
        width: 100%;
    }
    .footer-contacts .footer-contact-box figure {
        margin-right: 9px;
        margin-bottom: 0px;
    }
    .footer-contact-box .call-nos,
    .footer-contact-box a.email {
        width: calc(100% - 56px);
        margin-left: 0;
    }
    .footer-contact-box.footer-content-address {
        margin: 0 0 20px 0;
    }
    /* end new history */
    
    .bnglcancard-wrpr h3 {
        font-size: 20px;
        margin: 0 0 15px 0;
            
        }
        
    .bnglcancard-wrpr .card,
    .bnglcancard-wrpr .card:last-child{
        width: 100%;
        margin: 0 0 15px 0;
    }
    
    .bnglcancard-wrpr .card h4 {
        font-size: 17px;
        margin:0 0 0px 0;
    }
    .keylist {
        max-width: 100%;
    }
    
    .keylist li{
        flex-wrap:wrap;
        justify-content:center;
    }
    .keylist li i {
        margin: 0 0 15px 0;
    }
    .keylist li p {
        font-size: 15px;
        line-height: 21px;
        width:100%;
        text-align:center;
    }
    button.btn-close{
        right: 1px;
        top: 1px;
    }
    .modal .form-group input, .modal .form-group select{
        height: 46px;
    }
    .modal .form-group {
        margin-bottom: 9px;
        
    }
    .footer-contacts .footer-contact-box{
        display: flex;
        align-items: center;
    }
}