:root {
    --themecolor1: #111a45;
    --themecolor2: #fe5000;
    --font-google: "Google Sans";
    --font-gotham: "Gotham";
    --font-gotham-narrow: "Gotham Narrow";
    --bg-gradient: linear-gradient(to left, #fe5000, #dc144d);
    --bg-gradient2: linear-gradient(to top, #EFEFEF, #F8F8F8);
    --text-colordark: #333333;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: "Google Sans";
    src: url("../fonts/GoogleSans-Regular.woff2") format("woff2"),
        url("../fonts/GoogleSans-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Google Sans";
    src: url("../fonts/GoogleSans-Medium.woff2") format("woff2"), url("../fonts/GoogleSans-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Google Sans";
    src: url("../fonts/GoogleSans-Bold.woff2") format("woff2"), url("../fonts/GoogleSans-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: "Gotham Narrow";
    src: url("../fonts/GothamNarrow-Bold.woff2") format("woff2"), url("../fonts/GothamNarrow-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Gotham";
    src: url("../fonts/Gotham-Medium.woff2") format("woff2"), url("../fonts/Gotham-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
}
a {
    text-decoration: none;
}
ul {
    padding: 0;
    margin: 0;
}
li {
    list-style: none;
}
.form-control:focus,
.form-select:focus {
    box-shadow: none;
}
body {
    background: #fff;
    overflow-x: hidden;
}
.midGap1 {
    padding: 60px 0;
}
.midGap2 {
    margin: 60px 0;
}
.themeBtn {
    background-image: linear-gradient(to right, #dc144d 0%, #fe5000 51%, #dc144d 100%) !important;
    background-size: 200% auto;
    padding: 10px 13px;
    border-radius: 3px;
    color: #fff;
    text-transform: uppercase;
    font-family: var(--font-gotham-narrow);
    font-size: 20px;
    display: inline-flex;
    align-self: center;
    flex-shrink: 0;
    transition: all 0.3s ease-in;
    font-weight:600;
}
.themeBtn:hover {
    background-position: right center;
    color: #fff;
}
.mainHeading{
    color: var(--themecolor1);
    font-size: 30px;
    font-family: var(--font-gotham-narrow);
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

p{
    color: var(--text-colordark);
    font-family: var(--font-google);
    font-size: 16px;
    font-weight: normal;
    line-height: 28px;
}
p.p-bold{
    color: var(--text-colordark);
    font-family: var(--font-google);
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
}
.f-18{
    font-size: 18px;
}
/*========= Header =========*/

header {
    position: sticky;
    top:0;
    z-index: 9;
    background: #fff;
}
header .top-line {
    background: var(--bg-gradient);
    height: 8px;
}

header .navbar {
    padding: 10px 5px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.16)
}

header .navbar .navbar-brand img {
    width: 200px;
    height: auto;
}
header .navbar-expand-md .navbar-nav .nav-item {
    margin: 0 14px;
}
header .navbar-expand-md .navbar-nav .nav-item:last-child {
    margin-right: 0;
}
header .navbar-expand-md .navbar-nav .nav-link {
    font-family: var(--font-google);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-colordark);
    padding: 25px 0;
    position: relative;
    transition: all 0.3s ease-in;
}
header .navbar-expand-md .navbar-nav .nav-link:hover,
header .navbar-expand-md .navbar-nav .nav-link.active {
    color: var(--themecolor2);
}
header .navbar-expand-md .navbar-nav .nav-link:after {
    content: "";
    background: var(--themecolor2);
    height: 3px;
    width: 0;
    position: absolute;
    bottom: -10px;
    left: 0;
    transition: all 0.3s ease-in;
}
header .navbar-expand-md .navbar-nav .nav-link:hover:after,
header .navbar-expand-md .navbar-nav .nav-link.active:after {
    width: 100%;
}
header .navbar-toggler {
    padding: 0;
    z-index: 99;
}
header .navbar-toggler .navbar-toggler-icon {
    width: 28px;
    display: block;
    height: 2px;
    background-color: var(--themecolor2);
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}
header .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}
header .navbar-toggler .navbar-toggler-icon + .navbar-toggler-icon {
    margin-top: 6px;
}
header .navbar-toggler .navbar-toggler-icon:nth-of-type(1) {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}
header .navbar-toggler .navbar-toggler-icon:nth-of-type(2) {
    opacity: 1;
    filter: alpha(opacity=100);
    width: 20px;
    margin-left: auto;
}
header .navbar-toggler .navbar-toggler-icon:nth-of-type(3) {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}
header .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-of-type(1) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: 10% 10%;
    -ms-transform-origin: 10% 10%;
    transform-origin: 10% 10%;
    width: 20px;
}
header .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-of-type(2) {
    opacity: 0;
    filter: alpha(opacity=0);
}
header .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-of-type(3) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: -20% 0;
    -ms-transform-origin: -20% 0;
    transform-origin: -20% 0;
    width: 20px;
}
header .navbar .nav-item .dropdown-menu {
    background: #fff;
    text-align: left;
    min-width: 200px;
    border: none;
    border-radius: 0;
    padding: 10px 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
    border-top: 5px solid var(--themecolor2);
}
header .navbar .nav-item .dropdown-menu .drop-item {
    color: #0d101e;
    font-family: var(--font-google);
    font-size: 18px;
    font-weight: 600;
    padding: 0;
    transition: all 0.3s ease-in;
    display: block;
    position: relative;
    line-height: 45px;
}
header .navbar .nav-item .dropdown-menu .drop-item:hover,
header .navbar .nav-item .dropdown-menu .drop-item.active {
    color: var(--themecolor2);
}
header a.joinBtn {
    text-decoration: none;
}
header .join-form.dropdown-menu {
    padding: 15px;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.18);
    min-width: 300px;
    transform: translateY(20px);
}
header .join-form h4 {
    font-family: var(--font-gotham-narrow);
    color: #000;
    font-size: 20px;
    margin-bottom: 15px;
}
header .join-form .form-control {
    font-family: var(--font-google);
    font-weight: normal;
    font-size: 14px;
    color: var(--text-colordark);
    border-radius: 3px;
    border: 1px solid #d5d5d5;
    height: 44px;
}

header .join-form.dropdown-menu:before,
header .join-form.dropdown-menu:after {
    content: "";
    height: 20px;
    width: 20px;
    position: absolute;
    top: 0;
    right: 20px;
    transform: translate(-50%, -50%) rotate(45deg);
    background: #fff;
    box-shadow: -3px -3px 5px rgba(0, 0, 0, 0.03);
}
header .join-form.dropdown-menu:after {
    z-index: -1;
    background: #d5d5d5;
    top: -1px;
}
header .socialLink {
    display: flex;
    align-items: center;
}
header .socialLink a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-gradient);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-left: 15px;
    transition: all 0.3s ease-in;
}
header .socialLink a:hover {
    background: var(--themecolor2);
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.18);
}

}
/*========= Header =========*/


/*========= Banner =========*/

.banner{
    position: relative;
}
.banner .carousel-item img{
    width: 100%;
    height: auto;
}
.banner .carousel-control-next, .banner .carousel-control-prev{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    margin: 0 15px;
    top: 50%;
    opacity: 1;
    transition: all 0.3s ease-in;
}
.banner .carousel-control-next:hover, .banner .carousel-control-prev:hover{
    background: var(--themecolor2);
}
.banner .carousel-control-next:hover img, .banner .carousel-control-prev:hover img{
    filter: brightness(0) invert(1);
}


.bannerinner{
    position: relative;
}
.bannerinner .carousel-item img{
    width: 100%;
    height: 350px;
}
.bannerinner .carousel-control-next, .bannerinner .carousel-control-prev{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    margin: 0 15px;
    top: 50%;
    opacity: 1;
    transition: all 0.3s ease-in;
}
.bannerinner .carousel-control-next:hover, .bannerinner .carousel-control-prev:hover{
    background: var(--themecolor2);
}
.bannerinner .carousel-control-next:hover img, .bannerinner .carousel-control-prev:hover img{
    filter: brightness(0) invert(1);
}
/*========= Banner =========*/

/*=========Slider Banner and Videos=========*/
	.textoverlay {
    position: absolute;
    right: 0;
    bottom: 9px;
    z-index: 1;
    background: rgba(0,0,0, 0.9);
    padding: 10px 15px;
   
}

.textoverlay a {
    color: #fff;
    font-size: 19px;
}
.textoverlay.left-0 {
    left: 0;
    right: auto;
    bottom: 15px;
}

/*========= About Section =========*/

.aboutSec img{
    max-width: 70%;
    height: auto;
    /*margin-top: -190px;*/
    z-index: 1;
    position: relative;
margin-bottom: 80px;
    border-top: 10px solid #f47216;
    border-right: 10px solid #f47216;
}
.aboutSec .themeBtn{
    padding: 10px 20px;
}
.abouttag
{
text-align:center; 
line-height: 1.5; 
font-size: 32px; 
font-weight: 600; 
letter-spacing: 0px; 
margin-bottom:50px;
}
/*========= About Section =========*/


/*========= Politics Section =========*/
.politicsTab{
    position: relative;
}
.politicsTab .nav-tabs{
    border-bottom: none;
}
.politicsTab .nav-tabs .nav-link{
    color: var(--text-colordark);
    font-size: 16px;
    font-family: var(--font-gotham-narrow);
    padding: 10px 20px;
    margin: 0 0px 0 0;
    border: 1px solid #E1E1E1;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    min-width: 150px;
}
.politicsTab .nav-tabs .nav-link.active{
    background: var(--themecolor1);
    color: #fff;
    border: 1px solid var(--themecolor1);
    border-bottom: none;
}
.politics{
    background: var(--themecolor1);
}
.politics .mainHeading{
    color: #fff;
}
.politics p{
    color: #fff;
}
.politicsTab .politics img{
   width: 100%;
   height: auto;
   margin-bottom: 10px;
}
/*========= Politics Section =========*/


/*========= Programs Section =========*/

.programs{
    position: relative;
}
.programs .programBlock{
   background: #fff;
   border: 1px solid #D7D7D7;
   box-shadow: 0 0px 8px rgba(0, 0, 0, 0.09);
   transition: all 0.3s ease-in;
   margin-top: 10px;
   height: calc(100% - 10px);
   position: relative;
   display: flex;
   flex-direction: column;
}
.programs .programBlock:hover{
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.16);
}
.programs .programBlock .programImg{
    overflow: hidden;
}
.programs .programBlock .programImg img{
    width: 100%;
    height: auto;
    transition: all 0.5s ease-in;
}
.programs .programBlock .programImg:hover img{
    transform:scale(1.2);
}

.programs .programBlock .programDetail{
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}
.programs .programBlock .programDetail h5{
    color: var(--themecolor2);
    font-size: 20px;
    font-family: var(--font-google);
    font-weight: bold;
}

/*========= Programs Section =========*/



/*========= News Section =========*/

.news{
    background: var(--bg-gradient2);
}
.news .newsBlock{
    background: #fff;
    padding: 20px;
    border: 1px solid #D7D7D7;
    box-shadow: 0 0px 8px rgba(0, 0, 0, 0.09);
    transition: all 0.3s ease-in;
    margin-top: 10px;
	height:calc(100% - 0px);
 }
 .news .newsBlock:hover{
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.16);
 }
 .news .newsBlock .newsImg{
     overflow: hidden;
 }
 .news .newsBlock .newsImg img{
     width: 100%;
    /*height: auto;*/
     transition: all 0.5s ease-in;
     height:450px;
 }
 .news .newsBlock .newsImg iframe{
     width: 100%;
     height: 300px;
     object-fit: cover;
 }
 .news .newsBlock .newsImg:hover img{
     transform:scale(1.2);
 }
 
 .news .newsBlock .newsDetail{
     padding: 20px 0 0px;
     text-align: center;
 }
 .news .newsBlock .newsDetail h5{
     color: var(--text-colordark);
     font-size: 20px;
     font-family: var(--font-google);
     font-weight: bold;
 }
 .news.bg-white{
     background: #fff;
 }
.pagination{
    justify-content: center;
    margin: 10px 0 0;
}
.pagination a {
    border-radius: 4px !important;
    border: 1px solid #E8E9EC;
    color: #82838D;
    font-size: 16px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    transition: all 0.3s ease-in;
}
.pagination li.active a,
.pagination li:hover a{
    background: var(--bg-gradient);
    border: transparent;
    color: #fff;
}
.pagination li.active a img,
.pagination li:hover a img{
    filter: brightness(0) invert(1);
}
.pagination .moreLink a{
    border: none;
}
.pagination span{
    background: #E8E9EC;
    border-radius: 4px !important;
    border: 1px solid #E8E9EC;
    color: #82838D;
    font-size: 18px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    transition: all 0.3s ease-in;
}
.pagination .next a, .pagination .prev a, .pagination .prev span{
    font-size: 22px;
    line-height: 28px;
    align-items: self-start;
}
/*========= News Section =========*/



/*========= Photo Gallery Section =========*/

.gallery{
    position: relative;
}
.gallery #selector1{
    position: relative;
}
.gallery #selector1 .gal-img{
    width: 100%;
    height: auto;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.16);
}
.galleryTabs{
    position: relative;
}
.galleryTabs .nav-pills{
    position: relative;
    margin-bottom: 20px;
}
.galleryTabs .nav-pills .nav-link{
    background: #fff;
    border: 1px solid #CECECE;
    border-radius: 3px;
    padding: 10px 15px;
    margin-right: 10px;
    font-family: var(--font-gotham-narrow);
    color: var(--text-colordark);
    font-size: 16px;
    position: relative;
    transition: all 0.3s ease-in;
    min-width: 150px;
}
.galleryTabs .nav-pills .nav-link.active, .galleryTabs .nav-pills .nav-link:hover{
    background: var(--bg-gradient);
    color: #fff;
    border: 1px solid transparent;
}
.galleryTabs .nav-pills .nav-link.active:after, .galleryTabs .nav-pills .nav-link:hover:after {
    content: url(../images/angle.svg);
    width: 25px;
    height: 6px;
    position: absolute;
    bottom: 0;
    transform: translateX(-50%);
    left: 50%;
}
.galleryTabs .tab-content .galitem .albumBlock{
    background: #fff;
    box-shadow: 0 0px 8px rgba(0, 0, 0, 0.09);
}
.galleryTabs .tab-content .galitem img{
    width: 100%;
    height: auto;
}
.galleryTabs .tab-content .galitem .album_title{
    border: 1px solid #D7D7D7;
    border-top: none;
    padding: 20px;
}
.galleryTabs .tab-content .galitem .album_title h5{
    text-align: center;
    color: var(--text-colordark);
    font-size: 16px;
    font-family: var(--font-google);
    font-weight: bold;
}
.galleryTabs .tab-content .galitem .albumBlock{
    background: #fff;
    cursor: pointer;
    box-shadow: 0 0px 8px rgba(0, 0, 0, 0.09);
}
.galleryTabs .tab-content .galitem img{
    width: 100%;
    height: auto;
}
.galleryTabs .tab-content .galitem .album_title{
    border: 1px solid #D7D7D7;
    border-top: none;
    padding: 20px;
}
.galleryTabs .tab-content .galitem .album_title h5{
    text-align: center;
    color: var(--text-colordark);
    font-size: 16px;
    font-family: var(--font-google);
    font-weight: bold;
}

/*========= Photo Gallery Section =========*/


/*========= Video Gallery Section =========*/

.v-gallery{
    position: relative;
    background: var(--bg-gradient2);
}
.v-gallery #gallery-videojs-demo{
    position: relative;
}
.v-gallery #gallery-videojs-demo .v-poster{
    width: 100%;
    height: auto;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.16);
}
.v-gallery #gallery-videojs-demo a{
    position: relative;
}
.v-gallery #gallery-videojs-demo a span.playBtn{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 9;
    background: #fff;
    box-shadow: 0 3px 16px rgba(255, 255, 255, 1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--themecolor2);
    font-size: 30px;
    cursor: pointer;
}
.v-gallery iframe{
    width: 100%;
    object-fit:cover;
    aspect-ratio:16/9;
}
/*========= Video Gallery Section =========*/


/*========= Subscribe Section  =========*/

.subscribe{
    background: var(--themecolor1);
}
.subscribe .bg-white{
    border-radius: 5px;
    padding: 25px;
}
.subscribe .bg-white img{
    width: 100%;
    height: auto;
}
.subscribe .bg-white h4{
    color: var(--text-colordark);
    font-family: var(--font-gotham-narrow);
    font-size: 18px;
    text-transform: capitalize;
    margin-bottom:10px;
}
.subscribe .bg-white .form-control{
    border-radius: 5px;
    height: 46px;
    border: 1px solid #CECECE;
    font-family: var(--font-google);
    font-weight: normal;
    font-size: 14px;
    color: var(--text-colordark);
}
.subscribe .bg-white .input-group .form-control:first-child{
    width: 50px;
    flex: 0 0 auto;
}

/*========= Subscribe Section  =========*/



/*========= Social Media  =========*/

.socialMedia{
    position: relative;
}
.socialMedia .mediaBox{
    background: #fff;
    padding: 15px 10px;
    border: 1px solid #D7D7D7;
    box-shadow: 0 0px 8px rgba(0, 0, 0, 0.09);
    transition: all 0.3s ease-in;
    overflow: hidden;
}
.socialMedia .mediaBox:hover{
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.16);
 }
 .socialMedia .mediaBox img{
    width: 100%;
    height: auto;
    transition: all 0.5s ease-in;
}
.socialMedia h4{
    color: var(--themecolor1);
    font-family: var(--font-gotham-narrow);
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
/*========= Social Media  =========*/


/*========= Footer =========*/

footer{
    background: #F2F2F2;
}
footer h4{
    color: var(--themecolor1);
    font-family: var(--font-gotham-narrow);
    font-size: 24px;
    text-transform: capitalize;
    margin-bottom: 15px;
}
footer .messageForm{
    background: #fff;
    padding: 25px;
    border: 1px solid #D5D5D5;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    transition: all 0.3s ease-in; 
}
footer .messageForm .form-group{
    margin-bottom: 20px;
}
footer .messageForm .form-control{
    font-family: var(--font-google);
    font-weight: normal;
    font-size: 14px;
    color: var(--text-colordark);
    border-radius: 0;
    border: 1px solid #d5d5d5;
    height: 44px;  
}
footer .messageForm textarea.form-control{
    resize: none;
    height: 100px;
}
footer .contactInfo{
    border-bottom: 1px solid #C2C2C2;
    margin-bottom: 20px;
    padding-bottom: 20px;
}
footer .contactInfo ul{
    position: relative;
}
footer .contactInfo ul li{
    display: flex;
    align-items: flex-start;
}
footer .contactInfo ul li+li{
    margin-top: 20px;
}
footer .contactInfo ul li .icon{
    background: #fff;
    border: 1px solid var(--themecolor2);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 3px;
    margin-right: 15px;
}
footer .contactInfo ul li .contactText{
    font-size: 16px;
    font-family: var(--font-google);
    font-weight: 500;
    color: var(--text-colordark);
}
footer .contactInfo ul li .contactText span{
    display: block;
    font-weight: normal;
}
footer .socialLink {
    display: flex;
    align-items: center;
}
footer .socialLink a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-gradient);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-right: 15px;
    transition: all 0.3s ease-in;
}
footer .socialLink a:hover {
    background: var(--themecolor2);
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.18);
}
footer .footerLink{
    border-top: 1px solid #B7B7B7;  
    padding: 20px 0;
    text-align: center;
}
footer .footerLink ol{
    justify-content: center;
}
footer .footerLink p{
    margin: 0;
    font-size: 14px;
    color:var(--text-colordark);
}

footer .breadcrumb-item a{
    font-family: var(--font-google);
    font-weight: normal;
    font-size: 14px;
    color: var(--text-colordark);
    text-transform: capitalize;
    transition: all 0.3s ease-in;
}
footer .breadcrumb-item a:hover, footer .breadcrumb-item a.active{
    color: var(--themecolor2);
}
footer .breadcrumb-item+.breadcrumb-item::before{
    content: "|";
    color: var(--text-colordark);
    font-size: 14px;
}
/*========= Footer =========*/



/*============== About Me ===============*/

.topHeading{
    background: var(--themecolor1);
	position:relative;
}

.heading2{
    color: var(--themecolor1);
    font-size: 30px;
    font-family: var(--font-gotham-narrow);
    text-transform: capitalize;
    margin-bottom: 15px;
}
.commonBlock{
    position: relative;
}
.aboutMe{
    border: 1px solid #DEDEDE;
    border-radius: 5px;
}
.aboutMe .profile{
    padding: 25px;
    border-bottom: 1px solid #DEDEDE;
    display: flex;
    align-items: center;
}
.aboutMe .profile .profilePik{
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 20px;
}
.aboutMe .profile .profilePik img{
    width: 100%;
    height: auto;
}
.aboutMe .profile h4{
    color: var(--themecolor2);
    font-size: 34px;
    font-family: var(--font-gotham-narrow);
    text-transform: capitalize;
    margin-bottom: 2px;
}
.aboutMe .profile h5{
    color: var(--themecolor1);
    font-size: 22px;
    font-family: var(--font-google);
    text-transform: capitalize;
    line-height: 26px;
}
.aboutMe .profile h5 span{
    display: block;
    font-size: 16px;
}

.infoList{
    padding: 25px;
    margin-left: 0;
    position: relative;
}
.infoList li:after {
    content: "";
    background: #000;
    width: 3px;
    height: 100%;
    position: absolute;
    top: 12px;
    left: 0;
}
.infoList li:last-child:after {
   background: transparent;
}
.infoList li{
    padding-left:70px;
    position: relative;
}
.infoList li:before {
    content: url(../images/listImg.svg);
    position: absolute;
    top: -2px;
    left: 0;
}
.infoList li+li{
    padding-top:0;
}
.infoList li h6{
    color: var(--themecolor1);
    font-size: 20px;
    font-family: var(--font-gotham-narrow);
    text-transform: capitalize;
    margin-bottom: 8px;
}
.infoList li p{
    margin-bottom: 0;
    padding-bottom: 15px;
}
.infoList li:last-child p {
   padding: 0;
 }


/*============== About Me ===============*/


/*==============  Awareness Programs ===============*/

.videoSection{
    position: relative;
    margin: 20px 0;
}
.videoSection iframe{
    width: 100%;
    height: 450px;
}
.videoSection .programImg img{
    height:auto;
    width: 100%;
}


/*==============  Awareness Programs ===============*/



/*==============  Speeches ===============*/

.selectBy{
    width: 150px;
    text-align: left;
}
.selectBy label{
    color: var(--text-colordark);
    font-family: var(--font-google);
    font-weight: normal;
    font-size: 16px;
    margin-bottom: 5px;
}
.selectBy .form-select{
    border: 1px solid #707070;
    border-radius: 3px;
    height: 40px;
    font-size: 14px;
    font-family: var(--font-google);
    font-weight: normal;
    color: var(--text-colordark);
}

/*==============  Speeches ===============*/


/*==============  News Detail ===============*/

.news-detail{
    position: relative;
}
.news-detail h4{
    color: var(--themecolor2);
    font-family: var(--font-google);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}
.news-detail h3{
    color: var(--text-colordark);
    font-family: var(--font-google);
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
}
.news-detail img.midImg{
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}


/*==============  News Detail ===============*/


/*=========== Css ===========*/


.input-group.codeCaptcha .field-stayconnect-verifycode{
     display: flex;
     align-items: center;
	 width:100%;
}
.input-group.codeCaptcha .field-stayconnect-verifycode img{
    border:1px solid #CECECE;
    width: auto;
    height: 44px;
    border-radius: 3px;
    flex-shrink: 0;
}
.input-group.codeCaptcha .field-stayconnect-verifycode .refresbtn, .messageForm .refresbtn, .dropdown-menu .refresbtn{
    background: #CECECE;
    border:1px solid #CECECE;
    color: #000;
    border-radius: 50%;
    margin: 0 10px;
    height: 30px;
    width: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease-in
}
.input-group.codeCaptcha .field-stayconnect-verifycode .refresbtn:hover, .messageForm .refresbtn:hover, .dropdown-menu .refresbtn:hover{
    background: var(--themecolor2);
    border:1px solid var(--themecolor2);
    color: #fff;
}
.input-group.codeCaptcha .field-stayconnect-verifycode .help-block{
    position: absolute;
    bottom: -28px;
    color: #f00;
    font-size: 14px;
}
.help-block{
    color: #f00;
    font-size: 14px;
    margin: 0;
}


.notfoundrecord{
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    margin: 30px 0;
    color: var(--themecolor2);
}


.messageForm .field-contactform-verifycode label{
    display: block;
}

.messageForm #contactform-verifycode{
    width: 100px;
}

.messageForm .refresbtn{
    margin-left: 0;
}
.dropdown-menu #joinme-verifycode{
    width: 100px;
}
.dropdown-menu .refresbtn{
    margin-left: 0;
}
#joinmeverfiy, #joinmeverfiyweb, #stayconnect-verifycode, #contactform-verifycode{
    width:120px;
    font-family: var(--font-google);
    font-weight: normal;
    font-size: 12px;
    color: var(--text-colordark);
    border-radius: 3px;
    border: 1px solid #d5d5d5;
    height: 44px; 
    padding:5px 10px;	
}

/*=========== Css ===========*/

img.sectionbg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
}
.posr{
	position:relative;
	z-index:11;
}
.editorcont ul li {
    list-style: disc;
    margin-left: 20px;
    padding-bottom: 15px;
}
.bannertext{
	position:absolute;
	bottom:20px;
}