body {
  font-family: "Roboto", sans-serif;
  color: #000;
  font-weight: 300;
  font-size: 18px;
}

img {
  max-width: 100%;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

input.form-control {
  background: #eee;
  border-radius: 0px;
  border: 1px solid #e4e4e4;
}

input.form-control:placeholder {
  color: #a0a0a0 !important;
}

a {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

input.form-control:focus {
  background: #eee;
  border-radius: 0px;
}

a:hover {
  text-decoration: none;
}

p {
  font-size: 15px;
}

b,
strong {
  font-weight: bold;
}

h1 {
  color: #0b5589;
  font-weight: 300;
  position: relative;
}

h1.topline::before {
  display: block;
  width: 50px;
  height: 5px;
  background: #999;
  content: "";
  text-align: center;
  margin: 0 auto;
  margin-bottom: 15px;
  border-radius: 50px;
}

.btn-green {
  background: #66cc33;
  padding: 10px 30px;
  text-align: center;
  color: #fff;
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: 500;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: block;
  max-width: 200px;
  margin: 0 auto;
}

.btn-green:hover {
  background: #75d147;
  color: #fff;
}

/*=====================================================================Header Styles==============================================*/
header {
  position: relative;
  z-index: 5;
  /*--------------Menu Style----------------------*/
}

header .logo img {
  max-width: 365px;
  padding: 17px 0px;
  width: 100%;
}

@media (max-width: 767px) {
  header .logo img {
    padding: 0px 0px;
  }
}

header .social {
  margin-right: 2vh;
}

header .social a:hover {
  opacity: 0.85;
}

header .social a img {
  max-width: 34px;
}

header .search_box {
  position: relative;
  margin-right: 25px;
}

header .search_box input::-webkit-input-placeholder {
  text-transform: uppercase;
  font-size: 15px;
}

header .search_box input:-ms-input-placeholder {
  text-transform: uppercase;
  font-size: 15px;
}

header .search_box input::-ms-input-placeholder {
  text-transform: uppercase;
  font-size: 15px;
}

header .search_box input::placeholder {
  text-transform: uppercase;
  font-size: 15px;
}

header .search_box button.search_btn {
  position: absolute;
  top: 2px;
  right: 0;
  border: none;
  background: none;
}

@media (max-width: 991px) {
  header .head_right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  header .search_box {
    margin-right: 0px;
  }
  header .search_box .form-control {
    max-width: 130px;
  }
}

@media (max-width: 768px) {
  header .logo {
    text-align: center;
  }
  header .head_right > .row > .col {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  header .head_right .social {
    margin-bottom: 10px;
  }
  header .menu_row {
    margin-bottom: 3px;
  }
}

header .menu_row ul.navbar-nav {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .menu_row ul.navbar-nav > {
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .menu_row ul.navbar-nav > li > a {
  color: #000;
  text-transform: uppercase;
  padding: 10px 2vw;
}

header .menu_row ul.navbar-nav > li > a:hover {
  color: #0b5589;
}

header .menu_row .donate_btn {
  background: #66cc33;
  color: #fff !important;
  border-radius: 50px;
  margin: 5px;
  padding: 10px 25px;
  cursor: pointer;
}

@media (max-width: 991px) {
  header .menu_row .donate_btn {
    text-align: center;
    border-radius: 0;
    margin: 0px;
  }
}

header .menu_row .donate_btn a {
  padding: 0 !important;
  background: #66cc33 !important;
  color: #fff !important;
}

header .menu_row .donate_btn:hover {
  opacity: 0.8;
}

header .menu_row .navbar-brand {
  display: none;
}

header .menu_row li.dropdown:hover > a {
  color: #0b5589;
}

header .menu_row li.dropdown:hover ul.dropdown_menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

header .menu_row ul.dropdown_menu {
  list-style: none;
  padding: 0;
  position: absolute;
  min-width: 185px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}

header .menu_row ul.dropdown_menu li a {
  background: rgba(0, 0, 0, 0.82);
  color: #fff;
  display: block;
  text-transform: capitalize;
  padding: 10px 15px;
}

header .menu_row ul.dropdown_menu li a:hover {
  background: #0b5589;
}

@media (max-width: 991px) {
  header .menu_row ul.dropdown_menu {
    position: static;
    opacity: 1;
    visibility: visible;
    -webkit-transform: none;
            transform: none;
  }
  header .menu_row ul.dropdown_menu li a {
    background: #135f98;
    padding-left: 40px;
    border-bottom: 1px solid #226698;
  }
  header .menu_row button.navbar-toggler {
    display: block;
    margin-right: 0;
    margin-left: auto;
    outline: none;
  }
  header .menu_row .navbar-brand {
    display: block;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    color: #e5f4ff;
  }
  header .menu_row nav.navbar {
    width: 100%;
    text-align: right;
    background: #0a548b;
    padding: 5px 15px;
    padding-right: 0;
    color: #fff;
  }
  header .menu_row ul.navbar-nav {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  header .menu_row .navbar-collapse {
    position: absolute;
    width: 100%;
    left: 0;
    top: 40px;
    text-align: left;
    padding: 0;
  }
  header .menu_row .navbar-collapse ul.navbar-nav {
    background: #0a548b;
    border-top: 1px solid #477496;
  }
  header .menu_row .navbar-collapse li {
    display: block;
    width: 100%;
  }
  header .menu_row .navbar-collapse li a {
    display: block;
    background: #0a548b;
    color: #fff !important;
    font-size: 15px;
    padding: 15px;
  }
  header .menu_row .navbar-collapse li a.donate_btn {
    background: #66cc33;
    color: #fff !important;
    border-radius: 50px;
    margin: 5px;
    padding: 5px 15px;
    text-align: center;
    border-radius: 0px;
    cursor: pointer;
  }
  header .menu_row span.navbar-toggler-icon {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
  }
  header .menu_row button.navbar-toggler:before {
    content: "";
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    margin-bottom: 5px;
  }
  header .menu_row button.navbar-toggler:after {
    content: "";
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    margin-top: 5px;
  }
}

/*====================================================Banner Section============================================*/
.banner .img_wrap {
  min-height: 80vh;
  background-size: cover !important;
  height: 600px;
  background-position: center !important;
}

.banner .text_wrap {
  position: absolute;
  width: 100%;
  bottom: 0;
  background: rgba(0, 69, 109, 0.78);
  color: #fff;
  padding: 8vh 0px;
}

.banner .text_wrap h2 {
  font-weight: normal;
  font-size: 28px;
}

.banner .text_wrap h3 {
  font-size: 20px;
}

.banner .text_wrap .button_right {
  text-align: center;
}

.banner .owl-nav {
  display: none;
}

.banner .owl-dots {
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 18px;
}

.banner button.owl-dot span {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  display: block;
}

.banner button.owl-dot {
  margin: 5px;
  outline: none;
}

.banner button.owl-dot.active span {
  background: #999999;
}

/*==================================================What We do ===============================*/
.whatwedo {
  padding: 75px 0;
}

.whatwedo h1 {
  text-align: center;
}

.whatwedo h4 {
  font-weight: 300;
  font-size: 28px;
  text-align: center;
  color: #000;
}

.whatwedo .wedobox {
  text-align: center;
}

.whatwedo .wedobox a {
  color: #0b5589;
}

.whoweare {
  text-align: center;
  padding-bottom: 80px !important;
}

.whoweare .container {
  z-index: 2;
  position: relative;
}

.whoweare p {
  font-size: 30px;
  font-weight: 100;
}

.whoweare h1::before {
  display: block;
  width: 50px;
  height: 5px;
  background: #999;
  content: "";
  text-align: center;
  margin: 0 auto;
  margin-bottom: 15px;
  border-radius: 50px;
}

.support {
  text-align: center;
  position: relative;
  background: #0b5589;
}

.support::before {
  background: url(../images/bg_blue.svg) no-repeat;
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 300px;
  top: -239px;
  background-size: cover;
  left: 0;
  z-index: -1;
}

@media (max-width: 1600px) {
  .support::before {
    top: -209px;
  }
}

@media (max-width: 1200px) {
  .support::before {
    top: -150px;
  }
}

.support .container {
  z-index: 2;
  position: relative;
}

.support h1 {
  color: #fff;
}

.support p {
  color: #fff;
  font-size: 30px;
  font-weight: 100;
}

/*-====================================IRTV==========================================*/
section.irtv {
  padding-bottom: 200px;
  background-size: cover !important;
}

section.irtv h2 {
  color: #fff;
  font-size: 40px;
}

section.irtv a.yt_link.btn-green {
  margin-right: 0;
  padding: 5px 15px;
  position: relative;
  font-size: 15px;
  max-width: 165px;
  padding-left: 36px;
  min-width: 156px;
}

section.irtv a.yt_link.btn-green::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/social_3.png) no-repeat;
  background-size: contain;
  width: 53px;
  height: 48px;
  left: -10px;
  top: -7px;
}

section.irtv .btn_play {
  margin-top: -65px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -55px;
  background: #2b2b2b9e;
  border-radius: 50%;
  padding: 11px;
  opacity: 0.8;
  cursor: pointer;
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
}

section.irtv .btn_play:hover {
  opacity: 1;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

section.irtv .video_wrap {
  min-height: 60vh;
  background-size: cover !important;
  position: relative;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}

section.irtv .iframe_wrap {
  opacity: 0;
  visibility: hidden;
  display: none;
  position: absolute;
  top: 0;
  width: 100%;
}

section.irtv .tab-pane {
  position: relative;
}

section.irtv iframe {
  height: 60vh;
}

section.irtv .tab-pane.hide .iframe_wrap {
  opacity: 1;
  display: block;
  visibility: visible;
}

section.irtv .tab-pane.hide .iframe_wrap iframe {
  border: none;
}

section.irtv .tab-pane.hide .video_wrap {
  opacity: 0;
  visibility: hidden;
}

section.irtv .video_text {
  padding: 2vh;
  background: rgba(11, 65, 103, 0.78);
  color: #fff;
  position: absolute;
  width: 100%;
  bottom: 0;
}

section.irtv .tab_content {
  color: #fff;
  margin-top: 15px;
}

section.irtv .tab_content h6 {
  text-decoration: underline;
}

section.irtv .img_thumb img {
  width: 100%;
}

@media (max-width: 768px) {
  section.irtv .nav li.nav-item {
    padding: 5px;
  }
  section.irtv .nav li.nav-item a.nav-link {
    padding: 0;
  }
  section.irtv .nav li.nav-item .tab_content p {
    display: none;
  }
  section.irtv .nav li.nav-item h6 {
    text-align: center;
  }
}

/*======================================Get Connected ========================================*/
.getconnected {
  padding-bottom: 200px;
  position: relative;
}

.getconnected > ::before {
  background: url("../images/bg_white.svg") no-repeat;
  background-size: cover;
  content: "";
  position: absolute;
  top: -210px;
  width: 100%;
  height: 300px;
  left: 0;
}

.getconnected p {
  font-size: 30px;
  font-weight: 100;
}

.getconnected .form_wrap {
  max-width: 768px;
  margin: 0 auto;
}

.getconnected .form_wrap input {
  margin-bottom: 20px;
}

.getconnected .form_wrap input.btn-green {
  border: none;
  cursor: pointer;
}

/*====================================== Section Attorney ========================================*/
section.attorney {
  padding-bottom: 100px;
  position: relative;
  background: #ddd;
}

section.attorney > :before {
  background: url("../images/bg_grey.svg") no-repeat;
  content: "";
  position: absolute;
  background-size: cover;
  top: -209px;
  width: 100%;
  height: 300px;
  left: 0;
  z-index: -1;
}

@media (max-width: 575px) {
  section.attorney > :before {
    top: -139px;
  }
}

section.attorney p {
  font-size: 30px;
  font-weight: 100;
}

section.attorney h1 img {
  max-width: 460px;
  width: 100%;
}

/*====================================== Footer ========================================*/
footer {
  position: relative;
  padding-top: 5vh;
  background: url(../images/footer_bg.jpg) no-repeat;
  background-size: cover;
  color: #ccc;
}

footer a.btn_top {
  position: absolute;
  top: -29px;
  left: 50%;
  background: #343e47;
  border-radius: 50%;
  width: 115px;
  height: 115px;
  margin-left: -55px;
  cursor: pointer;
}

footer a.btn_top img {
  margin-top: 13px;
}

footer a.btn-green {
  margin-left: 0;
  margin-bottom: 30px;
}

footer h4 {
  color: #ffff;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 22px;
}

footer ul {
  margin-top: 20px;
  list-style: none;
  padding: 0px;
}

footer ul li a {
  font-size: 14px;
  color: #b3b3b3;
  display: block;
  margin: 4px 0;
  padding: 0 !important;
}

footer ul li a:hover {
  color: #ffffff;
}

footer .social {
  margin-top: 60px;
}

footer .social a {
  color: #fff !important;
}

footer .social a:hover {
  opacity: 0.7;
}

footer .wrap_foot {
  max-width: 340px;
  margin-right: 0;
  margin-left: auto;
}

footer .wrap_foot a {
  color: #b3b3b3;
}

footer .wrap_foot a:hover {
  color: #fff;
}

footer .wrap_foot > img {
  margin-bottom: 22px;
  margin-left: -15px;
}

footer .wrap_foot p {
  font-size: 14px;
  line-height: 24px;
}

footer .footer_bottom {
  text-align: center;
  font-size: 14px;
  background: #1c2329;
  padding: 20px;
  color: #75828e;
  font-weight: 400;
}

footer .footer_bottom a {
  color: #75828e;
}

footer .footer_bottom a:hover {
  color: #fff;
}

@media (max-width: 575px) {
  .whoweare p, .support p, .getconnected p, section.attorney p {
    font-size: 22px;
  }
  .whatwedo .box_wrap {
    margin-bottom: 15px;
  }
  .whatwedo .box_wrap img {
    max-width: 120px;
  }
  .whatwedo .box_wrap h4 {
    font-size: 20px;
  }
  .whatwedo {
    padding: 30px 0;
    padding-bottom: 15px;
  }
}

/*====================================== About Page Style ========================================*/
section.inner.banner {
  background-size: cover !important;
  height: 30vh;
  min-height: 250px;
  position: relative;
}

section.inner.banner h1 {
  margin-bottom: 0;
  color: #fff;
  font-size: 13vh;
  font-weight: bold;
  text-transform: uppercase;
  position: absolute;
  bottom: -4vh;
  width: 100%;
  text-align: center;
  left: 0;
}

.whoweare.about {
  position: relative;
  z-index: 2;
}

.whoweare.about:after {
  background: url(../images/about_bg.svg) no-repeat;
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 390px;
  top: auto;
  background-size: cover;
  left: 0px;
  bottom: -241px;
}

section.support.ourmission {
  padding-top: 150px !important;
  padding-bottom: 200px !important;
  background-size: cover !important;
}

section.support.ourmission:before {
  display: none;
}

section.support.ourmission h1.topline::before {
  background: #2577b1;
}

section.support.ourmission p {
  font-size: 18px;
  font-weight: 300;
  margin: auto;
  max-width: 768px;
}

section.support.ourmission .wrap_mission {
  margin-top: 55px;
}

section.support.ourmission .wrap_mission:nth-child(1) {
  margin-bottom: 75px;
}

/*====================================================NewsRoom Style======================================*/
.news .getconnected > ::before {
  display: none;
}

.feat_news h1 {
  text-align: center;
}

.feat_news .search_news {
  padding: 30px 0px;
}

.feat_news .search_box {
  width: 50%;
  position: relative;
}

.feat_news .search_box input::-webkit-input-placeholder {
  text-transform: uppercase;
  font-size: 15px;
}

.feat_news .search_box input:-ms-input-placeholder {
  text-transform: uppercase;
  font-size: 15px;
}

.feat_news .search_box input::-ms-input-placeholder {
  text-transform: uppercase;
  font-size: 15px;
}

.feat_news .search_box input::placeholder {
  text-transform: uppercase;
  font-size: 15px;
}

.feat_news .search_box input.form-control {
  border-radius: 50px;
  padding: 10px 15px;
}

.feat_news .search_box button.search_btn {
  position: absolute;
  top: 6px;
  right: 5px;
  border: none;
  background: none;
}

.feat_news a.advanced {
  font-size: 14px;
  color: #9a9a9a;
  font-weight: 500;
  text-decoration: underline;
  margin-left: 15px;
}

.feat_news .news_wrap {
  margin: 20px;
  background: #f8f8f8;
  border-radius: 12px;
  overflow: hidden;
}

.feat_news .news_wrap .img_wrap img {
  width: 100%;
}

.feat_news .news_wrap .news_content {
  padding: 17px;
  border: 3px solid #eee;
  border-top: 0px;
  min-height: 310px;
}

.feat_news .news_wrap span.tag {
  color: #299cf1;
  font-weight: 600;
  font-size: 14px;
}

.feat_news .news_wrap .headnews {
  font-size: 14px;
  font-weight: 500;
  color: #808080;
  padding-bottom: 10px;
}

.feat_news .news_wrap h4 {
  color: #f06000;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.feat_news .news_wrap p {
  font-size: 15px;
}

.feat_news .news_wrap .btn-green {
  max-width: 146px;
  font-size: 14px;
  position: absolute;
  left: 50%;
  margin-left: -70px;
  bottom: 50px;
}

a.readmore {
  font-size: 15px;
  font-weight: 500;
  color: #6d6d6d;
}

a.readmore:hover {
  color: #b9b9b9;
}

.news_list_sec h1 {
  text-align: center;
}

.news_list_sec ul.news_list {
  padding: 0;
  list-style: none;
}

.news_list_sec ul.news_list li {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #c3c3c3;
}

.news_list_sec span.tag {
  color: #299cf1;
  font-weight: 600;
  font-size: 14px;
}

.news_list_sec .headnews {
  font-size: 14px;
  font-weight: 500;
  color: #808080;
  padding-bottom: 10px;
}

.news_list_sec h4 {
  color: #f06000;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.news_list_sec p {
  font-size: 15px;
}

.news_list_sec .img_wrap img {
  border-radius: 10px;
}

.news_list_sec .content_wrap {
  margin-top: 20px;
}

/*=============================================================Team Page Style==================================*/
.team .getconnected > ::before {
  display: none;
}

section.team_sec .team_head {
  margin-bottom: 15px;
}

@media (max-width: 575px) {
  section.team_sec .team_content {
    margin-top: 20px;
  }
}

section.team_sec h1 {
  text-align: center;
}

section.team_sec h4 {
  color: #000;
  font-size: 18px;
}

section.team_sec h4 span {
  color: #0b5589;
  font-size: 15px;
}

section.team_sec a.team_acc {
  width: 100%;
  background: #eee;
  display: block;
  padding: 7px 20px;
  font-size: 15px;
  color: #888888;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 50px;
  position: relative;
  padding-left: 33px;
}

section.team_sec a.team_acc::before {
  content: "+";
  position: absolute;
  font-size: 18px;
  color: #b5b5b5;
  left: 15px;
  top: 5px;
}

section.team_sec a.team_acc[aria-expanded="true"]::before {
  content: "-";
}

section.team_sec .acc_content {
  padding: 20px 0px;
}

section.team_sec .team_row {
  border-bottom: 1px solid #8a8a8a;
  padding-bottom: 45px;
}

.social a {
  color: #fff;
  font-size: 20px;
  width: 33px;
  height: 33px;
  background: #0a548b;
  display: inline-block;
  text-align: center;
  padding: 2px;
  border-radius: 5px;
  margin: 0 1px;
}

.page-template-news .getconnected > ::before, .page-template-team .getconnected > ::before, .page-template-press-releases .getconnected > ::before, .search .getconnected > ::before {
  display: none;
}

@media (max-width: 575px) {
  section.inner.banner h1 {
    font-size: 9vh;
    bottom: -2vh;
  }
}

/*---------------------------------Search Page Style--------------------*/
.search .w-100 h2 {
  font-size: 28px;
}

.search h2.entry-title a {
  color: #0a548b;
}

.search .w-100 {
  margin-top: 25px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.single-post section.inner.banner h1, .search section.inner.banner h1 {
  font-size: 7vh;
  bottom: -2vh;
}

@media (max-width: 1200px) {
  .feat_news .news_wrap .btn-green {
    position: static;
    left: auto;
    margin: auto;
    text-align: center;
    display: block;
  }
}

@media (max-width: 575px) {
  .feat_news .news_wrap .news_content {
    min-height: auto;
  }
}
/*# sourceMappingURL=style.min.css.map */