/*
@File: Poxo Template Styles

* This file contains the styling for the actual template, this
is the file you need to edit to change the look of the
template.

This files table contents are outlined below>>>>>

*******************************************
*******************************************

** - Default CSS
** - Preloader Area CSS
** - Navbar Area CSS
** - Main Banner Area CSS
** - Boxes Area CSS
** - About Area CSS
** - Donate Area CSS
** - Events Area CSS
** - Events Details Area CSS
** - History Area CSS
** - Team Area CSS
** - Vote Casting Area CSS
** - FAQ Area CSS
** - Join With Us Area CSS
** - Partner Area CSS
** - FunFact Area CSS
** - Testimonial Area CSS
** - Blog Area Area CSS
** - Blog Details Area CSS
** - Page Title Area CSS
** - Gallery Area CSS
** - Pagination Area CSS
** - Sidebar Widget Area CSS
** - 404 Error Area CSS
** - Issues Area CSS
** - Contact Area CSS
** - Footer Area CSS
** - Go Top CSS
*/
/*================================================
Default CSS
=================================================*/
@import url("../../../../css");
@import url("../../../../css-1");
body {
  color: #00264a;
  padding: 0;
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
}

a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  outline: 0 !important;
  text-decoration: none;
  color: #00264a;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #212199;
}

p {
  color: #57647c;
  line-height: 1.8;
  margin-bottom: 12px;
}

p:last-child {
  margin-bottom: 0;
}

button,
input {
  outline: 0 !important;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

.ptb-100 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.pb-70 {
  padding-bottom: 70px;
}

.bg-FAFAFA {
  background-color: #fafafa;
}

img {
  max-width: 100%;
  height: auto;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #00264a;
  font-family: "Work Sans", sans-serif;
}

/*section-title*/
.section-title {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}

.section-title .sub-title {
  display: block;
  color: #f18036;
  margin-bottom: 7px;
  font-size: 17px;
  font-weight: bold;
  font-family: "Work Sans", sans-serif;
}

.section-title h2 {
  margin-bottom: 0;
  position: relative;
  padding-bottom: 15px;
  font-size: 40px;
  font-weight: 700;
}

.section-title h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 60px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#212199),
    color-stop(#ba367a),
    color-stop(#7b377c),
    color-stop(#3d336b),
    to(#00264a)
  );
  background: linear-gradient(
    to right,
    #212199,
    #ba367a,
    #7b377c,
    #3d336b,
    #00264a
  );
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

/*default-btn*/
.default-btn {
  background-color: #f16c17;
  color: #ffffff;
  display: inline-block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-transform: uppercase;
  padding: 15px 35px;
  font-family: "Work Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.default-btn:hover,
.default-btn:focus {
  color: #ffffff;
  background-color: #00264a;
}

/*================================================
Preloader Area CSS
=================================================*/
.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#00264a),
    color-stop(#3d336b),
    color-stop(#7b377c),
    color-stop(#ba367a),
    to(#212199)
  );
  background: linear-gradient(
    to right,
    #00264a,
    #3d336b,
    #7b377c,
    #ba367a,
    #212199
  );
  top: 0;
  left: 0;
}

.preloader .loader {
  position: absolute;
  top: 43%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-43%);
  transform: translateY(-43%);
  text-align: center;
  margin: 0 auto;
  width: 50px;
  height: 50px;
}

.preloader .box {
  width: 100%;
  height: 100%;
  background: #ffffff;
  -webkit-animation: animate 0.5s linear infinite;
  animation: animate 0.5s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 3px;
}

.preloader .shadow {
  width: 100%;
  height: 5px;
  background: #000;
  opacity: 0.1;
  position: absolute;
  top: 59px;
  left: 0;
  border-radius: 50%;
  -webkit-animation: shadow 0.5s linear infinite;
  animation: shadow 0.5s linear infinite;
}

@-webkit-keyframes loader {
  0% {
    left: -100px;
  }
  100% {
    left: 110%;
  }
}

@keyframes loader {
  0% {
    left: -100px;
  }
  100% {
    left: 110%;
  }
}

@-webkit-keyframes animate {
  17% {
    border-bottom-right-radius: 3px;
  }
  25% {
    -webkit-transform: translateY(9px) rotate(22.5deg);
    transform: translateY(9px) rotate(22.5deg);
  }
  50% {
    -webkit-transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    border-bottom-right-radius: 40px;
  }
  75% {
    -webkit-transform: translateY(9px) rotate(67.5deg);
    transform: translateY(9px) rotate(67.5deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(90deg);
    transform: translateY(0) rotate(90deg);
  }
}

@keyframes animate {
  17% {
    border-bottom-right-radius: 3px;
  }
  25% {
    -webkit-transform: translateY(9px) rotate(22.5deg);
    transform: translateY(9px) rotate(22.5deg);
  }
  50% {
    -webkit-transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    border-bottom-right-radius: 40px;
  }
  75% {
    -webkit-transform: translateY(9px) rotate(67.5deg);
    transform: translateY(9px) rotate(67.5deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(90deg);
    transform: translateY(0) rotate(90deg);
  }
}

@-webkit-keyframes shadow {
  50% {
    -webkit-transform: scale(1.2, 1);
    transform: scale(1.2, 1);
  }
}

@keyframes shadow {
  50% {
    -webkit-transform: scale(1.2, 1);
    transform: scale(1.2, 1);
  }
}

/*================================================
Navbar Area CSS
=================================================*/
.top-header {
  background-color: #f16206;
  padding-left: 40px;
  padding-right: 40px;
}

.top-header .city-temperature {
  display: inline-block;
  padding-right: 15px;
  margin-right: 15px;
  border-right: 1px solid #514d4d;
}

.top-header .city-temperature i {
  color: #ffaf31;
  margin-right: 3px;
}

.top-header .city-temperature span {
  color: #ffffff;
}

.top-header .city-temperature b {
  color: #ffffff;
  font-weight: 500;
}

.top-header .top-nav {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
}

.top-header .top-nav li {
  display: inline-block;
  margin-right: 15px;
  border-right: 1px solid #514d4d;
  padding-right: 15px;
}

.top-header .top-nav li a {
  color: #ffffff;
   font-family: 'Khand';
}

.top-header .top-nav li a:hover {
  color: #212199;
}

.top-header .top-nav li:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

.top-header .top-social {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  display: inline-block;
}

.top-header .top-social li {
  display: inline-block;
  margin-right: 10px;
    font-family: 'Khand';
    font-size: 20px;
}

.top-header .top-social li span {
  display: inline-block;
  color: #ffffff;
  font-weight: 600;
}

.top-header .top-social li a {
  color: #ffffff;
  display: inline-block;
  font-size: 15px;
}

.top-header .top-social li a:hover {
  color: #212199;
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

.top-header .top-social li:last-child {
  margin-right: 0;
}

.top-header .header-date {
 display: inline-block;
    margin-left: 20px;
    color: #ffffff;
    background-color: #403d9d;
    padding: 10px 10px;
    font-weight: 500;
    font-size: 17px;
    font-family: 'Khand';
}

.top-header .header-date i {
  margin-right: 3px;
}

.poxo-responsive-nav {
  display: none;
}

.poxo-nav {
  background-color: #ffffff;
}

.poxo-nav .navbar {
  background-color: #ffffff;
  padding-top: 0;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 0;
}

.poxo-nav .navbar .navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.poxo-nav .navbar ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}

.poxo-nav .navbar .navbar-nav {
  font-family: "Work Sans", sans-serif;
  margin-left: auto;
}

.poxo-nav .navbar .navbar-nav .nav-item {
  position: relative;
  padding: 0;
}

.poxo-nav .navbar .navbar-nav .nav-item a {
  color: #00264a;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-weight: 500;
  padding-left: 0;
  padding-right: 0;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-left: 12px;
  margin-right: 12px;
   font-family: 'Khand';
   font-size: 20px;
}

.poxo-nav .navbar .navbar-nav .nav-item a:hover,
.poxo-nav .navbar .navbar-nav .nav-item a:focus,
.poxo-nav .navbar .navbar-nav .nav-item a.active {
  color: #212199;
}

.poxo-nav .navbar .navbar-nav .nav-item a i {
  font-size: 12px;
}

.poxo-nav .navbar .navbar-nav .nav-item:last-child a {
  margin-right: 0;
}

.poxo-nav .navbar .navbar-nav .nav-item:first-child a {
  margin-left: 0;
}

.poxo-nav .navbar .navbar-nav .nav-item:hover a,
.poxo-nav .navbar .navbar-nav .nav-item.active a {
  color: #212199;
}

.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu {
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  background: #ffffff;
  position: absolute;
  border: none;
  top: 80px;
  left: 0;
  width: 250px;
  z-index: 99;
  display: block;
  opacity: 0;
  visibility: hidden;
  border-radius: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-top: 20px;
  padding-top: 20px;
  padding-left: 5px;
  padding-right: 5px;
  padding-bottom: 20px;
}

.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
  text-transform: capitalize;
  padding: 8px 15px;
  margin: 0;
  position: relative;
  color: #00264a;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 16px;
  font-weight: 500;
}

.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li a::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 50%;
  width: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  height: 1px;
  background-color: #212199;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover,
.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:focus,
.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  color: #212199;
  padding-left: 26px;
}

.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover::before,
.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:focus::before,
.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active::before {
  width: 20px;
}

.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
  left: -250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
  color: #00264a;
}

.poxo-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  a:hover,
.poxo-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  a:focus,
.poxo-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  a.active {
  color: #212199;
}

.poxo-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu {
  left: 220px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.poxo-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a {
  color: #00264a;
}

.poxo-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a:hover,
.poxo-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a:focus,
.poxo-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a.active {
  color: #212199;
}

.poxo-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu {
  left: -250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.poxo-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a {
  color: #00264a;
}

.poxo-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a:hover,
.poxo-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a:focus,
.poxo-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a.active {
  color: #212199;
}

.poxo-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu {
  left: -250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.poxo-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a {
  color: #00264a;
}

.poxo-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a:hover,
.poxo-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a:focus,
.poxo-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a.active {
  color: #212199;
}

.poxo-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu {
  left: -250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.poxo-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a {
  color: #00264a;
}

.poxo-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a:hover,
.poxo-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a:focus,
.poxo-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a.active {
  color: #212199;
}

.poxo-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu {
  left: -250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.poxo-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a {
  color: #00264a;
}

.poxo-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a:hover,
.poxo-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a:focus,
.poxo-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a.active {
  color: #212199;
}

.poxo-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li.active
  a {
  color: #212199;
}

.poxo-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li:hover
  .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}

.poxo-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li.active
  a {
  color: #212199;
}

.poxo-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li:hover
  .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}

.poxo-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li.active
  a {
  color: #212199;
}

.poxo-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li:hover
  .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}

.poxo-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li.active
  a {
  color: #212199;
}

.poxo-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li:hover
  .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}

.poxo-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li.active
  a {
  color: #212199;
}

.poxo-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li:hover
  .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}

.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li.active a {
  color: #212199;
}

.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}

.poxo-nav .navbar .navbar-nav .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
  margin-top: 0;
}

.poxo-nav .navbar .others-option {
  margin-left: 30px;
}

.poxo-nav .navbar .others-option .cart-btn {
  display: inline-block;
  color: #00264a;
  font-size: 22px;
  position: relative;
  top: -9px;
}

.poxo-nav .navbar .others-option .cart-btn:hover {
  color: #212199;
}

.poxo-nav .navbar .others-option .option-item {
  color: #00264a;
  position: relative;
  line-height: initial;
  display: inline-block;
  top: -8px;
}

.poxo-nav .navbar .others-option .option-item .search-btn {
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #00264a;
  font-size: 22px;
}

.poxo-nav .navbar .others-option .option-item .search-btn:hover {
  color: #212199;
}

.poxo-nav .navbar .others-option .option-item .close-btn {
  cursor: pointer;
  display: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 22px;
  color: #00264a;
  font-size: 20px;
}

.poxo-nav .navbar .others-option .option-item .close-btn.active {
  display: block;
}

.poxo-nav .navbar .others-option .option-item .close-btn:hover {
  color: #212199;
}

.poxo-nav .navbar .others-option .call-us {
  padding-left: 51px;
  position: relative;
  display: inline-block;
  margin-left: 17px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
}

.poxo-nav .navbar .others-option .call-us .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  color: #212199;
  font-size: 20px;
  background-color: #f1f4f4;
  text-align: center;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.poxo-nav .navbar .others-option .call-us a {
  display: block;
  color: #212199;
  font-weight: 600;
  font-size: 16px;
}

.poxo-nav .navbar .others-option .call-us:hover .icon {
  background-color: #212199;
  color: #ffffff;
}

.navbar-area {
  position: relative;
  background-color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navbar-area.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  background-color: #ffffff !important;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.search-overlay {
  display: none;
}

.search-overlay.search-popup {
  position: absolute;
  top: 100%;
  width: 300px;
  right: 0;
  background: #ffffff;
  z-index: 2;
  padding: 20px;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  margin-top: 27px;
}

.search-overlay.search-popup .search-form {
  position: relative;
}

.search-overlay.search-popup .search-form .search-input {
  display: block;
  width: 100%;
  height: 50px;
  line-height: initial;
  border: 1px solid #eeeeee;
  padding-left: 10px;
  color: #00264a;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.search-overlay.search-popup .search-form .search-input:focus {
  border-color: #212199;
}

.search-overlay.search-popup .search-form .search-button {
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
  background: transparent;
  border: none;
  width: 40px;
  outline: 0;
  color: #57647c;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding: 0;
}

.search-overlay.search-popup .search-form .search-button:hover,
.search-overlay.search-popup .search-form .search-button:focus {
  color: #212199;
}

@media only screen and (max-width: 991px) {
  .poxo-responsive-nav {
    display: block;
  }
  .poxo-responsive-nav .poxo-responsive-menu {
    position: relative;
  }
  .poxo-responsive-nav .poxo-responsive-menu.mean-container .mean-nav ul {
    font-size: 15px;
    padding-top: 80px;
  }
  .poxo-responsive-nav
    .poxo-responsive-menu.mean-container
    .mean-nav
    ul
    li
    a.active {
    color: #212199;
  }
  .poxo-responsive-nav
    .poxo-responsive-menu.mean-container
    .mean-nav
    ul
    li
    li
    a {
    font-size: 14px;
  }
  .poxo-responsive-nav .poxo-responsive-menu.mean-container .navbar-nav {
    overflow-y: scroll;
    height: 336px;
    -webkit-box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
  }
  .poxo-responsive-nav .mean-container a.meanmenu-reveal {
    color: #00264a;
  }
  .poxo-responsive-nav .mean-container a.meanmenu-reveal span {
    background: #f16206;
  }
  .poxo-responsive-nav .mean-container .others-option {
    display: none;
  }
  .poxo-responsive-nav .logo {
    position: relative;
    width:75%;
    z-index: 999;
  }
  .poxo-responsive-nav .logo img{
  width:100px;
  }
  .navbar-area {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .poxo-nav {
    display: none;
  }
}

/*================================================
Main Banner Area CSS
=================================================*/
.main-banner {
  height: 800px;
  position: relative;
  z-index: 1;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.main-banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    #ef6107,
    #14148c,
    #1e7b30,
    #f68d41,
    #212199
  );
  opacity: 0.6;
  z-index: -1;
}

.main-banner.item-bg1 {
  background-image: url(../img/main-banner1.jpg);
}

.main-banner.item-bg2 {
  background-image: url(../img/main-banner2.jpg);
}

.main-banner.item-bg3 {
  background-image: url(../img/main-banner3.jpg);
}

.banner-content {
  max-width: 700px;
  margin-top: -60px;
}

.banner-content h1 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 700;
}

.banner-content p {
  color: #ffffff;
  font-size: 16px;
  max-width: 650px;
  line-height: 1.9;
  margin-top: 15px;
}

.banner-content .default-btn {
  margin-top: 15px;
}

.banner-content .default-btn:hover,
.banner-content .default-btn:focus {
  background-color: #ffffff;
  color: #212199;
}

.home-slides.owl-theme .owl-nav {
  margin-top: 0;
}

.home-slides.owl-theme .owl-nav [class*="owl-"] {
  position: absolute;
  left: 30px;
  top: 45%;
  -webkit-transform: translateY(-45%);
  transform: translateY(-45%);
  background-color: transparent !important;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin: 0;
  padding: 0 0 0 0 !important;
  opacity: 0.7;
  color: #ffffff;
  font-size: 30px;
  overflow: hidden;
}

.home-slides.owl-theme .owl-nav [class*="owl-"].owl-prev {
  padding: 0 25px 0 0 !important;
}

.home-slides.owl-theme .owl-nav [class*="owl-"].owl-prev::before {
  content: "Prev";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 14px;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.home-slides.owl-theme .owl-nav [class*="owl-"].owl-prev::after {
  content: "Prev";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0%, 100%);
  transform: translate(0%, 100%);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  font-size: 14px;
}

.home-slides.owl-theme .owl-nav [class*="owl-"].owl-prev:hover::before {
  -webkit-transform: translateY(-190%);
  transform: translateY(-190%);
}

.home-slides.owl-theme .owl-nav [class*="owl-"].owl-prev:hover::after {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.home-slides.owl-theme .owl-nav [class*="owl-"].owl-next {
  left: auto;
  right: 30px;
  padding: 0 0 0 25px !important;
}

.home-slides.owl-theme .owl-nav [class*="owl-"].owl-next::before {
  content: "Next";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 14px;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.home-slides.owl-theme .owl-nav [class*="owl-"].owl-next::after {
  content: "Next";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0%, 100%);
  transform: translate(0%, 100%);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  font-size: 14px;
}

.home-slides.owl-theme .owl-nav [class*="owl-"].owl-next:hover::before {
  -webkit-transform: translateY(-190%);
  transform: translateY(-190%);
}

.home-slides.owl-theme .owl-nav [class*="owl-"].owl-next:hover::after {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.home-slides.owl-theme .owl-nav [class*="owl-"]:hover {
  opacity: 1;
}

/*================================================
Boxes Area CSS
=================================================*/
.boxes-area {
  position: relative;
  z-index: 2;
  margin-top: -100px;
  margin-bottom: -30px;
}

.single-box {
  text-align: center;
  margin-bottom: 30px;
  padding: 30px;
  background-color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.single-box .icon {
  color: #212199;
  margin-bottom: 20px;
  background-color: #fee5e6;
  display: inline-block;
  width: 75px;
  height: 75px;
  line-height: 75px;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 40px;
}

.single-box h3 {
  margin-bottom: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 23px;
  font-weight: 600;
}

.single-box p {
  margin-bottom: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-box .details-btn {
  display: inline-block;
  position: relative;
  color: #57647c;
  z-index: 1;
  margin-top: 18px;
  width: 35px;
  height: 35px;
  line-height: 36px;
  left: -12px;
  border-radius: 50%;
  font-size: 23px;
}

.single-box .details-btn::before {
  width: 100%;
  height: 100%;
  border: 1px solid #eeeeee;
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  border-radius: 50%;
  z-index: -1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-box .details-btn:hover {
  background-color: #ffffff !important;
  color: #212199 !important;
  left: 0;
}

.single-box .details-btn:hover::before {
  left: 0;
  opacity: 0;
  visibility: hidden;
}

.single-box:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  background-color: #212199;
}

.single-box:hover .icon {
  background-color: #ffffff;
  color: #212199;
}

.single-box:hover h3 {
  color: #ffffff;
}

.single-box:hover p {
  color: #ffffff;
}

.single-box:hover .details-btn {
  color: #ffffff;
}

.single-box:hover .details-btn::before {
  border: 1px solid #ffffff;
}

/*================================================
About Area CSS
=================================================*/
.about-image {
  position: relative;
  z-index: 1;
  padding-right: 8px;
  padding-left: 50px;
  padding-bottom: 50px;
}
.about-image img {
  border-radius: 15px;
}
.about-image .text {
  position: absolute;
  right: 0;
  bottom: 42px;
  background-color: #212199;
  color: #ffffff;
  font-size: 16px;
  text-align: center;
  max-width: 250px;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.4);
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.4);
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 25px;
  padding-right: 25px;
}

.about-image .text span {
  display: inline-block;
  font-size: 22px;
  font-weight: 600;
}

.about-image .shape {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.about-content {
  padding-left: 15px;
}

.about-content .sub-title {
  display: block;
  color: #f35f03;
  margin-bottom: 7px;
  font-size: 17px;
  font-weight: bold;
  font-family: "Work Sans", sans-serif;
}

.about-content h2 {
  position: relative;
  padding-bottom: 17px;
  font-size: 40px;
  font-weight: 700;
}

.about-content h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 60px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#212199),
    color-stop(#ba367a),
    color-stop(#7b377c),
    color-stop(#3d336b),
    to(#00264a)
  );
  background: linear-gradient(
    to right,
    #212199,
    #ba367a,
    #7b377c,
    #3d336b,
    #00264a
  );
}

.about-content p {
  margin-top: 17px;
  text-align: justify;
  color: #000;
}

.about-content .signature-image {
  margin-top: 25px;
}

.about-inner-area {
  margin-top: 60px;
}

.about-text h3 {
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eeeeee;
  font-size: 23px;
  font-weight: 600;
}

.about-text h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 50px;
  background-color: #212199;
  height: 1px;
}

.about-text .features-list {
  padding-left: 0;
  list-style-type: none;
  margin-top: 20px;
  margin-bottom: 0;
}

.about-text .features-list li {
  position: relative;
  margin-bottom: 15px;
  color: #00264a;
  padding-left: 30px;
}

.about-text .features-list li i {
  font-size: 12px;
  color: #00264a;
  background-color: #eaeaf2;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-align: center;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.about-text .features-list li:last-child {
  margin-bottom: 0;
}

.about-text .features-list li:hover i {
  background-color: #212199;
  color: #ffffff;
}

/*================================================
Donate Area CSS
=================================================*/
.donate-area {
  position: relative;
  z-index: 1;
  background-image: url(../img/donate-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.donate-area::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#00264a),
    color-stop(#3d336b),
    color-stop(#7b377c),
    color-stop(#ba367a),
    to(#212199)
  );
  background: linear-gradient(
    to right,
    #00264a,
    #3d336b,
    #7b377c,
    #ba367a,
    #212199
  );
  opacity: 0.7;
  z-index: -1;
}

.donate-area .section-title .sub-title {
  color: #ffffff;
}

.donate-area .section-title h2 {
  color: #ffffff;
}

.donate-area .section-title h2::before {
  background: #ffffff;
}

.donate-area.extra-pb {
  padding-bottom: 200px;
}

.donate-content {
  text-align: center;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.donate-content ul {
  padding-left: 0;
  list-style-type: none;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -7px;
  margin-bottom: 0;
  margin-top: -14px;
  margin-left: -7px;
}

.donate-content ul li {
  -ms-flex: 0 0 25%;
  -webkit-box-flex: 0;
  flex: 0 0 25%;
  max-width: 25%;
  padding-left: 7px;
  padding-right: 7px;
  padding-top: 14px;
}

.donate-content ul li button {
  display: block;
  width: 100%;
  border: none;
  border-radius: 1px;
  padding: 13px 10px;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.4);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin: 0;
  -webkit-box-shadow: 0 1px 7px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 7px rgba(0, 0, 0, 0.1);
  font-size: 21px;
  font-weight: 600;
}

.donate-content ul li button:hover,
.donate-content ul li button:focus,
.donate-content ul li button.active {
  color: #ffffff;
  background-color: #212199;
}

.donate-content .give-btn {
  margin-top: 30px;
  display: inline-block;
  text-transform: uppercase;
  border: none;
  background-color: #212199;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #ffffff;
  padding: 15px 45px;
  font-family: "Work Sans", sans-serif;
  font-size: 17px;
  font-weight: 600;
}

.donate-content .give-btn:hover {
  color: #212199;
  background-color: #ffffff;
}

/*================================================
Events Area CSS
=================================================*/
.single-upcoming-events-box {
  margin-bottom: 30px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  background-color: #ffffff;
}

.single-upcoming-events-box .events-box {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
display:block;
}



.single-upcoming-events-box .events-box .events-image .image {
  height: 100%;
  width: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.single-upcoming-events-box .events-box .events-image .image img {
  display: block;
  border-radius: 5px;
  border: 5px solid #3b894c;
height:350px;
}

.single-upcoming-events-box .events-box .events-image .image.bg1 {
  background-image: url(../img/upcoming-events/1.jpg);
}

.single-upcoming-events-box .events-box .events-image .image.bg2 {
  background-image: url(../img/upcoming-events/2.jpg);
}

.single-upcoming-events-box .events-box .events-image .image.bg3 {
  background-image: url(../img/upcoming-events/3.jpg);
}

.single-upcoming-events-box .events-box .events-image .image.bg4 {
  background-image: url(../img/upcoming-events/4.jpg);
}

.single-upcoming-events-box .events-box .events-content .content {
  padding:20px;
  text-align:center;
height:160px;
}

.single-upcoming-events-box .events-box .events-content .content h3 {
  font-size: 23px;
  font-weight: 600;
}

.single-upcoming-events-box .events-box .events-content .content h3 a {
  display: inline-block;
  font-size:20px;
      color: #f16c17;
}

.single-upcoming-events-box .events-box .events-content .content p {
  margin-top: 12px;
}

.single-upcoming-events-box .events-box .events-content .content .location {
  display: block;
  color: #57647c;
  margin-top: 15px;
}

.single-upcoming-events-box .events-box .events-content .content .location i {
  color: #212199;
  margin-right: 2px;
}

.single-upcoming-events-box .events-box .events-content .content .join-now-btn {
  display: inline-block;
  font-weight: 600;
  position: relative;
 padding: 5px;
    border: 1px solid #f16c17;
    background: #f16c17;
    color: #fff;
}

.single-upcoming-events-box
  .events-box
  .events-content
  .content
  .join-now-btn::before {
  width: 100%;
  height: 1px;
  background: #212199;
  content: "";
  position: absolute;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  left: 0;
  bottom: 0;
}

.single-upcoming-events-box
  .events-box
  .events-content
  .content
  .join-now-btn:hover::before {
  width: 0;
}

.single-upcoming-events-box .events-box .events-date {
  -ms-flex: 0 0 25%;
  -webkit-box-flex: 0;
  flex: 0 0 25%;
  max-width: 25%;
}

.single-upcoming-events-box .events-box .events-date .date {
  width: 100%;
  height: 100%;
  background-color: #212199;
  text-align: center;
  color: #ffffff;
  position: relative;
  z-index: 1;
  font-size: 24px;
  font-weight: 700;
  font-family: "Work Sans", sans-serif;
}

.single-upcoming-events-box .events-box .events-date .date span {
  display: inline-block;
  position: relative;
  z-index: 1;
  letter-spacing: 1px;
}

.single-upcoming-events-box .events-box .events-date .date span::before {
  content: "";
  position: absolute;
  right: 12px;
  top: 4px;
  background: #ffffff;
  width: 1px;
  height: 30px;
  -webkit-transform: rotate(40deg);
  transform: rotate(40deg);
}

.single-upcoming-events-box .events-box .events-date .date h3 {
  color: #ffffff;
  margin-bottom: 5px;
  font-size: 30px;
  font-weight: 700;
}

.single-upcoming-events-box .events-box .events-date .date p {
  color: #ffffff;
  line-height: initial;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
}

.single-upcoming-events-box .events-box .events-date .date i {
  display: inline-block;
  font-size: 110px;
  color: #ffffff;
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0.1;
}

/*================================================
Events Details Area CSS
=================================================*/
.events-details-image img {
  width: 100%;
  border-radius: 5px;
}

.events-details-header {
  margin-bottom: 25px;
}

.events-details-header .back-all-events {
  display: inline-block;
  color: #57647c;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 600;
}

.events-details-header .back-all-events:hover {
  color: #212199;
}

.events-details-header h3 {
  margin-bottom: 13px;
  font-size: 23px;
  font-weight: 600;
}

.events-details-header .events-info-meta {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.events-details-header .events-info-meta li {
  display: inline-block;
  margin-right: 10px;
  color: #57647c;
}

.events-details-header .events-info-meta li i {
  color: #212199;
  margin-right: 1px;
}

.events-details .events-details-image {
  margin-bottom: 20px;
}

.events-details .events-info-links {
  margin-top: 25px;
}

.events-details .events-info-links a {
  display: inline-block;
  background-color: #212199;
  color: #ffffff;
  border-radius: 5px;
  padding: 5px 15px 6px;
  margin-right: 5px;
}

.events-details .post-navigation {
  margin-top: 35px;
}

/*================================================
History Area CSS
=================================================*/
.history-area .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.history-timeline.timeline .swiper-container {
  height: 700px;
  width: 100%;
  position: relative;
}

.history-timeline.timeline .swiper-wrapper {
  -webkit-transition: 2s cubic-bezier(0.68, -0.4, 0.27, 1.34) 0.2s;
  transition: 2s cubic-bezier(0.68, -0.4, 0.27, 1.34) 0.2s;
}

.history-timeline.timeline .swiper-slide {
  position: relative;
  color: #ffffff;
  z-index: 1;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.history-timeline.timeline .swiper-slide.bg1 {
  background-image: url(../img/history-bg1.jpg);
}

.history-timeline.timeline .swiper-slide.bg2 {
  background-image: url(../img/history-bg2.jpg);
}

.history-timeline.timeline .swiper-slide.bg3 {
  background-image: url(../img/history-bg3.jpg);
}

.history-timeline.timeline .swiper-slide.bg4 {
  background-image: url(../img/history-bg4.jpg);
}

.history-timeline.timeline .swiper-slide.bg5 {
  background-image: url(../img/history-bg5.jpg);
}

.history-timeline.timeline .swiper-slide.bg6 {
  background-image: url(../img/history-bg6.jpg);
}

.history-timeline.timeline .swiper-slide::after {
  content: "";
  position: absolute;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 100%;
  right: -30%;
  bottom: -8%;
  width: 240px;
  height: 50%;
  -webkit-box-shadow: -280px 0 150px 50vw rgba(0, 0, 0, 0.7);
  box-shadow: -280px 0 150px 50vw rgba(0, 0, 0, 0.7);
  z-index: -1;
}

.history-timeline.timeline .swiper-slide .timeline-year {
  display: block;
  margin-bottom: 12px;
  -webkit-transform: translate3d(20px, 0, 0);
  transform: translate3d(20px, 0, 0);
  color: #212199;
  opacity: 0;
  -webkit-transition: 0.2s ease 0.4s;
  transition: 0.2s ease 0.4s;
  font-style: italic;
  font-size: 30px;
  font-weight: 700;
}

.history-timeline.timeline .swiper-slide .timeline-title {
  margin: 0 0 15px;
  opacity: 0;
  -webkit-transform: translate3d(20px, 0, 0);
  transform: translate3d(20px, 0, 0);
  -webkit-transition: 0.2s ease 0.5s;
  transition: 0.2s ease 0.5s;
  color: #ffffff;
  font-weight: 700;
  font-size: 40px;
}

.history-timeline.timeline .swiper-slide .timeline-text {
  color: #ffffff;
  opacity: 0;
  -webkit-transform: translate3d(20px, 0, 0);
  transform: translate3d(20px, 0, 0);
  -webkit-transition: 0.2s ease 0.6s;
  transition: 0.2s ease 0.6s;
}

.history-timeline.timeline .swiper-slide-content {
  position: absolute;
  width: 490px;
  max-width: 490px;
  right: 25%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 14px;
  z-index: 2;
  text-align: right;
}

.history-timeline.timeline .swiper-slide-active .timeline-year {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: 0.4s ease 1.6s;
  transition: 0.4s ease 1.6s;
}

.history-timeline.timeline .swiper-slide-active .timeline-title {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: 0.4s ease 1.7s;
  transition: 0.4s ease 1.7s;
}

.history-timeline.timeline .swiper-slide-active .timeline-text {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: 0.4s ease 1.8s;
  transition: 0.4s ease 1.8s;
}

.history-timeline.timeline .swiper-pagination {
  right: 15% !important;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  z-index: 1;
}

.history-timeline.timeline .swiper-pagination::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}

.history-timeline.timeline .swiper-pagination-bullet {
  width: auto;
  height: auto;
  text-align: center;
  opacity: 1;
  background: transparent;
  color: #ffffff;
  margin: 15px 0 !important;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-weight: 600;
}

.history-timeline.timeline .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 8px;
  left: -32.2px;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: #212199;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.history-timeline.timeline .swiper-pagination-bullet-active {
  color: #212199;
}

.history-timeline.timeline .swiper-pagination-bullet-active::before {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.history-timeline.timeline .swiper-button-next,
.history-timeline.timeline .swiper-button-prev {
  background-size: 20px 20px;
  top: 15%;
  width: 20px;
  height: 20px;
  margin-top: 0;
  z-index: 2;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.history-timeline.timeline .swiper-button-prev {
  top: 15%;
  left: auto;
  right: 15%;
  -webkit-transform: rotate(90deg) translate(0, 10px);
  transform: rotate(90deg) translate(0, 10px);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23d4a024'%2F%3E%3C%2Fsvg%3E");
}

.history-timeline.timeline .swiper-button-prev:hover {
  -webkit-transform: rotate(90deg) translate(-3px, 10px);
  transform: rotate(90deg) translate(-3px, 10px);
}

.history-timeline.timeline .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23d4a024'%2F%3E%3C%2Fsvg%3E");
  top: auto;
  bottom: 15%;
  right: 15%;
  -webkit-transform: rotate(90deg) translate(0, 10px);
  transform: rotate(90deg) translate(0, 10px);
}

.history-timeline.timeline .swiper-button-next:hover {
  -webkit-transform: rotate(90deg) translate(3px, 10px);
  transform: rotate(90deg) translate(3px, 10px);
}

/*================================================
Team Area CSS
=================================================*/
.single-team-box {
  margin-bottom: 30px;
  text-align: center;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.08);
  padding-top: 0;
  padding-bottom: 30px;
  border: 3px solid #292895;
  border-radius: 15px;
}

.single-team-box .image {
  overflow: hidden;
  position: relative;
  padding: 0px;
  border-radius: 15px;
height:350px;
}

.single-team-box .image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-team-box .image .social {
  padding-left: 0;
  list-style-type: none;
  position: absolute;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  bottom: 0;
  margin-bottom: 0;
  margin-top: 15px;
}

.single-team-box .image .social li {
  display: inline-block;
  margin-left: 1px;
  margin-right: 1px;
}

.single-team-box .image .social li a {
  display: block;
  width: 35px;
  font-size: 14px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  background-color: #00264a;
  color: #ffffff;
}

.single-team-box .image .social li a:hover {
  color: #ffffff;
  background-color: #212199;
}

.single-team-box .content {
  padding-top: 30px;
  padding-right: 20px;
  padding-left: 20px;
  height: 120px;
}

.single-team-box .content h3 {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 600;
}
.single-team-box .content h6 {
  margin-bottom: 5px;
  font-size:15px;
}

.single-team-box .content span {
  display: block;
  margin-top: 6px;
  color:#ee6307;
}

.single-team-box:hover .image img {
  -webkit-transform: scale(1.2) rotate(5deg);
  transform: scale(1.2) rotate(5deg);
}

.single-team-box:hover .image .social {
  bottom: 15px;
  opacity: 1;
  visibility: visible;
}

/*================================================
Vote Casting Area CSS
=================================================*/
.vote-casting-area {
  overflow: hidden;
}

.vote-casting-area .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.vote-casting-area .container-fluid .row {
  margin-left: 0;
  margin-right: 0;
}

.vote-casting-area .container-fluid .col-lg-6 {
  padding-left: 0;
  padding-right: 0;
}

.vote-casting-content {
  margin-left: auto;
  max-width: 700px;
  padding-top: 100px;
  padding-bottom: 100px;
  padding-right: 80px;
}

.vote-casting-content .sub-title {
  display: block;
  color: #212199;
  margin-bottom: 7px;
  font-size: 17px;
  font-weight: 500;
  font-family: "Work Sans", sans-serif;
}

.vote-casting-content h2 {
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 15px;
  font-size: 40px;
  font-weight: 700;
}

.vote-casting-content h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 60px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#212199),
    color-stop(#ba367a),
    color-stop(#7b377c),
    color-stop(#3d336b),
    to(#00264a)
  );
  background: linear-gradient(
    to right,
    #212199,
    #ba367a,
    #7b377c,
    #3d336b,
    #00264a
  );
  right: 0;
}

.vote-casting-image {
  height: 100%;
  background-image: url(../img/vote-casting-image.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.vote-casting-image img {
  display: none;
}

.vote-casting-content .col-lg-4:nth-child(3) .single-vote-casting-box::before,
.vote-casting-content .col-lg-4:nth-child(6) .single-vote-casting-box::before {
  display: none;
}

.vote-casting-content .btn-box {
  margin-top: 40px;
}

.single-vote-casting-box {
  position: relative;
  margin-top: 40px;
}

.single-vote-casting-box::before {
  content: "";
  position: absolute;
  right: 10px;
  top: 25px;
  width: 56px;
  height: 26px;
  background-position: center center;
  background-size: cover;
  background-image: url(../img/arrow-right.png);
  background-repeat: no-repeat;
}

.single-vote-casting-box .icon {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background: linear-gradient(
    to right,
    #ef6107,
    #14148c,
    #1e7b30,
    #f68d41,
    #212199
  );
  width: 65px;
  height: 65px;
  line-height: 65px;
  border-radius: 50%;
  font-size: 30px;
  color: #fff;
  text-align: center;
  margin-bottom: 15px;
}

.single-vote-casting-box h3 {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
}

.single-vote-casting-box:hover .icon {
  background-color: #212199;
  color: #ffffff;
}

/*================================================
FAQ Area CSS
=================================================*/
.faq-area .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.faq-area .container-fluid .row {
  margin-left: 0;
  margin-right: 0;
}

.faq-area .container-fluid .col-lg-6 {
  padding-left: 0;
  padding-right: 0;
}

.faq-image {
  height: 100%;
  background-image: url(../img/faq-img.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.faq-image img {
  display: none;
}

.faq-accordion {
  padding-left: 80px;
  padding-right: 80px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.faq-accordion .sub-title {
  display: block;
  color: #212199;
  margin-bottom: 7px;
  font-size: 17px;
  font-weight: 500;
  font-family: "Work Sans", sans-serif;
}

.faq-accordion h2 {
  margin-bottom: 45px;
  position: relative;
  padding-bottom: 15px;
  max-width: 470px;
  font-size: 40px;
  font-weight: 700;
}

.faq-accordion h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 60px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#212199),
    color-stop(#ba367a),
    color-stop(#7b377c),
    color-stop(#3d336b),
    to(#00264a)
  );
  background: linear-gradient(
    to right,
    #212199,
    #ba367a,
    #7b377c,
    #3d336b,
    #00264a
  );
  right: 0;
}

.faq-accordion .accordion {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.faq-accordion .accordion .accordion-item {
  display: block;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  background: #ffffff;
  margin-bottom: 10px;
}

.faq-accordion .accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-accordion .accordion .accordion-title {
  padding: 12px 20px 12px 51px;
  color:#004196;
  position: relative;
  display: block;
  font-size:16px;
  font-weight: 600;
   font-family: 'Khand';
}

.faq-accordion .accordion .accordion-title i {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  text-align: center;
  height: 100%;
  background:#f26203;
  color: #fff;
  font-size: 14px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.faq-accordion .accordion .accordion-title i::before {
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.faq-accordion .accordion .accordion-title.active i {
  background-color:#ec660d;
  color: #ffffff;
}

.faq-accordion .accordion .accordion-title.active i::before {
  content: "\f068";
}

.faq-accordion .accordion .accordion-content {
  display: none;
  padding: 15px 70px 15px 15px;
  border-top: 1px solid #eeeeee;
  font-family: 'Khand';
  font-size: 15px;
  color:#000;
}

/*================================================
Join With Us Area CSS
=================================================*/
.join-with-us-content {
  text-align: center;
  background: linear-gradient(to right, #ef6107, #fcfcfc, #1e7b30, #ffffff, #212199);
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 30px;
  padding-right: 30px;
}

.join-with-us-content .sub-title {
  display: block;
  color:#ffffff;
  margin-bottom: 8px;
  font-size: 17px;
  font-weight:700;
  font-family: "Work Sans", sans-serif;
}

.join-with-us-content h2 {
  position: relative;
  padding-bottom: 15px;
  color: #ffffff;
  max-width: 470px;
  font-size: 40px;
  font-weight: 700;
  margin-left: auto;
  margin-right: auto;
  margin-bottom:15px;
}
.join-with-us-content img{
    
}

.join-with-us-content h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 60px;
  background: #ffffff;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

.join-with-us-content form {
  position: relative;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 45px;
}

.join-with-us-content form .input-email {
  display: block;
  width: 100%;
  background-color: #ffffff;
  border: none;
  height: 65px;
  padding-left: 25px;
  border-radius: 70px;
  padding-top: 3px;
  outline: 0;
  color: #00264a;
  font-size: 16px;
  font-weight: 400;
  font-family: "Work Sans", sans-serif;
}

.join-with-us-content form .input-email::-webkit-input-placeholder {
  color: #737b9a;
}

.join-with-us-content form .input-email:-ms-input-placeholder {
  color: #737b9a;
}

.join-with-us-content form .input-email::-ms-input-placeholder {
  color: #737b9a;
}

.join-with-us-content form .input-email::placeholder {
  color: #737b9a;
}

.join-with-us-content form button {
  background-color: #212199;
  color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: inline-block;
  text-transform: uppercase;
  position: absolute;
  right: 4.3px;
  top: 4.3px;
  border: none;
  padding: 17px 35px;
  border-radius: 30px;
  font-family: "Work Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.join-with-us-content form button:hover {
  color: #ffffff;
  background-color: #00264a;
}

.join-with-us-content .shape {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  z-index: -1;
  opacity: 0.8;
  margin-left: auto;
  margin-right: auto;
}

/*================================================
Partner Area CSS
=================================================*/
.partner-item {
  border-right: 1px solid #f7f1f1;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.partner-item a {
  display: block;
  position: relative;
}

.partner-item a img:nth-child(1) {
  position: relative;
  display: inline-block !important;
  width: auto !important;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  opacity: 0.5;
}

.partner-item a img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
  transform: translate(-50%, 100%);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  display: inline-block !important;
  width: auto !important;
}

.partner-item a:hover img:nth-child(1) {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.partner-item a:hover img:nth-child(2) {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

/*================================================
FunFact Area CSS
=================================================*/
.single-funfact {
  text-align: center;
}

.single-funfact h3 {
  margin-bottom: 3px;
  font-size: 40px;
  font-weight: 700;
}

.single-funfact h3 .sign-icon {
  position: relative;
  top: 2px;
}

.single-funfact p {
  color: #212199;
  line-height: initial;
  font-size: 15px;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
}

/*================================================
Testimonial Area CSS
=================================================*/
.testimonial-image {
  text-align: center;
  position: relative;
  z-index: 1;
}

.testimonial-image .shape {
  position: absolute;
  left: 0;
  right: 0;
  z-index: -1;
  top: 100px;
  opacity: 0.8;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-slides {
  margin-bottom: 60px;
  margin-top: 40px;
}

.testimonial-slides.owl-theme .owl-nav {
  opacity: 0;
  visibility: hidden;
  margin-top: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.testimonial-slides.owl-theme .owl-nav [class*="owl-"] {
  position: absolute;
  left: -30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0;
  padding: 0;
  background-color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #bcbcbc;
  font-size: 25px;
}

.testimonial-slides.owl-theme .owl-nav [class*="owl-"].owl-next {
  left: auto;
  right: -30px;
}

.testimonial-slides.owl-theme .owl-nav [class*="owl-"]:hover {
  color: #212199;
  background-color: transparent;
}

.testimonial-slides.owl-theme:hover .owl-nav {
  opacity: 1;
  visibility: visible;
}

.testimonial-item {
  text-align: center;
  position: relative;
  padding-top: 75px;
}

.testimonial-item p {
  color: #00264a;
  margin-bottom: 15px;
  line-height: 1.5;
  font-size: 26px;
  font-style: italic;
}

.testimonial-item .name {
  display: block;
  color: #00264a;
  position: relative;
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  font-size: 18px;
}

.testimonial-item .name::before {
  content: "";
  position: relative;
  left: -5px;
  bottom: 4px;
  height: 2px;
  display: inline-block;
  width: 30px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#212199),
    color-stop(#ba367a),
    color-stop(#7b377c),
    color-stop(#3d336b),
    to(#00264a)
  );
  background: linear-gradient(
    to right,
    #212199,
    #ba367a,
    #7b377c,
    #3d336b,
    #00264a
  );
}

.testimonial-item::before {
  content: "\f113";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  color: #00264a;
  font-family: Flaticon;
  font-size: 70px;
  font-style: normal;
  margin-left: auto;
  margin-right: auto;
  margin-top: -27px;
}

/*================================================
Blog Area CSS
=================================================*/
.blog-area {
  position: relative;
  z-index: 1;
}

.single-blog-post {
  margin-bottom: 30px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2);
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2);
}

.single-blog-post .post-image {
  overflow: hidden;
}

.single-blog-post .post-image a {
  display: block;
}

.single-blog-post .post-image a img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-blog-post .post-content {
  padding: 25px;
  position: relative;
  z-index: 1;
}

.single-blog-post .post-content .post-meta {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-bottom: 11px;
}

.single-blog-post .post-content .post-meta ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.single-blog-post .post-content .post-meta ul li {
  display: inline-block;
  margin-right: 15px;
  font-size: 15px;
  color: #57647c;
  position: relative;
}

.single-blog-post .post-content .post-meta ul li::before {
  position: absolute;
  right: -10px;
  top: 5px;
  width: 1px;
  height: 14px;
  background-color: #57647c;
  content: "";
  -webkit-transform: rotate(10deg);
  transform: rotate(10deg);
}

.single-blog-post .post-content .post-meta ul li a {
  color: #212199;
  display: inline-block;
}

.single-blog-post .post-content .post-meta ul li:last-child {
  margin-right: 0;
}

.single-blog-post .post-content .post-meta ul li:last-child::before {
  display: none;
}

.single-blog-post .post-content h3 {
  margin-bottom: 10px;
  line-height: 1.4;
  font-size: 22px;
  font-weight: 600;
}

.single-blog-post .post-content h3 a {
  display: inline-block;
}

.single-blog-post .post-content .read-more-btn {
  color: #212199;
  position: relative;
  display: inline-block;
  margin-top: 5px;
  font-size: 15px;
  font-weight: 600;
}

.single-blog-post .post-content .read-more-btn::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  height: 1px;
  background: #212199;
}

.single-blog-post .post-content .read-more-btn i {
  font-size: 14px;
}

.single-blog-post .post-content .read-more-btn:hover::before {
  width: 100%;
}

.single-blog-post:hover .post-image a img {
  -webkit-transform: scale(1.2) rotate(4deg);
  transform: scale(1.2) rotate(4deg);
}

/*================================================
Blog Details Area CSS
=================================================*/
.blog-details-desc .article-image img {
  width: 100%;
  border-radius: 5px;
}

.blog-details-desc .article-content {
  margin-top: 25px;
}

.blog-details-desc .article-content .entry-meta {
  margin-bottom: -10px;
}

.blog-details-desc .article-content .entry-meta ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.blog-details-desc .article-content .entry-meta ul li {
  position: relative;
  display: inline-block;
  color: #00264a;
  margin-right: 21px;
}

.blog-details-desc .article-content .entry-meta ul li span {
  display: inline-block;
  color: #00264a;
  font-weight: 500;
}

.blog-details-desc .article-content .entry-meta ul li a {
  display: inline-block;
  color: #57647c;
}

.blog-details-desc .article-content .entry-meta ul li a:hover {
  color: #212199;
}

.blog-details-desc .article-content .entry-meta ul li i {
  color: #212199;
  margin-right: 2px;
}

.blog-details-desc .article-content .entry-meta ul li::before {
  content: "";
  position: absolute;
  top: 10px;
  right: -15px;
  width: 6px;
  height: 1px;
  background: #212199;
}

.blog-details-desc .article-content .entry-meta ul li:last-child {
  margin-right: 0;
}

.blog-details-desc .article-content .entry-meta ul li:last-child::before {
  display: none;
}

.blog-details-desc .article-content h3 {
  margin-bottom: 15px;
  margin-top: 25px;
  font-size: 24px;
  font-weight: 600;
}

.blog-details-desc .article-content .wp-block-gallery.columns-3 {
  padding-left: 0;
  list-style-type: none;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
  margin-bottom: 30px;
  margin-top: 30px;
}

.blog-details-desc .article-content .wp-block-gallery.columns-3 li {
  -ms-flex: 0 0 33.3333%;
  -webkit-box-flex: 0;
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
  padding-right: 10px;
  padding-left: 10px;
}

.blog-details-desc .article-content .wp-block-gallery.columns-3 li figure {
  margin-bottom: 0;
}

.blog-details-desc .article-content .features-list {
  padding-left: 0;
  list-style-type: none;
  margin-top: 25px;
  margin-bottom: 30px;
}

.blog-details-desc .article-content .features-list li {
  margin-bottom: 17px;
  position: relative;
  padding-left: 34px;
  color: #00264a;
}

.blog-details-desc .article-content .features-list li i {
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
  background-color: #faf5f5;
  color: #212199;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: inline-block;
  font-size: 11px;
  position: absolute;
  left: 0;
  top: -2px;
}

.blog-details-desc .article-content .features-list li:hover i {
  background-color: #212199;
  color: #ffffff;
}

.blog-details-desc .article-content .features-list li:last-child {
  margin-bottom: 0;
}

.blog-details-desc .article-footer {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 30px;
}

.blog-details-desc .article-footer .article-tags {
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
  flex: 0 0 50%;
  max-width: 50%;
  color: #57647c;
}

.blog-details-desc .article-footer .article-tags span {
  display: inline-block;
  color: #00264a;
  font-size: 20px;
  margin-right: 5px;
  position: relative;
  top: 2px;
}

.blog-details-desc .article-footer .article-tags a {
  display: inline-block;
  color: #57647c;
}

.blog-details-desc .article-footer .article-tags a:hover {
  color: #212199;
}

.blog-details-desc .article-footer .article-share {
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
  flex: 0 0 50%;
  max-width: 50%;
}

.blog-details-desc .article-footer .article-share .social {
  padding-left: 0;
  list-style-type: none;
  text-align: right;
  margin-bottom: 0;
}

.blog-details-desc .article-footer .article-share .social li {
  display: inline-block;
}

.blog-details-desc .article-footer .article-share .social li span {
  display: inline-block;
  margin-right: 2px;
  font-weight: 500;
  color: #57647c;
}

.blog-details-desc .article-footer .article-share .social li a {
  display: block;
  color: #212199;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 50%;
  background-color: #eeeef0;
  text-align: center;
  font-size: 14px;
}

.blog-details-desc .article-footer .article-share .social li a:hover {
  color: #ffffff;
  background-color: #212199;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.blog-details-desc .post-navigation {
  margin-top: 30px;
}

blockquote,
.blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 50px !important;
  position: relative;
  text-align: center;
  z-index: 1;
  margin-bottom: 20px;
  margin-top: 20px;
}

blockquote p,
.blockquote p {
  color: #00264a;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 600;
  font-size: 22px !important;
}

blockquote cite,
.blockquote cite {
  display: none;
}

blockquote::before,
.blockquote::before {
  color: #efefef;
  content: "\f10e";
  position: absolute;
  left: 50px;
  top: -50px;
  z-index: -1;
  font-family: "Font Awesome 5 Free";
  font-size: 140px;
  font-weight: 900;
}

blockquote::after,
.blockquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #212199;
  margin-top: 20px;
  margin-bottom: 20px;
}

.post-navigation {
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  padding-top: 20px;
  padding-bottom: 20px;
}

.post-navigation .navigation-links {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.post-navigation .navigation-links .nav-previous {
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
  flex: 0 0 50%;
  max-width: 50%;
}

.post-navigation .navigation-links .nav-previous a i {
  margin-right: 2px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.post-navigation .navigation-links .nav-previous a:hover i {
  margin-right: 0;
}

.post-navigation .navigation-links .nav-next {
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
  flex: 0 0 50%;
  max-width: 50%;
  text-align: right;
}

.post-navigation .navigation-links .nav-next a i {
  margin-left: 2px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.post-navigation .navigation-links .nav-next a:hover i {
  margin-left: 0;
}

.post-navigation .navigation-links div a {
  display: inline-block;
  font-weight: 600;
}

.comments-area {
  padding: 25px;
  margin-top: 30px;
  -webkit-box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.08);
  box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.08);
  background-color: #ffffff;
}

.comments-area .comments-title {
  position: relative;
  margin-bottom: 30px;
  line-height: initial;
  font-size: 23px;
  font-weight: 600;
}

.comments-area .comments-title::before {
  content: "";
  height: 25px;
  width: 3px;
  left: -25px;
  position: absolute;
  background: #212199;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.comments-area ol,
.comments-area ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.comments-area .comment-list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.comments-area .children {
  margin-left: 20px;
}

.comments-area .comment-body {
  border-bottom: 1px solid #eeeeee;
  padding-left: 65px;
  color: #00264a;
  font-size: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.comments-area .comment-body .reply {
  margin-top: 15px;
}

.comments-area .comment-body .reply a {
  border: 1px solid #ded9d9;
  color: #00264a;
  display: inline-block;
  padding: 6px 20px;
  border-radius: 30px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  font-size: 13px;
  font-weight: 600;
}

.comments-area .comment-body .reply a:hover {
  color: #ffffff;
  background-color: #212199;
  border-color: #212199;
}

.comments-area .comment-author {
  font-size: 16px;
  margin-bottom: 0.3em;
  position: relative;
  z-index: 2;
}

.comments-area .comment-author .avatar {
  height: 50px;
  left: -65px;
  position: absolute;
  width: 50px;
  top: 5px;
}

.comments-area .comment-author .fn {
  font-weight: 600;
}

.comments-area .comment-author .says {
  display: none;
}

.comments-area .comment-metadata {
  margin-bottom: 0.7em;
  color: #57647c;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
}

.comments-area .comment-metadata a {
  color: #57647c;
}

.comments-area .comment-metadata a:hover {
  color: #212199;
}

.comments-area .comment-respond {
  margin-top: 30px;
}

.comments-area .comment-respond .comment-reply-title {
  margin-bottom: 0;
  position: relative;
  font-size: 23px;
  font-weight: 600;
}

.comments-area .comment-respond .comment-reply-title::before {
  content: "";
  height: 25px;
  width: 3px;
  left: -25px;
  position: absolute;
  background: #212199;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.comments-area
  .comment-respond
  .comment-reply-title
  #cancel-comment-reply-link {
  display: inline-block;
}

.comments-area .comment-respond .comment-form {
  overflow: hidden;
}

.comments-area .comment-respond .comment-notes {
  margin-bottom: 0;
  margin-top: 10px;
}

.comments-area .comment-respond .comment-notes .required {
  color: red;
}

.comments-area .comment-respond .comment-form-comment {
  margin-top: 15px;
  float: left;
  width: 100%;
}

.comments-area .comment-respond label {
  display: block;
  font-weight: 600;
  color: #00264a;
  margin-bottom: 5px;
}

.comments-area .comment-respond input[type="date"],
.comments-area .comment-respond input[type="time"],
.comments-area .comment-respond input[type="datetime-local"],
.comments-area .comment-respond input[type="week"],
.comments-area .comment-respond input[type="month"],
.comments-area .comment-respond input[type="text"],
.comments-area .comment-respond input[type="email"],
.comments-area .comment-respond input[type="url"],
.comments-area .comment-respond input[type="password"],
.comments-area .comment-respond input[type="search"],
.comments-area .comment-respond input[type="tel"],
.comments-area .comment-respond input[type="number"],
.comments-area .comment-respond textarea {
  display: block;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.comments-area .comment-respond input[type="date"]:focus,
.comments-area .comment-respond input[type="time"]:focus,
.comments-area .comment-respond input[type="datetime-local"]:focus,
.comments-area .comment-respond input[type="week"]:focus,
.comments-area .comment-respond input[type="month"]:focus,
.comments-area .comment-respond input[type="text"]:focus,
.comments-area .comment-respond input[type="email"]:focus,
.comments-area .comment-respond input[type="url"]:focus,
.comments-area .comment-respond input[type="password"]:focus,
.comments-area .comment-respond input[type="search"]:focus,
.comments-area .comment-respond input[type="tel"]:focus,
.comments-area .comment-respond input[type="number"]:focus,
.comments-area .comment-respond textarea:focus {
  border-color: #212199;
}

.comments-area .comment-respond .comment-form-author {
  float: left;
  width: 50%;
  padding-right: 10px;
  margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-email {
  float: left;
  width: 50%;
  padding-left: 12px;
  margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-url {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-cookies-consent {
  width: 100%;
  float: left;
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-cookies-consent input {
  position: absolute;
  left: 0;
  top: 6px;
}

.comments-area .comment-respond .comment-form-cookies-consent label {
  display: inline-block;
  margin: 0;
  color: #57647c;
  font-weight: normal;
}

.comments-area .comment-respond .form-submit {
  float: left;
  width: 100%;
}

.comments-area .comment-respond .form-submit input {
  background: #212199;
  border: none;
  color: #ffffff;
  border-radius: 50px;
  padding: 13px 35px;
  display: inline-block;
  cursor: pointer;
  outline: 0;
  text-transform: uppercase;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-weight: 600;
  font-size: 14px;
}

.comments-area .comment-respond .form-submit input:hover,
.comments-area .comment-respond .form-submit input:focus {
  color: #ffffff;
  background-color: #00264a;
}

/*================================================
Page Title Area CSS
=================================================*/
.page-title-area {
  position: relative;
  z-index: 1;
  padding-top: 140px;
  padding-bottom: 130px;
  background-color: #00264a;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-title-area::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(
    to right,
    #ef6107,
    #14148c,
    #1e7b30,
    #f68d41,
    #212199
  );
  opacity: 0.65;
}

.page-title-area.item-bg1 {
  background-image: url(../img/main-banner1.jpg);
}

.page-title-area.item-bg2 {
  background-image: url(../img/main-banner2.jpg);
}

.page-title-area.item-bg3 {
  background-image: url(../img/main-banner3.jpg);
}
.page-title-area.item-bg4 {
  background-image: url(../img/main-banner4.jpg);
}
.page-title-content h2 {
  margin-bottom: 0;
  word-wrap: break-word;
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
}

.page-title-content ul {
  word-break: break-all;
  padding-left: 0;
  list-style-type: none;
  font-family: "Work Sans", sans-serif;
  margin-top: 10px;
  margin-bottom: 0;
}

.page-title-content ul li {
  display: inline-block;
  color: #ffffff;
  margin-right: 10px;
  margin-left: 10px;
  position: relative;
  font-weight: 500;
  font-size: 16px;
}

.page-title-content ul li::before {
  content: "\f054";
  position: absolute;
  right: -15px;
  top: 6px;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  font-size: 10px;
}

.page-title-content ul li a {
  color: #ffffff;
}

.page-title-content ul li a:hover {
  color: #212199;
}

.page-title-content ul li:first-child {
  margin-left: 0;
}

.page-title-content ul li:last-child {
  margin-right: 0;
}

.page-title-content ul li:last-child::before {
  display: none;
}

/*================================================
Gallery Area CSS
=================================================*/
.single-gallery-box {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
}

.single-gallery-box .gallery-content {
  position: absolute;
  left: 0;
  bottom: 15px;
  background-color: #ffffff;
  height: auto;
  width: 100%;
  padding: 5px;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s ease;
  transition: opacity 0.3s, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s;
  transition: transform 0.3s ease, opacity 0.3s, -webkit-transform 0.3s ease;
  max-width: 370px;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.single-gallery-box .gallery-content h3 {
  margin-bottom: 0;
  -webkit-transform: translateX(20px);
  transform: translateX(20px);
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s ease;
  transition: opacity 0.3s, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s;
  transition: transform 0.3s ease, opacity 0.3s, -webkit-transform 0.3s ease;
  opacity: 0;
  font-size: 15px;
  font-weight: 600;
}

.single-gallery-box .gallery-content .category {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: #57647c;
  opacity: 0;
  -webkit-transform: translateX(20px);
  transform: translateX(20px);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.single-gallery-box .plus-icon a {
  background-color: #212199;
  width: 85px;
  height: 85px;
  position: absolute;
  top: 25px;
  right: 25px;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  overflow: hidden;
  border-radius: 50%;
}

.single-gallery-box .plus-icon a span {
  width: 35px;
  height: 35px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.single-gallery-box .plus-icon a span::after,
.single-gallery-box .plus-icon a span::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  background-color: #ffffff;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.single-gallery-box .plus-icon a span::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.single-gallery-box .plus-icon a:hover {
  background-color: #00264a;
}

.single-gallery-box:hover .gallery-content {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.single-gallery-box:hover .gallery-content h3 {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 0.5s 0.3s, -webkit-transform 0.5s ease 0.5s;
  transition: opacity 0.5s 0.3s, -webkit-transform 0.5s ease 0.5s;
  transition: transform 0.5s ease 0.5s, opacity 0.5s 0.3s;
  transition: transform 0.5s ease 0.5s, opacity 0.5s 0.3s,
    -webkit-transform 0.5s ease 0.5s;
}

.single-gallery-box:hover .gallery-content .category {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 0.5s 0.6s, -webkit-transform 0.5s ease 0.6s;
  transition: opacity 0.5s 0.6s, -webkit-transform 0.5s ease 0.6s;
  transition: transform 0.5s ease 0.6s, opacity 0.5s 0.6s;
  transition: transform 0.5s ease 0.6s, opacity 0.5s 0.6s,
    -webkit-transform 0.5s ease 0.6s;
}

.single-gallery-box:hover .plus-icon a {
  -webkit-transform: scale(1);
  transform: scale(1);
}

/*================================================
Pagination Area CSS
=================================================*/
.pagination-area {
  margin-top: 10px;
  text-align: center;
}

.pagination-area .page-numbers {
  width: 45px;
  height: 45px;
  margin: 0 2px;
  display: inline-block;
  background-color: #ffffff;
  line-height: 45px;
  color: #00264a;
  -webkit-box-shadow: 0 2px 10px 0 #d8dde6;
  box-shadow: 0 2px 10px 0 #d8dde6;
  border-radius: 50px !important;
  font-size: 18px;
  font-weight: 700;
}

.pagination-area .page-numbers.current,
.pagination-area .page-numbers:hover,
.pagination-area .page-numbers:focus {
  background: #212199;
  color: #ffffff;
  -webkit-box-shadow: 0 2px 10px 0 #d8dde6;
  box-shadow: 0 2px 10px 0 #d8dde6;
}

/*================================================
Sidebar Widget Area CSS
=================================================*/
.widget-area .widget {
  margin-top: 35px;
}

.widget-area .widget:first-child {
  margin-top: 0;
}

.widget-area .widget .widget-title {
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 10px;
  margin-bottom: 20px;
  text-transform: capitalize;
  position: relative;
  font-weight: 600;
  font-size: 22px;
}

.widget-area .widget .widget-title::before {
  content: "";
  position: absolute;
  background: #212199;
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 1px;
}

.widget-area .widget_search {
  -webkit-box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
  box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
  background-color: #ffffff;
  padding: 15px;
}

.widget-area .widget_search form {
  position: relative;
}

.widget-area .widget_search form label {
  display: block;
  margin-bottom: 0;
}

.widget-area .widget_search form .screen-reader-text {
  display: none;
}

.widget-area .widget_search form .search-field {
  background-color: transparent;
  height: 50px;
  padding: 6px 15px;
  border: 1px solid #eeeeee;
  width: 100%;
  display: block;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.widget-area .widget_search form .search-field:focus {
  border-color: #212199;
}

.widget-area .widget_search form button {
  position: absolute;
  right: 0;
  outline: 0;
  bottom: 0;
  height: 50px;
  width: 50px;
  z-index: 1;
  border: none;
  color: #ffffff;
  background-color: #212199;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.widget-area .widget_search form button:hover {
  background-color: #00264a;
  color: #ffffff;
}

.widget-area .widget_poxo_posts_thumb {
  position: relative;
  overflow: hidden;
}

.widget-area .widget_poxo_posts_thumb .item {
  overflow: hidden;
  margin-bottom: 15px;
}

.widget-area .widget_poxo_posts_thumb .item:last-child {
  margin-bottom: 0;
}

.widget-area .widget_poxo_posts_thumb .item .thumb {
  float: left;
  height: 80px;
  overflow: hidden;
  position: relative;
  width: 80px;
  margin-right: 15px;
}

.widget-area .widget_poxo_posts_thumb .item .thumb .fullimage {
  width: 80px;
  height: 80px;
  display: inline-block;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center !important;
}

.widget-area .widget_poxo_posts_thumb .item .thumb .fullimage.bg1 {
  background-image: url(../img/blog/7.jpg);
}

.widget-area .widget_poxo_posts_thumb .item .thumb .fullimage.bg2 {
  background-image: url(../img/blog/8.jpg);
}

.widget-area .widget_poxo_posts_thumb .item .thumb .fullimage.bg3 {
  background-image: url(../img/blog/9.jpg);
}

.widget-area .widget_poxo_posts_thumb .item .info {
  overflow: hidden;
  margin-top: 5px;
}

.widget-area .widget_poxo_posts_thumb .item .info time {
  display: block;
  color: #57647c;
  text-transform: uppercase;
  margin-top: 5px;
  margin-bottom: 3px;
  font-size: 11px;
}

.widget-area .widget_poxo_posts_thumb .item .info .title {
  margin-bottom: 0;
  line-height: 1.4;
  font-size: 16px;
  font-weight: 600;
}

.widget-area .widget_poxo_posts_thumb .item .info .title a {
  display: inline-block;
}

.widget-area .widget_recent_entries ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  font-family: "Work Sans", sans-serif;
}

.widget-area .widget_recent_entries ul li {
  position: relative;
  margin-bottom: 12px;
  color: #00264a;
  padding-left: 14px;
  line-height: 1.5;
  font-weight: 600;
  font-size: 15px;
}

.widget-area .widget_recent_entries ul li:last-child {
  margin-bottom: 0;
}

.widget-area .widget_recent_entries ul li::before {
  background: #212199;
  position: absolute;
  height: 7px;
  width: 7px;
  content: "";
  left: 0;
  top: 7px;
}

.widget-area .widget_recent_entries ul li a {
  display: inline-block;
  color: #00264a;
}

.widget-area .widget_recent_entries ul li a:hover {
  color: #212199;
}

.widget-area .widget_recent_entries ul li .post-date {
  display: block;
  font-size: 13px;
  color: #57647c;
  margin-top: 4px;
}

.widget-area .widget_recent_comments ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  font-family: "Work Sans", sans-serif;
}

.widget-area .widget_recent_comments ul li {
  position: relative;
  margin-bottom: 12px;
  color: #57647c;
  padding-left: 14px;
  line-height: 1.5;
  font-weight: 600;
  font-size: 15px;
}

.widget-area .widget_recent_comments ul li:last-child {
  margin-bottom: 0;
}

.widget-area .widget_recent_comments ul li::before {
  background: #212199;
  position: absolute;
  height: 7px;
  width: 7px;
  content: "";
  left: 0;
  top: 7px;
}

.widget-area .widget_recent_comments ul li a {
  display: inline-block;
  color: #00264a;
}

.widget-area .widget_recent_comments ul li a:hover {
  color: #212199;
}

.widget-area .widget_archive ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  font-family: "Work Sans", sans-serif;
}

.widget-area .widget_archive ul li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 14px;
  color: #00264a;
  font-size: 15px;
  font-weight: 600;
}

.widget-area .widget_archive ul li:last-child {
  margin-bottom: 0;
}

.widget-area .widget_archive ul li::before {
  background: #212199;
  height: 7px;
  width: 7px;
  content: "";
  left: 0;
  top: 7px;
  position: absolute;
}

.widget-area .widget_archive ul li a {
  display: inline-block;
  color: #00264a;
}

.widget-area .widget_archive ul li a:hover {
  color: #212199;
}

.widget-area .widget_categories ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  font-family: "Work Sans", sans-serif;
}

.widget-area .widget_categories ul li {
  position: relative;
  margin-bottom: 12px;
  color: #57647c;
  padding-left: 14px;
  font-size: 15px;
  font-weight: 600;
}

.widget-area .widget_categories ul li:last-child {
  margin-bottom: 0;
}

.widget-area .widget_categories ul li::before {
  background: #212199;
  height: 7px;
  width: 7px;
  content: "";
  left: 0;
  top: 7px;
  position: absolute;
}

.widget-area .widget_categories ul li a {
  color: #00264a;
  display: block;
}

.widget-area .widget_categories ul li a:hover {
  color: #212199;
}

.widget-area .widget_categories ul li .post-count {
  float: right;
}

.widget-area .widget_meta ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  font-family: "Work Sans", sans-serif;
}

.widget-area .widget_meta ul li {
  position: relative;
  margin-bottom: 12px;
  color: #00264a;
  padding-left: 14px;
  font-size: 15px;
  font-weight: 600;
}

.widget-area .widget_meta ul li:last-child {
  margin-bottom: 0;
}

.widget-area .widget_meta ul li::before {
  background: #212199;
  height: 7px;
  width: 7px;
  content: "";
  left: 0;
  top: 7px;
  position: absolute;
}

.widget-area .widget_meta ul li a {
  display: inline-block;
  color: #00264a;
}

.widget-area .widget_meta ul li a:hover {
  color: #212199;
}

.widget-area .widget_tag_cloud .widget-title {
  margin-bottom: 12px;
}

.widget-area .tagcloud a {
  display: inline-block;
  color: #00264a;
  font-weight: 600;
  font-size: 13.5px !important;
  padding: 6px 13px;
  border: 1px dashed #eeeeee;
  margin-top: 8px;
  margin-right: 4px;
}

.widget-area .tagcloud a:hover,
.widget-area .tagcloud a:focus {
  color: #ffffff;
  background-color: #212199;
  border-color: #212199;
}

.widget-area .widget_events_details ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.widget-area .widget_events_details ul li {
  border-bottom: 1px solid #eeeeee;
  color: #57647c;
  padding-bottom: 10px;
  padding-top: 10px;
}

.widget-area .widget_events_details ul li:first-child {
  padding-top: 0;
}

.widget-area .widget_events_details ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.widget-area .widget_events_details ul li span {
  display: inline-block;
  color: #00264a;
  font-weight: 600;
}

.widget-area .widget_events_details ul li a {
  display: inline-block;
  color: #57647c;
}

.widget-area .widget_events_details ul li a:hover {
  color: #212199;
}

/*================================================
404 Error Area CSS
=================================================*/
.error-area {
  height: 100vh;
}

.error-content {
  text-align: center;
  margin: 0 auto;
  max-width: 700px;
}

.error-content h3 {
  font-size: 40px;
  font-weight: 700;
  margin-top: 45px;
  margin-bottom: 15px;
}

.error-content p {
  max-width: 520px;
  margin: 0 auto 20px;
}

/*================================================
Issues Area CSS
=================================================*/
.single-issues-box {
  margin-bottom: 30px;
  background-color: #ffffff;
  position: relative;
  -webkit-box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-issues-box .issues-content {
  padding: 25px;
}

.single-issues-box .issues-content span {
  display: block;
  text-transform: uppercase;
  color: #57647c;
  margin-bottom: 8px;
}

.single-issues-box .issues-content h3 {
  margin-bottom: 8px;
  line-height: 1.4;
  font-size: 23px;
  font-weight: 600;
}

.single-issues-box .issues-content h3 a {
  display: inline-block;
}

.single-issues-box .issues-content .read-more-btn {
  color: #212199;
  position: relative;
  display: inline-block;
  margin-top: 5px;
  font-size: 15px;
  font-weight: 600;
}

.single-issues-box .issues-content .read-more-btn::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  height: 1px;
  background: #212199;
}

.single-issues-box .issues-content .read-more-btn i {
  font-size: 14px;
}

.single-issues-box .issues-content .read-more-btn:hover::before {
  width: 100%;
}

.single-issues-box::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#00264a),
    color-stop(#3d336b),
    color-stop(#7b377c),
    color-stop(#ba367a),
    to(#212199)
  );
  background: linear-gradient(
    to right,
    #00264a,
    #3d336b,
    #7b377c,
    #ba367a,
    #212199
  );
  -webkit-transition: 0.5s;
  transition: 0.5s;
  height: 4px;
  opacity: 0;
  visibility: hidden;
}

.single-issues-box:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}

.single-issues-box:hover::before {
  opacity: 1;
  visibility: visible;
}

/*================================================
Contact Area CSS
=================================================*/
.contact-area {
  position: relative;
  z-index: 1;
}

.contact-area .section-title {
  margin-bottom: 40px;
  text-align: left;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.contact-area .section-title h2::before {
  margin-left: 0;
  margin-right: 0;
}

.contact-form form .form-control {
  background-color: #ffffff;
  border: none;
  -webkit-box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.2) !important;
  box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.2) !important;
  height: 57px;
  font-size: 14px;
  padding-left: 15px;
  color: #00264a;
}

.contact-form form .form-group {
  text-align: left;
  margin-bottom: 20px;
}
.contact-form form .form-group label {
  color: #eb6307;
  font-size: 15px;
  padding: 10px;
}
.contact-form form .row {
  margin-left: -7px;
  margin-right: -7px;
}

.contact-form form .row .col-lg-12,
.contact-form form .row .col-lg-6 {
  padding-left: 7px;
  padding-right: 7px;
}

.contact-form form textarea.form-control {
  height: auto;
  padding-top: 15px;
}

.contact-form form .default-btn {
  border: none;
  -webkit-box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.5) !important;
  box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.5) !important;
}

.contact-form form .help-block ul {
  padding-left: 0;
  list-style-type: none;
  margin-top: 5px;
  margin-bottom: 0;
}

.contact-form form .help-block ul li {
  color: red;
}

.contact-form form #msgSubmit {
  margin-bottom: 0;
  text-align: center !important;
}

.contact-form form #msgSubmit.text-danger,
.contact-form form #msgSubmit.text-success {
  margin-top: 8px;
  text-align: left !important;
  font-size: 20px;
  font-weight: 600;
}

.contact-info {
  padding-right: 35px;
}

.contact-info .contact-list {
  margin-bottom: 0;
  list-style-type: none;
  padding-right: 20px;
  padding-left: 0;
}

.contact-info .contact-list li {
  position: relative;
  padding-left: 95px;
  color: #57647c;
  margin-bottom: 25px;
  font-size: 15px;
}

.contact-info .contact-list li .icon {
  border: 1px dashed #ec6712;
  width: 75px;
  height: 75px;
  line-height: 74px;
  color: #ffffff;
  border-radius: 50%;
  font-size: 30px;
  text-align: center;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}

.contact-info .contact-list li .icon::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #ec6712;
  border-radius: 50%;
  margin: 6px;
  z-index: -1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.contact-info .contact-list li .icon i.flaticon-email {
  position: relative;
  display: inline-block;
  top: -2px;
}

.contact-info .contact-list li .icon i.flaticon-map-location {
  position: relative;
  display: inline-block;
  top: -2px;
}

.contact-info .contact-list li span {
  display: block;
  margin-bottom: 5px;
  color: #00264a;
  font-size: 21px;
  font-weight: 600;
  font-family: "Work Sans", sans-serif;
}

.contact-info .contact-list li a {
  color: #57647c;
  display: block;
  margin-bottom: 2px;
}

.contact-info .contact-list li a:hover {
  color: #212199;
}

.contact-info .contact-list li a:last-child {
  margin-bottom: 0;
}

.contact-info .contact-list li:last-child {
  margin-bottom: 0;
}

.contact-info .contact-list li:hover .icon::before {
  margin: 0;
}

.contact-info .social {
  padding-left: 95px;
  list-style-type: none;
  margin-bottom: 0;
  margin-top: 20px;
}

.contact-info .social li {
  display: inline-block;
  margin-right: 3px;
}

.contact-info .social li a {
  display: inline-block;
  background-color: #f1f4f4;
  color: #212199;
  width: 50px;
  font-size: 20px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
}

.contact-info .social li a i.flaticon-facebook {
  display: inline-block;
  padding-left: 4px;
}

.contact-info .social li a i.flaticon-twitter {
  display: inline-block;
  position: relative;
  top: 2px;
}

.contact-info .social li a:hover {
  background-color: #212199;
  color: #ffffff;
}

.contact-info .social li:last-child {
  margin-right: 0;
}

.bg-map {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
  text-align: center;
  margin: 0 auto;
  opacity: 0.3;
}

/*================================================
Footer Area CSS
=================================================*/
.footer-area {
  padding-top: 80px;
  background-color: #f26507;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.footer-area::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url(../img/bg-map.png);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}

.single-footer-widget {
  margin-bottom: 30px;
}

.single-footer-widget h3 {
  margin-bottom: 35px;
  color: #ffffff;
  position: relative;
  padding-bottom: 8px;
  border-bottom: 1px solid #4e5e6a;
  font-size: 23px;
  font-weight: 600;
}

.single-footer-widget h3::before {
  bottom: -1px;
  left: 0;
  width: 55px;
  height: 1px;
  background-color: #ffffff;
  content: "";
  position: absolute;
}

.single-footer-widget .footer-quick-links {
  padding-left: 0;
  list-style-type: none;
  display: block;
}

.single-footer-widget .footer-quick-links li {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 15px;
}

.single-footer-widget .footer-quick-links li a {
  display: inline-block;
  color: #ffffff;
}

.single-footer-widget .footer-quick-links li a:hover {
  color: #212199;
}

.single-footer-widget .footer-contact-info {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.single-footer-widget .footer-contact-info li {
  color: #ffffff;
  padding-left: 55px;
  position: relative;
  margin-bottom: 25px;
  font-size: 13px;
}

.single-footer-widget .footer-contact-info li:last-child {
  margin-bottom: 0;
}

.single-footer-widget .footer-contact-info li i {
  font-size: 35px;
  color: #fff;
  position: absolute;
  left: 0;
  top: 0;
}

.single-footer-widget .footer-contact-info li span {
  display: block;
  margin-bottom: 5px;

}

.single-footer-widget .footer-contact-info li a {
  display: inline-block;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
}

.single-footer-widget .footer-contact-info li a:hover {
  color: #212199;
}

.single-footer-widget .footer-contact-info li .social {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.single-footer-widget .footer-contact-info li .social li {
  display: inline-block;
  padding-left: 0;
  margin-right: 15px;
  margin-bottom: 0;
}

.single-footer-widget .footer-contact-info li .social li a {
  display: inline-block;
}

.single-footer-widget .footer-contact-info li .social li a i {
  position: relative;
  color: #ffffff;
  font-size: 17px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-footer-widget .footer-contact-info li .social li a:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.single-footer-widget .footer-contact-info li .social li a:hover i {
  color: #212199;
}

.single-footer-widget .footer-contact-info li .social li:last-child {
  margin-right: 0;
}

.single-footer-widget .footer-instagram-post {
  padding-left: 0;
  list-style-type: none;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
  margin-bottom: 0;
  margin-top: -10px;
}

.single-footer-widget .footer-instagram-post li {
  -ms-flex: 0 0 33.333333%;
  -webkit-box-flex: 0;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 10px;
}

.single-footer-widget .footer-instagram-post li a {
  display: block;
}

.single-footer-widget .footer-instagram-post li a:hover {
  opacity: 0.6;
}

.copyright-area {
  border-top: 1px solid #4e5e6a;
  padding-top: 25px;
  padding-bottom: 25px;
}

.copyright-area p {
  color: #ffffff;
  margin-bottom: 0;
}

.copyright-area p a {
  display: inline-block;
  color: #ffffff;
}

.copyright-area p a:hover {
  color: #212199;
}

.copyright-area ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  text-align: right;
}

.copyright-area ul li {
  display: inline-block;
  margin: 0 10px;
  color: #ffffff;
  position: relative;
}

.copyright-area ul li a {
  display: inline-block;
  color: #ffffff;
}

.copyright-area ul li a:hover {
  color: #212199;
}

.copyright-area ul li::before {
  content: "";
  position: absolute;
  right: -13px;
  top: 4.1px;
  width: 1px;
  height: 14px;
  background-color: #ffffff;
}

.copyright-area ul li:first-child {
  margin-left: 0;
}

.copyright-area ul li:last-child {
  margin-right: 0;
}

.copyright-area ul li:last-child::before {
  display: none;
}

/*================================================
Go Top CSS
=================================================*/
.go-top {
  position: fixed;
  cursor: pointer;
  top: 0;
  right: 15px;
  color: #ffffff;
  background-color: #00264a;
  z-index: 4;
  width: 40px;
  text-align: center;
  height: 42px;
  line-height: 42px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.9s;
  transition: 0.9s;
  font-size: 16px;
}

.go-top.active {
  top: 98%;
  -webkit-transform: translateY(-98%);
  transform: translateY(-98%);
  opacity: 1;
  visibility: visible;
}

.go-top i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.go-top i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%;
}

.go-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #212199;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.go-top:hover,
.go-top:focus {
  color: #ffffff;
}

.go-top:hover::before,
.go-top:focus::before {
  opacity: 1;
  visibility: visible;
}

.go-top:hover i:first-child,
.go-top:focus i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}

.go-top:hover i:last-child,
.go-top:focus i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}
.header-logo {
  width: 100px;
}
.header-logo-2{
    width:220px;
}
.forum-list {
  padding: 0px;
}
.forum-list li {
  color: #000;
  padding: 7px;
  list-style-type: none;
}
.forum-list-dec {
  padding: 0 5px;
  text-align: justify;
}
.forum-list-dec p {
  color: #000;
}
.forum-list-icon i {
  color: #f2650d;
  font-size: 15px;
}
.forum-imp h3 {
  padding: 5px;
  margin: 0px;
  color: #3f3e9f;
  font-size: 20px;
  font-weight: bold;
}
.forum-logo p {
  color: #f2650d;
  font-size: 10px;
}
.forum-section h3 {
  padding: 5px;
  margin: 0px;
  color: #3f3e9f;
  font-size: 20px;
  font-weight: bold;
}
.forum-section p {
  color: #000;
  text-align: justify;
}
.forum-logo img {
  width: 260px;
}
.forum-form {
  width: 50%;
}
.forum-form form .form-group label {
  font-size:14px;
  padding: 0;
  color: #ef6611;
}
.forum-form form .form-control {
  color: #0d0e91;
  border: 1px solid #000;
  border-radius: 5px;
}
.forum-form form .default-btn {
  background-color: #0d0e91;
  border-radius: 5px;
}
@media only screen and (max-width: 992px) {
  .forum-form {
    width: 100%;
  }
  .work-img{
    width:100%;
}
}

.form-check-label{
    color:#000 !important;
}
.work-img{
    width: 40%;
    margin: 10px;
}
.forum-section {
    font-family: 'Khand';
    font-size: 20px;
}
.forum-imp{
  font-family: 'Khand';
    font-size: 20px;
}

/*# sourceMappingURL=style.css.map */
