/*@font-face {
  font-family: Montserrat;
  src: url("../fonts/Montserrat-Bold.ttf");
}
@font-face {
  font-family: Montserrat-Regular;
  src: url("../fonts/Montserrat-Regular.ttf");
}*/
@font-face {
	font-family: Bryant;
	src: url("assets/fonts/bryant/BryantPro-Regular.otf") format("opentype");
	src: url("assets/fonts/bryant/BryantPro-Medium.otf") format("opentype");
}
body {
  font-family: 'Bryant', sans-serif !important;
  color: #444444;
}

a {
  color: #fc8002;
  text-decoration: none;
}

a:hover {
  color: #3b8af2;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Bryant', sans-serif !important;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fc8002;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #fc8002;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #3284f1;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #143855;
  height: 45px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}

#topbar .contact-info a {
  font-style: normal;
  color: #fff;
  margin-left: 20px;
}
#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}
#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  transition: 0.3s;
}
#topbar .social-links a:hover {
  color: #fff;
  text-decoration: underline;
}
#topbar .social-links a {
  color: #fff;
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}
#topbar .social-links span {
  color: #fff;
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}
@media (max-width: 768px) {
  #topbar .contact-info {
    margin-left: 40px;
  }
}
/* @media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
} */

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 70px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#header.fixed-top {
  height: 70px;
}
#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: "Poppins", sans-serif;
}
#header .logo a {
  color: #222222;
}
#header .logo a span {
  color: #fc8002;
}
#header .logo img {
  max-height: 40px;
}

.scrolled-offset {
  margin-top: 117px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar > ul > li {
  white-space: nowrap;
  padding: 10px 0 10px 15px;
}
.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 15px;
  font-weight: 600;
  color: #222222;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}
.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #fc8002;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}
.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #fc8002;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 28px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-weight: 400;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #fc8002;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}
.navbar-mobile > ul > li {
  padding: 0;
}
.navbar-mobile a:hover:before,
.navbar-mobile li:hover > a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #fc8002;
}
.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #fc8002;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* #hero {
  width: 100%;
  height: 75vh;

  /* background: url("../img/hero-bg.png") top left;
    background-size: contain; 
    position: relative;
} */
#hero img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
/* #hero:before {
    content: "";
    background: rgba(255, 255, 255, 0.6);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}
#hero .container {
    position: relative;
} */
#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #222222;
  font-family: "Poppins", sans-serif;
}
#hero h1 span {
  color: #fc8002;
}
#hero h2 {
  color: #555555;
  margin: 5px 0 30px 0;
  font-size: 24px;
  font-weight: 400;
}
#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #fc8002;
}
#hero .btn-get-started:hover {
  background: #247cf0;
}
#hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: #222222;
  font-weight: 600;
  display: flex;
  align-items: center;
}

/* @media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 768px) {
  #hero {
    height: 1vh;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .btn-get-started,
  #hero .btn-watch-video {
    font-size: 13px;
  }
}
@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}
 */
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  /* padding: 60px 0; */
  overflow: hidden;
}

.section-bg {
  background-color: #143855;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #e7f1fd;
  color: #fc8002;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}
.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: bold;
  color: #143855;
  text-transform: uppercase;
  /* border-bottom: 5px solid #fc8002; */
  /* padding-bottom: 5px; */
}
.section-title h3 span {
  color: #fc8002;
}
.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 600;
}
@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# Request Service
--------------------------------------------------------------*/
.request {
  margin-left: 45px;
  margin-right: 45px;
}
.request .php-form h3 {
  font-size: 24px;
  color: #fc8002;
  font-weight: 800;
}

.request .php-form .form-group {
  margin-top: 8px;
  margin-bottom: 8px;
}
.request .php-form input {
  border-radius: 5;
  border: none;
  box-shadow: none;
  font-size: 14px;
  padding: 10px 15px;
  background-color: #fff;
}
.request .php-form input:focus {
  border-color: #fc8002;
}
.request .php-form button[type="submit"] {
  background: #fc8002;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  margin-top: 8px;
  margin-bottom: 8px;
  transition: 0.4s;
  border-radius: 4px;
}
.request .php-form button[type="submit"]:hover {
  background: #3b8af2;
}

@media (max-width: 768px) {
  .request {
    margin-left: 0;
    margin-right: 0;
  }
}

/*--------------------------------------------------------------
# Pay Bills
--------------------------------------------------------------*/
.pay-bills {
  padding-top: 40px;
  padding-bottom: 50px;
  background: url(../img/ibedc-bg.png) no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}
.pay-bills::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(247, 244, 244, 0.871);
}

.pay-bills hr {
  border: 2px solid #fc8002;
  opacity: 1;
  margin-bottom: 50px;
}
.pay-bills .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  border-radius: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
.pay-bills .box h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}

.pay-bills .item-1 h3 {
  background: #fc8002;
}

.pay-bills .item-2 h3 {
  background: #1d4260;
}
.pay-bills .item-3 h3 {
  background: #1d4260;
}

.pay-bills .item-4 h3 {
  background: #fc8002;
}

.pay-bills .box h3 i {
  margin-right: 8px;
}
.pay-bills .box h4 {
  font-size: 16px;
  color: #000;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
  line-height: 40px;
}

.pay-bills .btn-buy {
  display: inline-block;
  padding: 8px 35px 10px 35px;
  color: #fff;
  border-radius: 8px;
  transition: none;
  font-size: 18px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
  transition: 0.3s;
}

.pay-bills .item-1 .btn-buy {
  background: #fc8002;
}

.pay-bills .item-2 .btn-buy {
  background: #1d4260;
}

.pay-bills .item-3 .btn-buy {
  background: #1d4260;
}

.pay-bills .item-4 .btn-buy {
  background: #fc8002;
}

.pay-bills .btn-buy:hover {
  background: #f29131;
}

@media (min-width: 1024px) {
  .pay-bills hr {
    margin-left: 15%;
    margin-right: 15%;
  }

  .pay-bills .box h4 {
    padding-left: 20%;
    padding-right: 20%;
  }
}

/*--------------------------------------------------------------
# Help
--------------------------------------------------------------*/
.help .box {
  text-align: center;
  border-radius: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 80px 40px;
  transition: all ease-in-out 0.3s;
}

.help .item-1 {
  background: #f8f8f8;
}

.help .item-2 {
  background: url("../img/help.png") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  color: #fff;
}

.help .box h4 {
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 36px;
  text-transform: uppercase;
}

.help .item-1 h4 {
  color: #143855;
  text-align: start;
}

.help .item-2 h4 {
  color: #fc8002;
  text-align: end;
}

.help .box button[type="button"] {
  background: #fc8002;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  margin-top: 18px;
  transition: 0.4s;
  border-radius: 4px;
}

.help .box p {
  line-height: 24px;
  font-size: 16px;
  margin-bottom: 0;
  font-weight: bold;
  text-align: end;
}

.help ul {
  margin: 0;
}

.help ul li {
  margin-bottom: 5px;
  font-size: 16px;
  text-align: start;
  font-weight: bold;
}

.help ul li i {
  color: #fc8002;
  margin-right: 12px;
}

.help .contact h5 {
  margin-top: 30px;
  margin-bottom: 5px;
  font-weight: 800;
  color: #fc8002;
}

.help .contact span {
  margin-left: 20px;
}

.help .contact span a {
  font-size: 16px;
  color: #fff;
  text-decoration: underline;
}

@media (min-width: 1024px) {
  .help .item-2 {
    padding-left: 30%;
  }
}
/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background: url(../img/stat-bg.png) no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  padding-bottom: 15px;
}

.counts::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(20, 56, 85, 0.9);
}

.counts .section-title h3 {
  color: #fff;
  padding-top: 15px;
}

.counts hr {
  border: 2px solid #fc8002;
  opacity: 1;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
}

.counts .count-box h1 {
  padding: 0;
  margin: 0;
  color: #fc8002;
  font-size: 52px;
  font-weight: bold;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 800;
}

@media (min-width: 1024px) {
  .counts hr {
    margin-left: 15%;
    margin-right: 15%;
  }
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.news {
  padding-top: 40px;
  padding-bottom: 50px;
  overflow: hidden;
}

.news hr {
  border: 2px solid #fc8002;
  opacity: 1;
  margin-bottom: 40px;
}

.news .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #f9f9f9;
  transition: all 0.3s ease-in-out;
  border-radius: 2px;
  z-index: 1;
}

.news .img {
  margin-bottom: 15px;
}

.news .img img {
  height: 210px;
  width: 100%;
  transition: all 0.3s ease-in-out;
}

.news .headline {
  color: #0b0b0b;
  opacity: 0.3;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 28px;
}

.news .title {
  font-weight: 800;
  font-size: 24px;
  line-height: 29px;
}

.news .title a {
  color: #fc8002;
}
.news .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.news button[type="button"] {
  background: #fc8002;
  border: 0;
  padding: 10px 20px;
  color: #fff;
  margin-top: 28px;
  transition: 0.4s;
  border-radius: 8px;
}

@media (min-width: 1024px) {
  .news hr {
    margin-right: 50%;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding: 0 0 30px 0;
  font-size: 14px;
  background: url("../img/footer-bg.png") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  color: #fff;
}

#footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #081626db;
}

#footer .footer-top {
  padding-top: 60px;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact img {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 24px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-contact h3 span {
  color: #fc8002;
}
#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  text-align: justify;
  font-family: 'Bryant', sans-serif !important;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #fc8002;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #fc8002;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fc8002;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #3b8af2;
  color: #fff;
  text-decoration: none;
}
#footer .copyright {
  text-align: center;
  float: left;
}
#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #444444;
}
@media (max-width: 768px) {
  #footer .copyright,
  #footer .credits {
    float: none;
    text-align: center;
    padding: 2px 0;
  }
}

.bredcrumb{
	background: url(../img/stat-bg.png) no-repeat; background-position: center center;background-size: cover;
	position: relative;padding-bottom: 15px;padding-bottom: 70px;padding-top: 60px;
}
.bredcrumb::before {
	content: "";position: absolute;left: 0;right: 0;top: 0;bottom: 0;background: rgba(20, 56, 85, 0.9);
}