/*
@File: GTL
*/
/*================================================
Default CSS
=================================================*/

body {
  padding: 0;
  margin: 0;
  font-family: "Open Sans","sans-serif";
  font-size: 16px;
}

a {
  text-decoration: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #09101f;
}

a:hover, a:focus {
  color: #002856;
  text-decoration: none;
}

button {
  outline: 0 !important;
}

p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: #000000;
  font-weight: 500;
  font-family: "Open Sans","sans-serif";
  font-size: 16px;
}

p:last-child {
  margin-bottom: 0;
}

i {
  line-height: normal;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

img {
  max-width: 100%;
  height: auto!important;
  display: inline-block;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.ptb-70{
  padding-top: 70px;
  padding-bottom: 70px;
}

.pt-70 {
  padding-top: 70px;
}

.pb-70 {
  padding-bottom: 70px;
}

.ptb-50{
  padding-top: 50px;
  padding-bottom: 50px;
}

.pt-50{
    padding-top: 50px;
}
.pb-50{
    padding-bottom: 50px;
}

.pt-40 {
  padding-top: 40px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-20{
  padding-bottom: 20px;
}

.ptb-15{
  padding-top: 15px;
  padding-bottom: 15px;
}

.pb-15{
  padding-bottom: 15px;
}

.pt-15{
  padding-top: 15px;
}

.pb-10{
  padding-bottom: 10px;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: #09101f;
  font-family: "Open Sans","sans-serif";
  font-weight: 500;
}

.h1:last-child, .h2:last-child, .h3:last-child, .h4:last-child, .h5:last-child, .h6:last-child, h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child {
  margin-bottom: 0;
}

/*================================================
Default btn CSS
=================================================*/
.default-btn {
  display: inline-block;
  padding: 12px 45px;
  background-color: #002856;
  color: #ffffff;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.default-btn.filter{
  padding: 9px 45px !important;
}

.default-btn::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0%;
  background-color: #002856;
  z-index: -1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 5px;
}

.default-btn:hover {
  color: #ffffff;
}

.default-btn:hover::before {
  height: 100%;
}

/*================================================
Section Title CSS
=================================================*/
.section-title {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 45px;
}

.section-title span {
  font-weight: 600;
  color: #002856;
}

.section-title h2 {
  font-size: 36px;
  margin-bottom: 0;
  margin-top: 15px;
}

/*================================================
Preloader Area CSS
=================================================*/
.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: #002856;
  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 .5s linear infinite;
          animation: animate .5s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50px;
}

.preloader .shadow {
  width: 100%;
  height: 15px;
  background: #ffffff;
  opacity: 0.1;
  position: absolute;
  top: 59px;
  left: 0;
  border-radius: 50%;
  -webkit-animation: shadow .5s linear infinite;
          animation: shadow .5s linear infinite;
}

.preloader.bg-4865ff {
  background: #4865ff;
}

.preloader.bg-4ed198 {
  background-color: #4ed198;
}

@-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);
  }
}

/*================================================
Top Header Area CSS
=================================================*/
.top-header-area {
  width: 100%;
  z-index: 99;
  position: fixed;
  padding-top: 2px;
  padding-bottom: 2px;
}

.top-header-area.bg-color .top-header-information li i {
  color: #4865ff;
}

.top-header-area.bg-color .top-header-information li a:hover {
  color: #4865ff;
}

.top-header-area.bg-color .top-header-others li i {
  color: #4865ff;
}

.top-header-area.bg-color .top-header-others li a:hover {
  color: #4865ff;
}

.top-header-area.bg-color .top-header-others .languages-list .nice-select:hover {
  color: #4865ff;
}

.top-header-area.bg-color .top-header-others .languages-list .nice-select:hover:after {
  border-bottom: 2px solid #4865ff;
  border-right: 2px solid #4865ff;
}

.top-header-area.bg-ffffff .top-header-information li i {
  color: #4ed198;
}

.top-header-area.bg-ffffff .top-header-information li a:hover {
  color: #4ed198;
}

.top-header-area.bg-ffffff .top-header-others li i {
  color: #4ed198;
}

.top-header-area.bg-ffffff .top-header-others li a:hover {
  color: #4ed198;
}

.top-header-area.bg-ffffff .top-header-others .languages-list .nice-select:hover {
  color: #4ed198;
}

.top-header-area.bg-ffffff .top-header-others .languages-list .nice-select:hover:after {
  border-bottom: 2px solid #4ed198;
  border-right: 2px solid #4ed198;
}

.top-header-information {
  padding-left: 0;
  margin-bottom: 0;
}

.top-header-information li {
  list-style-type: none;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  position: relative;
  padding-left: 20px;
  margin-right: 15px;
}

.top-header-information li:last-child {
  margin-right: 0;
}

.top-header-information li i {
  position: absolute;
  left: 0;
  color: #002856;
  top: 4px;
  font-size: 16px;
}

.top-header-information li a {
  color: #ffffff;
}

.top-header-information li a:hover {
  color: #002856;
}

.top-header-others {
  display: inline-block;
  padding-left: 0;
  margin-bottom: 0;
}

.top-header-others li {
  list-style-type: none;
  display: inline-block;
  font-size: 14px;
  top: 3px;
  font-weight: 400;
  position: relative;
  padding-left: 10px;
  margin-right: 15px;
  margin-bottom: 15px;
}

.top-header-others li.lang_image{
  padding-left: 5px;
  margin-right: 8px;
}

.top-header-others li.lang_image:first-child{
  padding-left: 0px;
}

.top-header-others li.lang_image img{
  width: 24px;
  height: 16px;
}

.top-header-others li:last-child {
  margin-right: 0;
}

.top-header-others li i {
  position: absolute;
  /*left: 0;*/
  color: #fff;
  top: 4px;
  font-size: 18px;
}

.top-header-others li a {
  color: #ffffff;
}

.top-header-others li a:hover {
  color: #002856;
}

.top-header-others .languages-list {
  padding-left: 0;
}

.top-header-others .languages-list .nice-select {
  background-color: transparent;
  border-radius: 0;
  border: none;
  font-size: 16px;
  font-weight: 400;
  height: auto;
  top: 4px;
  line-height: initial;
  color: #ffffff;
  padding-left: 0;
  padding-right: 15px;
  float: unset;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.top-header-others .languages-list .nice-select:hover {
  color: #002856;
}

.top-header-others .languages-list .nice-select:hover:after {
  border-bottom: 2px solid #002856;
  border-right: 2px solid #002856;
}

.top-header-others .languages-list .nice-select:after {
  right: 0;
  border-bottom: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  margin-top: -4px;
  height: 8px;
  width: 8px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.top-header-others .languages-list .nice-select .list {
  right: auto;
  left: -55px;
  border: none;
  padding: 15px;
  -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);
  list-style-type: none;
  margin: 8px 0 0;
  border-radius: 5px;
  display: block;
}

.top-header-others .languages-list .nice-select .option {
  line-height: initial;
  min-height: auto;
  padding: 10px 15px 10px 15px;
  color: #09101f;
  display: block;
}

.top-header-others .languages-list .nice-select .option:hover, .top-header-others .languages-list .nice-select .option.focus, .top-header-others .languages-list .nice-select .option.selected.focus {
  background-color: #ffffff;
}

/*================================================
Navbar Area CSS
=================================================*/
.main-responsive-nav {
  display: none;
}

.main-navbar {
  padding-top: 5px;
  padding-bottom: 5px;
}

.main-navbar .navbar {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding: 0;
}

.main-navbar .navbar ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}

.main-navbar .navbar .navbar-nav {
  margin-left: auto;
}

.main-navbar .navbar .navbar-nav .nav-item {
  position: relative;
  margin-left: 15px;
  margin-right: 15px;
  text-transform: uppercase;
}
.navbar-area.is-sticky .main-navbar .navbar .navbar-nav .nav-item a{
  color: #09101f;
}

.main-navbar .navbar .navbar-nav .nav-item a {
  color: #ffffff;
  font-size: 16px;
  /*font-weight: 600;*/
  padding-left: 0;
  padding-right: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}

.main-navbar .navbar .navbar-nav .nav-item a i {
  font-size: 18px;
  position: relative;
  top: 2px;
  display: inline-block;
  margin-left: -4px;
  margin-right: -4px;
}

.main-navbar .navbar .navbar-nav .nav-item a:hover, .main-navbar .navbar .navbar-nav .nav-item a:focus, .main-navbar .navbar .navbar-nav .nav-item a.active {
  color: #002856;
}

.main-navbar .navbar .navbar-nav .nav-item:last-child {
  margin-right: 0;
}

.main-navbar .navbar .navbar-nav .nav-item:first-child {
  margin-left: 0;
}

.main-navbar .navbar .navbar-nav .nav-item:hover a, .main-navbar .navbar .navbar-nav .nav-item.active a {
  color: #ffffff;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu {
  border: none;
  top: 50px;
  left: 0;
  z-index: 99;
  opacity: 0;
  width: 280px;
  display: block;
  border-radius: 0;
  padding: 10px 0;
  margin-top: 15px;
  position: absolute;
  visibility: hidden;
  background: #ffffff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -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);
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li {
  margin: 0;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a {
  padding: 10px 20px;
  position: relative;
  display: block;
  color: #09101f;
  font-size: 15px;
  font-weight: 600;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a i {
  margin: 0;
  position: absolute;
  top: 50%;
  font-size: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 15px;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a:hover, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a:focus, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  color: #002856;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  right: -280px;
  left: auto;
  margin-top: 15px;
  visibility: hidden;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
  color: #09101f;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
  color: #002856;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  left: 300px;
  visibility: hidden;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #09101f;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #002856;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  left: -300px;
  visibility: hidden;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #09101f;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #002856;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  left: 300px;
  visibility: hidden;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #09101f;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #002856;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  left: -300px;
  visibility: hidden;
}

.main-navbar .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: #09101f;
}

.main-navbar .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, .main-navbar .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, .main-navbar .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: #002856;
}

.main-navbar .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 {
  top: 0;
  opacity: 0;
  left: 300px;
  visibility: hidden;
}

.main-navbar .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: #09101f;
}

.main-navbar .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, .main-navbar .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, .main-navbar .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: #002856;
}

.main-navbar .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: #002856;
}

.main-navbar .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;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #002856;
}

.main-navbar .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;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #002856;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #002856;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li.active a {
  color: #002856;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li.active a {
  color: #002856;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.main-navbar .navbar .navbar-nav .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.main-navbar .navbar .others-options {
  margin-left: 35px;
}

.main-navbar .navbar .others-options .option-item {
  margin-right: 20px;
}

.main-navbar .navbar .others-options .option-item:last-child {
  margin-right: 0;
}

.main-navbar .navbar .others-options .option-item .search-box {
  position: relative;
  width: 200px;
  border-radius: 5px;
}

.main-navbar .navbar .others-options .option-item .search-box .form-control {
  display: block;
  width: 100%;
  height: 45px;
  border: none;
  border-bottom: 1px solid #b5b7bb;
  border-radius: 0;
  background-color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #09101f;
  font-size: 16px;
  font-weight: 400;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
}

.main-navbar .navbar .others-options .option-item .search-box .form-control::-webkit-input-placeholder {
  color: #6e727f;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.main-navbar .navbar .others-options .option-item .search-box .form-control:-ms-input-placeholder {
  color: #6e727f;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.main-navbar .navbar .others-options .option-item .search-box .form-control::-ms-input-placeholder {
  color: #6e727f;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.main-navbar .navbar .others-options .option-item .search-box .form-control::placeholder {
  color: #6e727f;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.main-navbar .navbar .others-options .option-item .search-box .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: transparent;
  border-bottom: 1px solid #002856;
}

.main-navbar .navbar .others-options .option-item .search-box button {
  position: absolute;
  right: 0;
  top: -5px;
  height: 48px;
  background-color: transparent;
  border: none;
  color: #002856;
  border-radius: 5px;
  font-size: 25px;
  cursor: pointer;
}

.main-navbar .navbar .others-options .option-item .default-btn {
  border-radius: 5px;
  padding: 15px 35px;
}

.main-navbar .navbar .others-options .option-item .default-btn::before {
  border-radius: 5px;
}

.navbar-color-two .main-navbar .navbar .navbar-nav .nav-item a {
  color: #09101f;
}

.navbar-color-two .main-navbar .navbar .navbar-nav .nav-item a:hover, .navbar-color-two .main-navbar .navbar .navbar-nav .nav-item a:focus, .navbar-color-two .main-navbar .navbar .navbar-nav .nav-item a.active {
  color: #4865ff;
}

.navbar-color-two .main-navbar .navbar .navbar-nav .nav-item:hover a, .navbar-color-two .main-navbar .navbar .navbar-nav .nav-item.active a {
  color: #4865ff;
}

.navbar-color-two .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a {
  color: #09101f;
}

.navbar-color-two .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a:hover, .navbar-color-two .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a:focus, .navbar-color-two .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  color: #4865ff;
}

.navbar-color-two .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
  color: #09101f;
}

.navbar-color-two .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover, .navbar-color-two .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus, .navbar-color-two .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
  color: #4865ff;
}

.navbar-color-two .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #09101f;
}

.navbar-color-two .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .navbar-color-two .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .navbar-color-two .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #4865ff;
}

.navbar-color-two .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #09101f;
}

.navbar-color-two .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .navbar-color-two .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .navbar-color-two .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #4865ff;
}

.navbar-color-two .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #09101f;
}

.navbar-color-two .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .navbar-color-two .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .navbar-color-two .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #4865ff;
}

.navbar-color-two .main-navbar .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: #09101f;
}

.navbar-color-two .main-navbar .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, .navbar-color-two .main-navbar .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, .navbar-color-two .main-navbar .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: #4865ff;
}

.navbar-color-two .main-navbar .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: #09101f;
}

.navbar-color-two .main-navbar .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, .navbar-color-two .main-navbar .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, .navbar-color-two .main-navbar .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: #4865ff;
}

.navbar-color-two .main-navbar .navbar .others-options .option-item .search-box .form-control:focus {
  border-bottom: 1px solid #4865ff;
}

.navbar-color-two .main-navbar .navbar .others-options .option-item .search-box button {
  color: #4865ff;
}

.navbar-color-two .main-navbar .navbar .others-options .option-item .default-btn {
  background-color: #4865ff;
}

.navbar-color-three .main-navbar .navbar .navbar-nav .nav-item a {
  color: #09101f;
}

.navbar-color-three .main-navbar .navbar .navbar-nav .nav-item a:hover, .navbar-color-three .main-navbar .navbar .navbar-nav .nav-item a:focus, .navbar-color-three .main-navbar .navbar .navbar-nav .nav-item a.active {
  color: #4ed198;
}

.navbar-color-three .main-navbar .navbar .navbar-nav .nav-item:hover a, .navbar-color-three .main-navbar .navbar .navbar-nav .nav-item.active a {
  color: #4ed198;
}

.navbar-color-three .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a {
  color: #09101f;
}

.navbar-color-three .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a:hover, .navbar-color-three .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a:focus, .navbar-color-three .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  color: #4ed198;
}

.navbar-color-three .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
  color: #09101f;
}

.navbar-color-three .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover, .navbar-color-three .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus, .navbar-color-three .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
  color: #4ed198;
}

.navbar-color-three .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #09101f;
}

.navbar-color-three .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .navbar-color-three .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .navbar-color-three .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #4ed198;
}

.navbar-color-three .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #09101f;
}

.navbar-color-three .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .navbar-color-three .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .navbar-color-three .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #4ed198;
}

.navbar-color-three .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #09101f;
}

.navbar-color-three .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .navbar-color-three .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .navbar-color-three .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #4ed198;
}

.navbar-color-three .main-navbar .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: #09101f;
}

.navbar-color-three .main-navbar .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, .navbar-color-three .main-navbar .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, .navbar-color-three .main-navbar .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: #4ed198;
}

.navbar-color-three .main-navbar .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: #09101f;
}

.navbar-color-three .main-navbar .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, .navbar-color-three .main-navbar .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, .navbar-color-three .main-navbar .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: #4ed198;
}

.navbar-color-three .main-navbar .navbar .others-options .option-item .search-box .form-control:focus {
  border-bottom: 1px solid #4ed198;
}

.navbar-color-three .main-navbar .navbar .others-options .option-item .search-box button {
  color: #4ed198;
}

.navbar-color-three .main-navbar .navbar .others-options .option-item .default-btn {
  background-color: #4ed198;
}

 .navbar-area{
    position: fixed;
    z-index: 99;
    top: 36px;
    width: 100%;
  }

.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;
}

.others-option-for-responsive {
  display: none;
}

.others-option-for-responsive .dot-menu {
  padding: 0 10px;
  height: 30px;
  cursor: pointer;
  z-index: 9991;
  position: absolute;
  right: 60px;
  top: -28px;
}

.others-option-for-responsive .dot-menu .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 30px;
}

.others-option-for-responsive .dot-menu .inner .circle {
  height: 5px;
  width: 5px;
  border-radius: 100%;
  margin: 0 2px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #09101f;
}

.others-option-for-responsive .dot-menu:hover .inner .circle {
  background-color: #002856;
}

.others-option-for-responsive .container {
  position: relative;
}

.others-option-for-responsive .container .container {
  position: absolute;
  right: 0;
  top: 10px;
  max-width: 260px;
  background-color: #ffffff;
  -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-left: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  z-index: 2;
  padding-left: 15px;
  padding-right: 15px;
}

.others-option-for-responsive .container .container.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.others-option-for-responsive .option-inner .others-options {
  margin-left: 35px;
}

.others-option-for-responsive .option-inner .others-options .option-item {
  margin-right: 20px;
}

.others-option-for-responsive .option-inner .others-options .option-item:last-child {
  margin-right: 0;
}

.others-option-for-responsive .option-inner .others-options .option-item .search-box {
  position: relative;
  width: 200px;
  border-radius: 5px;
}

.others-option-for-responsive .option-inner .others-options .option-item .search-box .form-control {
  display: block;
  width: 100%;
  height: 45px;
  border: none;
  border-bottom: 1px solid #b5b7bb;
  border-radius: 0;
  background-color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #09101f;
  font-size: 16px;
  font-weight: 400;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
}

.others-option-for-responsive .option-inner .others-options .option-item .search-box .form-control::-webkit-input-placeholder {
  color: #6e727f;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.others-option-for-responsive .option-inner .others-options .option-item .search-box .form-control:-ms-input-placeholder {
  color: #6e727f;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.others-option-for-responsive .option-inner .others-options .option-item .search-box .form-control::-ms-input-placeholder {
  color: #6e727f;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.others-option-for-responsive .option-inner .others-options .option-item .search-box .form-control::placeholder {
  color: #6e727f;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.others-option-for-responsive .option-inner .others-options .option-item .search-box .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: transparent;
  border-bottom: 1px solid #002856;
}

.others-option-for-responsive .option-inner .others-options .option-item .search-box button {
  position: absolute;
  right: 0;
  top: -5px;
  height: 48px;
  background-color: transparent;
  border: none;
  color: #002856;
  border-radius: 5px;
  font-size: 25px;
  cursor: pointer;
}

.others-option-for-responsive .option-inner .others-options .option-item .default-btn {
  border-radius: 5px;
  padding: 15px 35px;
}

.others-option-for-responsive .option-inner .others-options .option-item .default-btn::before {
  border-radius: 5px;
}

.others-option-for-responsive.color-two .option-inner .others-options .option-item .search-box .form-control:focus {
  border-bottom: 1px solid #4865ff;
}

.others-option-for-responsive.color-two .option-inner .others-options .option-item .search-box button {
  color: #4865ff;
}

.others-option-for-responsive.color-two .option-inner .others-options .option-item .default-btn {
  background-color: #4865ff;
}

.others-option-for-responsive.color-three .option-inner .others-options .option-item .search-box .form-control:focus {
  border-bottom: 1px solid #4ed198;
}

.others-option-for-responsive.color-three .option-inner .others-options .option-item .search-box button {
  color: #4ed198;
}

.others-option-for-responsive.color-three .option-inner .others-options .option-item .default-btn {
  background-color: #4ed198;
}

@media only screen and (max-width: 1199px) {
  .main-responsive-nav {
    display: block;
  }
  .main-responsive-nav .main-responsive-menu {
    position: relative;
  }
  .main-responsive-nav .main-responsive-menu.mean-container .mean-nav ul {
    font-size: 15px;
  }
  .main-responsive-nav .main-responsive-menu.mean-container .mean-nav ul li a.active {
    color: #002856;
  }
  .main-responsive-nav .main-responsive-menu.mean-container .mean-nav ul li a i {
    display: none;
  }
  .main-responsive-nav .main-responsive-menu.mean-container .mean-nav ul li li a {
    font-size: 14px;
  }
  .main-responsive-nav .main-responsive-menu.mean-container .others-options {
    display: none !important;
  }
  .main-responsive-nav .mean-container a.meanmenu-reveal {
    color: #09101f;
  }
  .main-responsive-nav .mean-container a.meanmenu-reveal span {
    background: #fff;
    position: relative;
  }

  .navbar-area.is-sticky .main-responsive-nav .mean-container a.meanmenu-reveal span{
      background: #000;
      position: relative;
  }

  .main-responsive-nav .logo {
    position: relative;
    width: 50%;
    z-index: 999;
  }
  .main-responsive-nav .logo img {
    max-width: 200px;
  }

  .navbar-area{
    background-color: transparent;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .main-navbar {
    display: none;
  }
  .others-option-for-responsive {
    display: block;
  }
}

.main-navbar .navbar .navbar-brand img{
  width: 210px;
  /*height: 70px;*/
}

.is-sticky .navbar .navbar-brand img{
  width: 150px;
}


/*================================================
Main Banner Area CSS
=================================================*/
.main-banner {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.main-banner-img{
  width: 100%;
  height: 950px;
  background-size: cover;
  background-repeat: no-repeat;
}

.main-banner-item {
  background-color: #fafafa;
  padding-top: 50px;
  padding-bottom: 50px;
}

.main-banner-item.banner-item-two {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 100px;
}

.main-banner-item.banner-item-two::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: #000000;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
  opacity: .70;
}

.main-banner-item.banner-item-two .main-banner-content h1 {
  color: #ffffff;
}

.main-banner-item.banner-item-two .main-banner-content p {
  color: #ffffff;
}

.main-banner-item.banner-item-two .main-banner-content .banner-btn .default-btn {
  background-color: #4865ff;
}

.main-banner-item.banner-item-three {
  padding-top: 150px;
  padding-bottom: 150px;
}

.main-banner-item.banner-item-three .main-banner-content .banner-btn .default-btn {
  background-color: #4ed198;
}

.main-banner-item.banner-item-three .main-banner-image {
  position: relative;
  z-index: 1;
}

.main-banner-item.banner-item-five {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  padding-top: 300px;/*
  padding-bottom: 235px;*/
  background-attachment: fixed;
}

.main-banner-item.banner-item-five::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: #000000;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
  opacity: .50;
}

.main-banner-item.banner-item-five .main-banner-content {
  max-width: 650px;
}

.main-banner-item.banner-item-five .main-banner-content h1 {
  color: #ffffff;
}

.main-banner-item.banner-item-five .main-banner-content p {
  color: #ffffff;
}

.main-banner-content h1 {
  font-size: 65px;
  margin-bottom: 20px;
  font-weight: bold;
}

.main-banner-content p {
  margin-bottom: 0;
}

.main-banner-content .banner-btn {
  margin-top: 30px;
}

.main-banner-image {
  position: relative;
}

.main-banner-image .banner-mobile {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
}

.main-banner-shape .shape-1 {
  position: absolute;
  top: -60px;
  left: 0;
  -webkit-animation: moveBounce 5s linear infinite;
          animation: moveBounce 5s linear infinite;
}

.main-banner-shape .shape-2 {
  position: absolute;
  bottom: -60px;
  right: 0;
  -webkit-animation: moveBounce 5s linear infinite;
          animation: moveBounce 5s linear infinite;
}

.main-banner-shape .shape-3 {
  position: absolute;
  top: 15%;
  -webkit-transform: translateY(-15%);
          transform: translateY(-15%);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation: moveBounce 5s linear infinite;
          animation: moveBounce 5s linear infinite;
}

@-webkit-keyframes moveBounce {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes moveBounce {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

.main-banner-form {
  background-color: #ffffff;
  -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);
  padding: 50px 40px;
  position: relative;
  border-radius: 10px;
  max-width: 590px;
  margin-left: auto;
}

.main-banner-form .content {
  margin-bottom: 30px;
  text-align: center;
}

.main-banner-form .content h3 {
  font-size: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eeeeee;
}

.main-banner-form .form-group .form-control {
  padding: 15px 20px;
  border: 1px solid #ebebeb;
  color: #6e727f;
  border-radius: 0;
  background-color: #ebebeb;
  font-size: 16px;
  font-weight: 600;
  height: 60px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.main-banner-form .form-group .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: transparent;
}

.main-banner-form .form-group label {
  font-size: 16px;
  color: #6e727f;
  font-weight: 600;
  margin-bottom: 10px;
}

.main-banner-form .nice-select {
  height: 60px;
  width: 100%;
  line-height: 48px;
  font-size: 16px;
  padding-left: 20px;
  border: 1px solid #ebebeb;
  color: #6e727f;
  border-radius: 0;
  background-color: #ebebeb;
  padding-top: 5px;
  font-weight: 600;
  margin-bottom: 20px;
}

.main-banner-form .nice-select:focus {
  background-color: transparent;
}

.main-banner-form .nice-select .list {
  background-color: #ffffff;
  -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);
  border-radius: 0;
  margin-top: 0;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}

.main-banner-form .nice-select .list .option {
  -webkit-transition: .6s;
  transition: .6s;
  color: #09101f;
  padding-left: 20px;
  padding-right: 20px;
}

.main-banner-form .nice-select .list .option:hover {
  background-color: #4865ff !important;
  color: #ffffff;
}

.main-banner-form .nice-select .list .option.selected {
  background-color: transparent;
  font-weight: 600;
}

.main-banner-form .nice-select::after {
  height: 8px;
  width: 8px;
  border-color: #b5b6bc;
  right: 20px;
}

.main-banner-form .lost-your-id {
  font-size: 16px;
  color: #6e727f;
  font-weight: 600;
  float: right;
}

.main-banner-form .lost-your-id:hover {
  color: #4865ff;
}

.main-banner-form .lost-your-password {
  font-size: 16px;
  color: #6e727f;
  font-weight: 600;
  float: right;
}

.main-banner-form .lost-your-password:hover {
  color: #4865ff;
}

.main-banner-form .banner-form-btn {
  margin-top: 10px;
}

.main-banner-form .banner-form-btn .default-btn {
  cursor: pointer;
  width: 100%;
  background-color: #4865ff;
  border: none;
}

/*================================================
Top Services Area CSS
=================================================*/
.top-services-item {
  position: relative;
  z-index: 1;
  padding: 45px;
  border: 1px solid #f3f3f3;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-bottom: 30px;
}

.top-services-item .icon {
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
  margin-top: 10px;
}

.top-services-item .icon i {
  font-size: 60px;
  color: #002856;
  line-height: 1;
}

.top-services-item h3 {
  font-size: 25px;
  margin-bottom: 15px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-weight: 500;
  text-align: center;
}

.top-services-item p {
  margin-bottom: 15px;
}

.top-services-item .link-btn {
  font-size: 16px;
  color: #09101f;
  font-weight: 600;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.top-services-item::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  left: 0;
  top: 0;
  border-top: 2px solid #002856;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: -1;
}

.top-services-item:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.top-services-item:hover::before {
  width: 100%;
}

.top-services-item:hover .link-btn {
  letter-spacing: 1px;
  color: #002856;
}

.top-services-item:hover h3 a {
  color: #002856;
}

.top-services-item.technology-gtl{
  height: 770px;
  text-align: center;
  border: 1px solid #002856;
}

/*================================================
Banking Area CSS
=================================================*/
.banking-area.bg-ffffff .container-fluid {
  padding-left: 0;
}

.banking-area.bg-ffffff .banking-content {
  max-width: 630px;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 30px;
}

.banking-content {
  max-width: 600px;
}

.banking-content span {
  font-weight: 600;
  color: #002856;
}

.banking-content h3 {
  font-size: 36px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.banking-content p {
  margin-bottom: 0;
}

.banking-content .banking-list {
  padding-left: 0;
  margin-top: 20px;
  margin-bottom: 0;
}

.banking-content .banking-list li {
  list-style-type: none;
  color: #6e727f;
  font-weight: 600;
  position: relative;
  padding-left: 28px;
  margin-bottom: 15px;
}

.banking-content .banking-list li:last-child {
  margin-bottom: 0;
}

.banking-content .banking-list li i {
  position: absolute;
  left: 0;
  top: 0;
  color: #002856;
}

.banking-image {
  text-align: center;
  position: relative;
}

.banking-image .shape-1 {
  position: absolute;
  left: 0;
  top: 65%;
  -webkit-transform: translateY(-65%);
          transform: translateY(-65%);
  z-index: -1;
  -webkit-animation: moveBounce 5s linear infinite;
          animation: moveBounce 5s linear infinite;
}

.banking-image-warp {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
}

/*================================================
Fun Facts Area CSS
=================================================*/
.fun-facts-area {
  position: relative;
  z-index: 1;
  background-color: #fafafa;
}

.text_facts{
  font-size: 16px;
  font-weight: 600;
  position: relative;
  z-index: 1;
  color: #09101f;
}

.fun-facts-area .section-title span {
  color: #ffffff;
}

.fun-facts-area .section-title h2 {
  color: #002856;
}

.fun-facts-area.bg-color::before {
  background-image: none;
}

.fun-facts-area.bg-color .single-fun-fact {
  background-color: #ffffff;
  -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);
  padding: 30px;
}

.fun-facts-area.bg-color .single-fun-fact .icon {
  margin-bottom: 20px;
}

.fun-facts-area.bg-color .single-fun-fact .icon i {
  font-size: 80px;
  color: #09101f;
  line-height: 1;
}

.fun-facts-area.bg-color .single-fun-fact h3 {
  color: #09101f;
  margin-top: 0;
}

.fun-facts-area.bg-color .single-fun-fact h3::before {
  display: none;
}

.fun-facts-area.bg-ffffff::before {
  background-image: none;
}

.fun-facts-area.bg-ffffff .single-fun-fact {
  background-color: #ffffff;
  -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);
  padding: 30px;
}

.fun-facts-area.bg-ffffff .single-fun-fact .icon {
  margin-bottom: 20px;
}

.fun-facts-area.bg-ffffff .single-fun-fact .icon i {
  font-size: 80px;
  color: #002856;
  line-height: 1;
}

.fun-facts-area.bg-ffffff .single-fun-fact h3 {
  color: #002856;
  margin-top: 0;
}

.fun-facts-area.bg-ffffff .single-fun-fact h3::before {
  display: none;
}

.fun-facts-inner {
  background-color: #ffffff;
  -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);
  padding: 10px 25px 10px 25px;
}

.single-fun-fact {
  margin-bottom: 30px;
  text-align: center;
  height: 262px;
}

.single-fun-fact h3 {
  margin-bottom: 5px;
  line-height: 1;
  font-size: 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #002856;
  position: relative;
  z-index: 1;
  margin-top: 10px;
}

.single-fun-fact h3 .number_facts p{
  margin-bottom: 5px;
  line-height: 1;
  font-size: 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #002856;
  position: relative;
  z-index: 1;
  margin-top: 10px;
}



.single-fun-fact p {
  font-size: 16px;
  font-weight: 600;
  color: #09101f;
  position: relative;
  z-index: 1;
}

.single-fun-fact .icon {
  margin-bottom: 20px;
}

.single-fun-fact .icon img{
  width: unset;
  display: unset;
}
.single-fun-fact .icon image {
  font-size: 60px;
  color: #002856;
  line-height: 1;
}

/*================================================
Protect Area CSS
=================================================*/
.protect-area .container-fluid {
  padding-right: 0;
  overflow: hidden;
}

.protect-content {
  width: 100%;
}

.protect-content span {
  font-weight: 600;
  color: #000000;
}

.protect-content h3 {
  font-size: 36px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.protect-content p {
  margin-bottom: 0;
}

.protect-content .protect-inner-content {
  position: relative;
  margin-top: 25px;
}

.protect-content .protect-inner-content .number {
  position: absolute;
  left: 0;
  top: 0;
}

.protect-content .protect-inner-content .number span {
  display: inline-block;
  height: 45px;
  width: 45px;
  line-height: 45px;
  background-color: #002856;
  color: #ffffff;
  font-size: 25px;
  text-align: center;
  border-radius: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.protect-content .protect-inner-content h4 {
  font-weight: 500;
  font-size: 25px;
  margin-bottom: 10px;
}

.protect-content .protect-inner-content p {
  margin-bottom: 0;
}

.protect-content .protect-inner-content:hover .number span {
  background-color: #002856;
}

.protect-image {

  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: auto;
  width: 100%;
  border-radius: 50px 0 0 50px;
  min-height: 500px;
  max-height: 800px;
}

/*================================================
Services Area CSS
=================================================*/
.services-area {
  position: relative;
  z-index: 1;
}

.services-area::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 65%;
  background-image: none;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

.services-area.bg-ffffff::before {
  display: none;
}

.services-area.bg-ffffff .single-services-item .icon::before {
  background-color: #ecefff;
}

.services-area.bg-ffffff .single-services-item .icon i {
  color: #002856;
}

.services-area.bg-ffffff .single-services-item:hover {
  border: 1px solid #002856;
  background-color: #002856;
}

.services-area.bg-ffffff .single-services-item:hover .icon::before {
  background-color: #6d84ff;
}

.services-area.bg-ffffff .single-services-item:hover .icon i {
  color: #ffffff;
}

.services-area.bg-ffffff .services-slider.owl-theme .owl-nav [class*=owl-] {
  color: #4865ff;
}

.services-area.bg-ffffff .services-slider.owl-theme .owl-nav [class*=owl-]:hover, .services-area.bg-ffffff .services-slider.owl-theme .owl-nav [class*=owl-]:focus {
  background-color: #4865ff;
}

.services-area.bg-ffffff .section-title span {
  color: #4865ff;
}

.services-area.bg-transparent {
  border-top: 1px solid #ffffff;
}

.services-area.bg-transparent::before {
  display: none;
}

.single-services-item {
  position: relative;
  z-index: 1;
  padding: 35px;
  border: 1px solid #e1e1e1;
  background-color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-bottom: 30px;
  border-radius: 5px;
  text-align: center;
}
.companyvalue .single-services-item{
  /*height: 400px;*/
  text-align: center;
}

.single-services-item .icon {
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
  margin-top: 10px;
}
.single-services-item .icon img{
  height: 70px;
  width: 70px;
  display: unset;
}

.single-services-item .icon i {
  font-size: 60px;
  color: #002856;
  line-height: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-services-item h3 {
  font-size: 25px;
  margin-bottom: 15px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-weight: 500;
}

.single-services-item p {
  margin-bottom: 15px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-services-item .learn-btn {
  font-size: 16px;
  color: #09101f;
  font-weight: 600;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-services-item:hover {
  border: 1px solid #002856;
  background-color: #002856;
}

.single-services-item:hover .learn-btn {
  letter-spacing: 1px;
  color: #ffffff;
}

.single-services-item:hover h3{
  color: #ffffff;
}

.single-services-item:hover p {
  color: #ffffff;
}

.single-services-item:hover .icon::before {
  background-color: #6d84ff;
}

.single-services-item:hover .icon i {
  color: #ffffff;
}


.services-slider.owl-theme .owl-nav [class*=owl-] {
  position: absolute;
  left: 0;
  top: 40%;
  -webkit-transform: translateY(-40%);
          transform: translateY(-40%);
  margin: 0;
  outline: 0;
  width: 45px;
  height: 45px;
  line-height: 52px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #ffffff;
  color: #002856;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
}

.services-slider.owl-theme .owl-nav [class*=owl-]:hover, .services-slider.owl-theme .owl-nav [class*=owl-]:focus {
  background-color: #002856;
}

.services-slider.owl-theme .owl-nav [class*=owl-]:hover i, .services-slider.owl-theme .owl-nav [class*=owl-]:focus i {
  color: #ffffff;
}

.services-slider.owl-theme .owl-nav [class*=owl-].owl-next {
  left: auto;
  right: 0;
}

.services-slider.owl-theme .owl-nav [class*=owl-] i {
  font-size: 25px;
  font-weight: bold;
}

.services-slider.owl-theme:hover .owl-nav [class*=owl-] {
  opacity: 1;
  visibility: visible;
  left: -20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.services-slider.owl-theme:hover .owl-nav [class*=owl-].owl-next {
  left: auto;
  right: -20px;
}

/*================================================
Credit Card Area CSS
=================================================*/
.credit-card-area.bg-ffffff .row {
  background-color: #002856;
  padding: 80px 100px;
  border-radius: 25px;
}

.credit-card-content span {
  color: #ffffff;
  font-weight: 600;
}

.credit-card-content h3 {
  font-size: 28px;
  margin-top: 15px;
  margin-bottom: 15px;
  color: #ffffff;
}

.credit-card-content p {
  margin-bottom: 0;
  color: #ffffff;
}

.credit-card-content .credit-card-features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  margin-top: 15px;
}

.credit-card-content .credit-card-features li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
  margin-top: 10px;
  padding-left: 30px;
  padding-right: 0;
  color: #ffffff;
  font-weight: 500;
  position: relative;
}

.credit-card-content .credit-card-features li i {
  color: #ffffff;
  margin-right: 5px;
  font-size: 18px;
  font-weight: 600;
  position: absolute;
  left: 0;
  top: 0;
}

.credit-card-image-slider.owl-theme .owl-nav {
  margin-top: 20px;
}

.credit-card-image-slider.owl-theme .owl-nav [class*=owl-] {
  background-color: transparent;
  margin: 0 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #ffffff;
}

.credit-card-image-slider.owl-theme .owl-nav [class*=owl-]:hover i, .credit-card-image-slider.owl-theme .owl-nav [class*=owl-]:focus i {
  color: #002856;
}

.credit-card-image-slider.owl-theme .owl-nav [class*=owl-] i {
  font-size: 25px;
  font-weight: bold;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

/*================================================
Below Area CSS
=================================================*/
.below-area .container-fluid {
  padding-left: 0;
  overflow: hidden;
}

.below-content {
  max-width: 695px;
}

.below-content span {
  font-weight: 600;
  color: #002856;
}

.below-content h3 {
  font-size: 36px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.below-content p {
  margin-bottom: 0;
}

.below-content .below-inner-content {
  position: relative;
  margin-top: 25px;
  padding-left: 60px;
}

.below-content .below-inner-content .number {
  position: absolute;
  left: 0;
  top: 0;
}

.below-content .below-inner-content .number span {
  display: inline-block;
  height: 45px;
  width: 45px;
  line-height: 45px;
  background-color: #002856;
  color: #ffffff;
  font-size: 25px;
  text-align: center;
  border-radius: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.below-content .below-inner-content h4 {
  font-weight: 500;
  font-size: 25px;
  margin-bottom: 10px;
}

.below-content .below-inner-content p {
  margin-bottom: 0;
}

.below-content .below-inner-content:hover .number span {
  background-color: #002856;
}

.below-image {
  background-image: none;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  border-radius: 0 50px 50px 0;
}

/*================================================
Customer Area CSS
=================================================*/
.customer-area {
  position: relative;
  z-index: 1;
}

.customer-item {
  text-align: center;
  border: 1px solid #e1e1e1;
  background-color: #ffffff;
  padding: 45px 75px;
  border-radius: 45px;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0 2px 28px 0 rgb(0 0 0 / 9%);
    box-shadow: 0 2px 28px 0 rgb(0 0 0 / 9%);
}

.customer-item img {
  display: inline-block;
  height: 130px;
  width: 130px !important;
  margin: auto;
  border-radius: 50%;
}

.customer-item p {
  font-size: 18px;
  margin-bottom: 0;
  line-height: 35px;
}

.customer-item .customer-info {
  margin-top: 0px;
}

.customer-item .customer-info h3 {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 10px;
}

.customer-item .customer-info span {
  font-weight: 500;
}

.customer-item .icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}

.customer-item .icon i {
  font-size: 100px;
  color: #f1f1f2;
}

.customer-slider.owl-theme .owl-nav [class*=owl-] {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: 0;
  outline: 0;
  width: 45px;
  height: 45px;
  line-height: 52px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #ffffff;
  color: #002856;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
}

.customer-slider.owl-theme .owl-nav [class*=owl-]:hover, .customer-slider.owl-theme .owl-nav [class*=owl-]:focus {
  background-color: #002856;
}

.customer-slider.owl-theme .owl-nav [class*=owl-]:hover i, .customer-slider.owl-theme .owl-nav [class*=owl-]:focus i {
  color: #ffffff;
}

.customer-slider.owl-theme .owl-nav [class*=owl-].owl-next {
  left: auto;
  right: 0;
}

.customer-slider.owl-theme .owl-nav [class*=owl-] i {
  font-size: 25px;
  font-weight: bold;
}

.customer-slider.owl-theme:hover .owl-nav [class*=owl-] {
  opacity: 1;
  visibility: visible;
  left: -20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.customer-slider.owl-theme:hover .owl-nav [class*=owl-].owl-next {
  left: auto;
  right: -20px;
}

/*================================================
App Area CSS
=================================================*/
.app-area {
  background-image: none;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.app-area.bg-transparent {
  background-image: unset;
}

.app-area.bg-color {
  background-image: none;
}

.app-area.bg-color .app-content h3 {
  font-size: 48px;
}

.app-area.bg-color .app-btn {
  text-align: left;
  margin-top: 30px;
}

.app-content h3 {
  font-size: 38px;
  margin-bottom: 0;
  color: #ffffff;
}

.app-btn {
  text-align: right;
}

.app-btn .app-store-btn {
  border-radius: 3px;
  display: inline-block;
  position: relative;
  padding: 12px 25px 12px 80px;
  background-color: #ffffff;
  color: #6e727f;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-right: 20px;
  text-align: left;
}

.app-btn .app-store-btn i {
  position: absolute;
  left: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 50px;
  color: #09101f;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.app-btn .app-store-btn span {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #09101f;
  margin-top: 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.app-btn .app-store-btn:hover {
  background-color: #002856;
  color: #ffffff;
}

.app-btn .app-store-btn:hover span {
  color: #ffffff;
}

.app-btn .app-store-btn:hover i {
  color: #ffffff;
}

.app-btn .play-store-btn {
  border-radius: 3px;
  display: inline-block;
  position: relative;
  padding: 12px 25px 12px 80px;
  background-color: #ffffff;
  color: #6e727f;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-align: left;
}

.app-btn .play-store-btn i {
  position: absolute;
  left: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 50px;
  color: #09101f;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.app-btn .play-store-btn span {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #09101f;
  margin-top: 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.app-btn .play-store-btn:hover {
  background-color: #002856;
  color: #ffffff;
}

.app-btn .play-store-btn:hover span {
  color: #ffffff;
}

.app-btn .play-store-btn:hover i {
  color: #ffffff;
}

.app-inner {
  background-color: #4865ff;
  padding: 70px 50px;
}

.app-inner .app-btn .app-store-btn i {
  color: #4865ff;
}

.app-inner .app-btn .app-store-btn:hover i {
  color: #ffffff;
}

.app-inner .app-btn .play-store-btn i {
  color: #4865ff;
}

.app-inner .app-btn .play-store-btn:hover i {
  color: #ffffff;
}

/*================================================
Blog Area CSS
=================================================*/
.blog-area.bg-fafafa {
  background-color: #fafafa;
}

.blog-area.bg-fafafa .single-blog-item .post-meta li i {
  color: #4865ff;
}

.blog-area.bg-fafafa .single-blog-item:hover .post-content h3 a {
  color: #4865ff;
}

.blog-area.bg-fafafa .single-blog-item:hover .post-content .blog-btn {
  color: #4865ff;
}

.blog-area.bg-ffffff .single-blog-item .post-meta li i {
  color: #4ed198;
}

.blog-area.bg-ffffff .single-blog-item:hover .post-content h3 a {
  color: #4ed198;
}

.blog-area.bg-ffffff .single-blog-item:hover .post-content .blog-btn {
  color: #4ed198;
}

.blog-area.bg-ffffff .section-title span {
  color: #4ed198;
}

.blog-area.bg-container-width {
  max-width: 1290px;
  margin: auto;
}

.blog-area.bg-container-width .single-blog-item .post-content h3 {
  font-size: 25px;
}

.blog-area .blog-home h2{
  color: #002856;
}

.blog-home h3{
  color: #002856;
}

.single-blog-item {
  margin-bottom: 30px;
}

.single-blog-item .post-image {
  overflow: hidden;
}

.single-blog-item .post-image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-blog-item .post-content {
  margin-top: 25px;
}

.single-blog-item .post-content h3 {
  margin-bottom: 0;
  font-size: 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-blog-item .post-content h5{
  height: 72px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-blog-item .post-content h3 a {
  color: #09101f;
}

.single-blog-item .post-content .post-meta {
  padding-left: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.single-blog-item .post-content .post-meta li {
  list-style-type: none;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  padding-left: 22px;
  margin-right: 18px;
}

.single-blog-item .post-content .post-meta li:last-child {
  margin-right: 0;
  float: right;
}

.single-blog-item .post-content .post-meta li i {
  position: absolute;
  left: 0;
  color: #002856;
  top: 4px;
  font-size: 16px;
}

.single-blog-item .post-content p {
  margin-bottom: 18px;
}

.single-blog-item .post-content .blog-btn {
  font-weight: 600;
  font-size: 18px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-blog-item .post-content .blog-btn i {
  font-size: 16px;
}

.single-blog-item:hover .post-image img {
  -webkit-transform: rotate(2deg) scale(1.2);
          transform: rotate(2deg) scale(1.2);
}

.single-blog-item:hover .post-content h3 a {
  color: #002856;
}

.single-blog-item:hover .post-content .blog-btn {
  color: #002856;
  letter-spacing: 1px;
}

/*================================================
Partner Area CSS
=================================================*/
.partner-area {
  background-image: none;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.partner-area.bg-fafafa {
  background-image: unset;
  background-color: #fafafa;
}

.partner-item img {
  width: auto !important;
  margin: auto;
  height: 70px;
  max-width: 70px;
}

.partner-item p{
  color: #002856;
  font-weight: 600;
}

.partner-item p a{
  color: #002856;
}

.partner-item a:hover{
  color: #002856;
}

/*================================================
About Area CSS
=================================================*/
.about-area {
  border-bottom: 1px solid #e2e3e5;
}

.about-area.bg-ffffff {
  border-bottom: 1px solid transparent;
}

.about-area.bg-ffffff .about-content {
  padding: 50px 100px;
}

.about-area.bg-ffffff .about-content span {
  color: #002856;
}

.about-area.bg-ffffff .about-content .about-btn .default-btn {
  background-color: #002856;
}

.about-area.bg-ffffff .about-image .video-btn {
  background-color: #002856;
}

.about-area.bg-ffffff .about-image .video-btn::before {
  border: 2px solid #002856;
}

.about-area.bg-ffffff .about-image .video-btn:hover i {
  color: #ffffff;
}

.about-content {
  padding: 50px 100px;
}

.about-content span {
  color: #4865ff;
  font-weight: 600;
}

.about-content h3 {
  font-size: 36px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.about-content p {
  margin-bottom: 0;
}

.about-content .about-btn {
  margin-top: 30px;
}

.about-content .about-btn .default-btn {
  background-color: #4865ff;
}

.about-image {
  background-image: none;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
}

.about-image .video-btn {
  display: inline-block;
  width: 100px;
  height: 100px;
  line-height: 110px;
  background: #4865ff;
  border-radius: 50%;
  color: #ffffff;
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  margin: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
}

.about-image .video-btn i {
  font-size: 80px;
  position: absolute;
  left: 10px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.about-image .video-btn::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  border: 2px solid #4865ff;
  -webkit-animation: ripple 1s linear infinite;
          animation: ripple 1s linear infinite;
}

.about-image .video-btn:hover {
  background-color: #ffffff;
}

.about-image .video-btn:hover i {
  color: #4865ff;
}

@-webkit-keyframes ripple {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  75% {
    -webkit-transform: scale(1.75);
            transform: scale(1.75);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
  }
}

@keyframes ripple {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  75% {
    -webkit-transform: scale(1.75);
            transform: scale(1.75);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
  }
}

.about-content-warp {
  padding-top: 50px;
  padding-bottom: 50px;
}

.about-content-warp span {
  color: #002856;
  font-weight: 600;
}

.about-content-warp h3 {
  font-size: 36px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.about-content-warp .about-warp-list {
  padding-left: 0;
  margin-top: 25px;
  margin-bottom: 0;
}

.about-content-warp .about-warp-list li {
  list-style-type: none;
  color: #6e727f;
  font-weight: 600;
  position: relative;
  padding-left: 28px;
  margin-bottom: 15px;
}

.about-content-warp .about-warp-list li:last-child {
  margin-bottom: 0;
}

.about-content-warp .about-warp-list li i {
  position: absolute;
  left: 0;
  top: 0;
  color: #002856;
}

/*================================================
Overview Area CSS
=================================================*/
.overview-area .row .col-lg-6 {
  padding: 0;
}

.overview-content {
  background-color: #002856;
  padding: 50px 80px;
}

.overview-content h3 {
  font-size: 30px;
  color: #ffffff;
  margin-bottom: 15px;
}

.overview-content p {
  color: #ffffff;
}

.overview-content .overview-btn {
  margin-top: 25px;
}

.overview-content .overview-btn .default-btn {
  background-color: #4865ff;
}

.overview-image {
  background-image: none;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
}

.overview-image.item-two {
  background-image: none;
}

/*================================================
Goals Area CSS
=================================================*/
.goals-area {
  border-bottom: 1px solid #e2e3e5;
}

.goals-content {
  max-width: 695px;
  margin-left: auto;
}

.goals-content span {
  font-weight: 600;
  color: #4865ff;
}

.goals-content h3 {
  font-size: 36px;
  margin-top: 18px;
  margin-bottom: 0;
}

.goals-content .goals-inner-content {
  position: relative;
  margin-top: 30px;
  padding-left: 60px;
}

.goals-content .goals-inner-content .number {
  position: absolute;
  left: 0;
  top: 0;
}

.goals-content .goals-inner-content .number span {
  display: inline-block;
  height: 45px;
  width: 45px;
  line-height: 45px;
  background-color: #4865ff;
  color: #ffffff;
  font-size: 25px;
  text-align: center;
  border-radius: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.goals-content .goals-inner-content h4 {
  font-weight: 500;
  font-size: 25px;
  margin-bottom: 10px;
}

.goals-content .goals-inner-content p {
  margin-bottom: 0;
}

.goals-content .goals-inner-content:hover .number span {
  background-color: #002856;
}

.goals-image {
  background-image: none;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
}

/*================================================
Team Area CSS
=================================================*/
.team-area {
  border-bottom: 1px solid #e2e3e5;
}

.team-area .section-title span {
  color: #4865ff;
}

.team-area.bg-ffffff {
  border-bottom: 1px solid transparent;
}

.team-area.bg-ffffff .section-title span {
  color: #002856;
}

.team-area.bg-ffffff .single-team-box .team-content .social li a i {
  background-color: #002856;
  border: 1px solid #002856;
}

.team-area.bg-ffffff .single-team-box:hover .team-content {
  background-color: #002856;
}

.team-area.bg-ffffff .single-team-box:hover .team-content .social li a i {
  background-color: #ffffff;
  border: 1px solid #ffffff;
  color: #002856;
}

.single-team-box {
  position: relative;
  margin-bottom: 30px;
}

.single-team-box .team-image {
  overflow: hidden;
  height: 260px;
}

.single-team-box .team-image img {
  /*-webkit-transition: 0.5s;*/
  /*transition: 0.5s;*/
  width: 100%;
  object-fit: cover;
}

.single-team-box .team-content{
  position: relative;
  bottom: 0px;
  left: 0px;
  right: 0px;
  padding: 15px;
  /*height: 100px;*/
  text-align: center;
  background-color: #002856;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-team-box .team-content .social {
  padding-left: 0;
  margin-bottom: 20px;
}

.single-team-box .team-content .social li {
  display: inline-block;
  list-style-type: none;
  margin: 0 8px;
}

.single-team-box .team-content .social li a i {
  display: inline-block;
  height: 45px;
  width: 45px;
  line-height: 45px;
  background-color: #4865ff;
  border: 1px solid #4865ff;
  color: #ffffff;
  font-size: 25px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-team-box .team-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #fff;
}

.single-team-box .team-content span {
  color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-team-box:hover .team-image img {
  /*-webkit-transform: rotate(1deg) scale(1.1);*/
  /*        transform: rotate(1deg) scale(1.1);*/
}

.single-team-box:hover .team-content {
  bottom: 0px;
  background-color: #4865ff;
}

.single-team-box:hover .team-content .social li a i {
  background-color: transparent;
  border: 1px solid #ffffff;
  background-color: #ffffff;
  color: #4865ff;
}

.single-team-box:hover .team-content h3 {
  color: #ffffff;
}

.single-team-box:hover .team-content span {
  color: #ffffff;
}

/*================================================
FAQ Area CSS
=================================================*/
.faq-area .section-title {
  max-width: 620px;
}

.faq-area .section-title span {
  color: #4865ff;
}

.faq-area.bg-ffffff .section-title span {
  color: #002856;
}

.faq-area.bg-ffffff .faq-accordion .accordion .accordion-title i {
  color: #002856;
}

.faq-accordion .accordion {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.faq-accordion .accordion .accordion-item {
  display: block;
  margin-bottom: 10px;
}

.faq-accordion .accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-accordion .accordion .accordion-title {
  color: #09101f;
  position: relative;
  display: block;
  font-size: 20px;
  font-weight: 600;
  padding-left: 25px;
  padding-right: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  border: 1px solid #e7e7e7;
}

.faq-accordion .accordion .accordion-title i {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #4865ff;
  font-size: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.faq-accordion .accordion .accordion-title.active i::before {
  content: "\eace";
}

.faq-accordion .accordion .accordion-content {
  display: none;
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 25px;
  color: #6e727f;
  border-left: 1px solid #e7e7e7;
  border-right: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
}

.faq-accordion .accordion .accordion-content.show {
  display: block;
}

/*================================================
Grow Area CSS
=================================================*/
.grow-area {
  border-bottom: 1px solid #e8eaea;
}

.grow-content {
  max-width: 600px;
}

.grow-content span {
  font-weight: 600;
  color: #4ed198;
}

.grow-content h3 {
  font-size: 48px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.grow-content p {
  margin-bottom: 0;
}

.grow-content .grow-inner-content {
  position: relative;
  margin-top: 30px;
  padding-left: 60px;
}

.grow-content .grow-inner-content .number {
  position: absolute;
  left: 0;
  top: 0;
}

.grow-content .grow-inner-content .number span {
  display: inline-block;
  height: 45px;
  width: 45px;
  line-height: 45px;
  background-color: #4ed198;
  color: #ffffff;
  font-size: 25px;
  text-align: center;
  border-radius: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.grow-content .grow-inner-content h4 {
  font-weight: 500;
  font-size: 25px;
  margin-bottom: 10px;
}

.grow-content .grow-inner-content p {
  margin-bottom: 0;
}

.grow-content .grow-inner-content:hover .number span {
  background-color: #002856;
}

/*================================================
Operate Area CSS
=================================================*/
.operate-content {
  max-width: 600px;
}

.operate-content span {
  font-weight: 600;
  color: #4ed198;
}

.operate-content h3 {
  font-size: 48px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.operate-content p {
  margin-bottom: 0;
}

.operate-content .operate-list {
  padding-left: 0;
  margin-top: 20px;
  margin-bottom: 0;
}

.operate-content .operate-list li {
  list-style-type: none;
  color: #6e727f;
  font-weight: 600;
  position: relative;
  padding-left: 28px;
  margin-bottom: 15px;
}

.operate-content .operate-list li:last-child {
  margin-bottom: 0;
}

.operate-content .operate-list li i {
  position: absolute;
  left: 0;
  top: 0;
  color: #4ed198;
}

.operate-content .operate-btn {
  margin-top: 30px;
}

.operate-content .operate-btn .default-btn {
  background-color: #4ed198;
}

/*================================================
Transactions Area CSS
=================================================*/
.transactions-content {
  max-width: 650px;
}

.transactions-content span {
  font-weight: 600;
  color: #4ed198;
}

.transactions-content h3 {
  font-size: 48px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.transactions-content p {
  margin-bottom: 0;
}

.transactions-content .transactions-list {
  padding-left: 0;
  margin-top: 20px;
  margin-bottom: 0;
}

.transactions-content .transactions-list li {
  list-style-type: none;
  color: #6e727f;
  font-weight: 600;
  position: relative;
  padding-left: 28px;
  margin-bottom: 15px;
}

.transactions-content .transactions-list li:last-child {
  margin-bottom: 0;
}

.transactions-content .transactions-list li i {
  position: absolute;
  left: 0;
  top: 0;
  color: #4ed198;
}

/*================================================
Consultants Area CSS
=================================================*/
.consultants-area {
  border-top: 1px solid #e8eaea;
}

.consultants-content {
  max-width: 700px;
}

.consultants-content span {
  font-weight: 600;
  color: #4ed198;
}

.consultants-content h3 {
  font-size: 48px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.consultants-content p {
  margin-bottom: 0;
}

.consultants-content .consultants-inner-content {
  position: relative;
  margin-top: 30px;
  padding-left: 60px;
}

.consultants-content .consultants-inner-content .number {
  position: absolute;
  left: 0;
  top: 0;
}

.consultants-content .consultants-inner-content .number span {
  display: inline-block;
  height: 45px;
  width: 45px;
  line-height: 45px;
  background-color: #4ed198;
  color: #ffffff;
  font-size: 25px;
  text-align: center;
  border-radius: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.consultants-content .consultants-inner-content h4 {
  font-weight: 500;
  font-size: 25px;
  margin-bottom: 10px;
}

.consultants-content .consultants-inner-content p {
  margin-bottom: 0;
}

.consultants-content .consultants-inner-content:hover .number span {
  background-color: #002856;
}

/*================================================
Main Slider Area CSS
=================================================*/
.main-slider-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.main-slider-item {
  background-color: #f8f9fb;
  /*padding-top: 150px;
  padding-bottom: 150px;*/
}

.main-slider-item .container {
  max-width: 100%;
}

.main-slider-content{
    position: absolute;
    top: 32%;
    left: 22%;
    padding: 25px;
    width: 600px;
    text-align: center;
}

.main-slider-content:before{
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 2;
    background-color: rgba(222 222 222/28%);
}



.main-slider-content span {
  font-size: 18px;
  color: #002856;
  font-weight: 500;
}

.main-slider-content h1 {
    font-size: 30px;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    z-index: 3;
    text-shadow: 0 4px 15px rgb(0 40 86);
    font-weight: 900;
#  font-size: 30px;
#  color: #0c3d75;
#  margin-bottom: 20px;
#    position: relative;
#    z-index: 3;
#  font-weight: 900;
}

.main-slider-content p {
  color: #ffffff;
  margin-bottom: 0;
}

.main-slider-content .slider-btn {
  margin-top: 30px;
    position: relative;
    z-index: 3;
}

.home-slides.owl-theme .owl-nav {
  margin-top: 0;
}

.home-slides.owl-theme .owl-nav [class*=owl-] {
  position: absolute;
  left: 10px;
  top: 45%;
  -webkit-transform: translateY(-45%);
          transform: translateY(-45%);
  margin: 0;
  outline: 0;
  width: 45px;
  height: 45px;
  line-height: 52px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: rgba(0,40,86,0.35);
  color: #ffffff;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
}

.home-slides.owl-theme .owl-nav [class*=owl-]:hover, .home-slides.owl-theme .owl-nav [class*=owl-]:focus {
  background-color: rgb(0,40,86);
}

.home-slides.owl-theme .owl-nav [class*=owl-].owl-next {
  left: auto;
  right: 10px;
}

.home-slides.owl-theme .owl-nav [class*=owl-] i {
  font-size: 25px;
  font-weight: bold;
}

.home-slides.owl-theme:hover .owl-nav [class*=owl-] {
  opacity: 1;
  visibility: visible;
  left: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.home-slides.owl-theme:hover .owl-nav [class*=owl-].owl-next {
  left: auto;
  right: 20px;
}

.main-slider-shape .shape-1 {
  position: absolute;
  top: -60px;
  left: 0;
  -webkit-animation: moveBounce 5s linear infinite;
          animation: moveBounce 5s linear infinite;
  z-index: 1;
}

.main-slider-shape .shape-2 {
  position: absolute;
  bottom: -60px;
  right: 0;
  -webkit-animation: moveBounce 5s linear infinite;
          animation: moveBounce 5s linear infinite;
  z-index: 1;
}

/*================================================
Subscribe Area CSS
=================================================*/
.subscribe-area {
  position: relative;
  z-index: 1;
  background-image: none;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.subscribe-area::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -1;
  height: 100%;
  background: #000000;
  opacity: .70;
}

.subscribe-content span {
  color: #002856;
  font-weight: bold;
}

.subscribe-content h2 {
  color: #ffffff;
  margin-top: 30px;
  margin-bottom: 0;
  font-size: 36px;
  text-align: right;
}

.newsletter-form {
  position: relative;
  margin-top: 35px;
}

.newsletter-form .input-newsletter {
  display: block;
  width: 100%;
  background-color: #ffffff;
  border: none;
  height: 65px;
  padding-left: 25px;
  border-radius: 10px;
  padding-top: 0;
  outline: 0;
  color: #09101f;
}

.newsletter-form button {
  position: absolute;
  right: 5px;
  top: 5px;
  background: #002856;
  color: #ffffff;
  border: none;
  height: 55px;
  padding: 0 60px;
  border-radius: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  line-height: 55px;
  font-size: 15px;
  font-weight: 700;
  transition: 0.5s;
}

.newsletter-form button:hover {
  background-color: #002856;
}

.newsletter-form #validator-newsletter {
  color: red;
  margin-top: 15px;
  font-weight: 600;
}

/*================================================
Page Banner CSS
=================================================*/
.page-banner-area {
  position: relative;
  background-color: #002856;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  padding-top: 140px;
  /*padding-bottom: 75px;*/
  background-attachment: fixed;
}

.page-banner-area.history {
  position: relative;
  background-color: #002856;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 90vh;
  padding-top: 140px;
  /*padding-bottom: 75px;*/
  background-attachment: fixed;
  z-index: -1
}

.page-banner-area.history .page-banner-content h2 {
  font-size: 72px;
  margin-top: 30vh;
  text-shadow: 0 4px 15px rgb(0, 40, 86, 0.3);
  z-index: 5
}

.page-banner-area.history .page-banner-content h2::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
}

.page-banner-area::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: #000000;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
  opacity: .60;
}

.page-banner-area.item-bg1 {
  background-image: none;
}

.page-banner-area.item-bg2 {
  background-image: none;
}

.page-banner-area.item-bg3 {
  background-image: none;
}

.page-banner-area.item-bg4 {
  background-image: none;
}

.page-banner-content {
  text-align: center;
}

.page-banner-content h2 {
  margin-bottom: 0;
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 45px;
}

.page-banner-content ul {
  padding-left: 0;
  margin-bottom: 0;
}

.page-banner-content ul li {
  display: inline-block;
  margin-left: 15px;
  font-weight: 600;
  color: #ffffff;
  list-style-type: none;
  position: relative;
}

.page-banner-content ul li::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 6px;
  height: 12px;
  width: 1px;
  background: #ffffff;
}

.page-banner-content ul li:first-child {
  margin-left: 0;
}

.page-banner-content ul li:first-child::before {
  display: none;
}

.page-banner-content ul li:last-child{
    color: #ffffff;
}

.page-banner-content ul li a {
  display: block;
  color: #ffffff;
}

/*================================================
Pricing Area CSS
=================================================*/
.single-pricing-box {
  margin-bottom: 30px;
  border: 1px solid #f5eafc;
  padding: 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 5px;
  text-align: center;
}

.single-pricing-box .pricing-header h3 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: bold;
}

.single-pricing-box .price {
  font-size: 50px;
  font-weight: bold;
  color: #002856;
  margin-bottom: 15px;
}

.single-pricing-box .price span {
  display: inline-block;
  margin-left: -7px;
  font-size: 20px;
  font-weight: bold;
}

.single-pricing-box .pricing-features {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  text-align: left;
  max-width: 300px;
  margin-left: auto;
}

.single-pricing-box .pricing-features li {
  margin-bottom: 12px;
  position: relative;
  font-weight: 600;
}

.single-pricing-box .pricing-features li:last-child {
  margin-bottom: 0;
}

.single-pricing-box .pricing-features li i {
  font-size: 16px;
  color: #002856;
  margin-right: 5px;
}

.single-pricing-box .pricing-btn {
  margin-top: 25px;
}

.single-pricing-box:hover {
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.05);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  background-color: #ffffff;
  border-color: #ffffff;
}

.pricing-list-tab .tabs {
  text-align: center;
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 40px;
}

.pricing-list-tab .tabs li {
  display: inline-block;
  margin: 0 10px;
}

.pricing-list-tab .tabs li a {
  display: inline-block;
  background-color: #002856;
  -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);
  color: #ffffff;
  padding: 10px 50px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 30px;
  width: 100%;
}

.pricing-list-tab .tabs li.current a {
  color: #ffffff;
  background-color: #002856;
}

.tab .tabs_item {
  display: none;
}

.tab .tabs_item:first-child {
  display: block;
}

/*================================================
Overview Box Area CSS
=================================================*/
.overview-box-area {
  border-bottom: 1px solid #cecfd2;
}

.overview-box-content {
  max-width: 600px;
}

.overview-box-content span {
  font-weight: 600;
  color: #002856;
}

.overview-box-content h3 {
  font-size: 36px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.overview-box-content p {
  margin-bottom: 0;
}

.overview-box-content .overview-box-list {
  padding-left: 0;
  margin-top: 20px;
  margin-bottom: 0;
}

.overview-box-content .overview-box-list li {
  list-style-type: none;
  color: #6e727f;
  font-weight: 600;
  position: relative;
  padding-left: 28px;
  margin-bottom: 15px;
}

.overview-box-content .overview-box-list li:last-child {
  margin-bottom: 0;
}

.overview-box-content .overview-box-list li i {
  position: absolute;
  left: 0;
  top: 0;
  color: #002856;
}

.overview-box-image {
  text-align: center;
}

/*================================================
Payment Box Area CSS
=================================================*/
.payment-box-content {
  max-width: 600px;
}

.payment-box-content span {
  font-weight: 600;
  color: #002856;
}

.payment-box-content h3 {
  font-size: 36px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.payment-box-content p {
  margin-bottom: 0;
}

.payment-box-content .payment-box-list {
  padding-left: 0;
  margin-top: 20px;
  margin-bottom: 0;
}

.payment-box-content .payment-box-list li {
  list-style-type: none;
  color: #6e727f;
  font-weight: 600;
  position: relative;
  padding-left: 28px;
  margin-bottom: 15px;
}

.payment-box-content .payment-box-list li:last-child {
  margin-bottom: 0;
}

.payment-box-content .payment-box-list li i {
  position: absolute;
  left: 0;
  top: 0;
  color: #002856;
}

.payment-box-image {
  text-align: center;
}

/*================================================
Using Card Area CSS
=================================================*/
.using-card-content {
  max-width: 600px;
}

.using-card-content span {
  font-weight: 600;
  color: #002856;
}

.using-card-content h3 {
  font-size: 48px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.using-card-content p {
  margin-bottom: 0;
}

.using-card-content .using-card-inner-content {
  position: relative;
  margin-top: 30px;
  padding-left: 60px;
}

.using-card-content .using-card-inner-content .number {
  position: absolute;
  left: 0;
  top: 0;
}

.using-card-content .using-card-inner-content .number span {
  display: inline-block;
  height: 45px;
  width: 45px;
  line-height: 45px;
  background-color: #002856;
  color: #ffffff;
  font-size: 25px;
  text-align: center;
  border-radius: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.using-card-content .using-card-inner-content h4 {
  font-weight: 500;
  font-size: 25px;
  margin-bottom: 10px;
}

.using-card-content .using-card-inner-content p {
  margin-bottom: 0;
}

.using-card-content .using-card-inner-content:hover .number span {
  background-color: #002856;
}

/*================================================
Services Details Area CSS
=================================================*/
.services-details-desc h1 {
  font-size: 36px;
  margin-bottom: 30px;
}

.services-details-desc h3 {
  margin-top: 30px;
  margin-bottom: 12px;
  font-size: 25px;
}

.services-details-desc p {
  margin-bottom: 0;
}

.services-details-desc .services-details-features {
  margin-top: 30px;
  margin-bottom: 30px;
}

.services-details-desc .services-details-features .features-content h5 {
  font-size: 25px;
  margin-bottom: 15px;
}

.services-details-desc .services-details-features p {
  margin-bottom: 0;
}

.services-details-desc .services-details-features .features-list {
  padding-left: 0;
  list-style-type: none;
  margin-top: 25px;
  margin-bottom: 0;
}

.services-details-desc .services-details-features .features-list li {
  position: relative;
  color: #09101f;
  margin-bottom: 15px;
  padding-left: 25px;
  font-weight: 500;
  font-size: 16px;
}

.services-details-desc .services-details-features .features-list li i {
  color: #002856;
  position: absolute;
  left: 0;
  top: 0;
}

.services-details-desc .services-details-features .features-list li:last-child {
  margin-bottom: 0;
}

.services-details-desc .services-details-features .features-image {
  background-image: none;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 450px;
  width: 100%;
}

.services-details-desc .services-details-benefit h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 25px;
}

.services-details-desc .services-details-benefit p {
  margin-bottom: 0;
}

.services-details-desc .services-details-benefit .benefit-list {
  padding-left: 0;
  list-style-type: none;
  margin-top: 25px;
  margin-bottom: 0;
}

.services-details-desc .services-details-benefit .benefit-list li {
  position: relative;
  color: #09101f;
  margin-bottom: 15px;
  padding-left: 25px;
  font-weight: 500;
  font-size: 16px;
}

.services-details-desc .services-details-benefit .benefit-list li i {
  color: #002856;
  position: absolute;
  left: 0;
  top: 0;
}

.services-details-desc .services-details-benefit .benefit-list li:last-child {
  margin-bottom: 0;
}

.services-details-desc .banking-features {
  margin-top: 30px;
}

.services-details-desc .banking-features h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 25px;
}

.services-details-desc .banking-features p {
  margin-bottom: 0;
}

.services-details-desc .banking-features .banking-features-list {
  padding-left: 0;
  list-style-type: none;
  margin-top: 25px;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.services-details-desc .banking-features .banking-features-list li {
  position: relative;
  color: #09101f;
  margin-bottom: 15px;
  padding-left: 25px;
  font-weight: 500;
  font-size: 16px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.services-details-desc .banking-features .banking-features-list li i {
  color: #002856;
  position: absolute;
  left: 0;
  top: 0;
}

.services-details-desc .banking-features .banking-features-list li:last-child {
  margin-bottom: 0;
}

.services-details-desc .services-details-faq {
  margin-top: 20px;
}

.services-details-desc .services-details-faq .accordion {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.services-details-desc .services-details-faq .accordion .accordion-item {
  display: block;
  background: #f3f3f3;
  margin-bottom: 10px;
}

.services-details-desc .services-details-faq .accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.services-details-desc .services-details-faq .accordion .accordion-title {
  padding: 25px 40px 20px 20px;
  color: #09101f;
  position: relative;
  display: block;
  font-size: 18px;
  font-weight: 600;
}

.services-details-desc .services-details-faq .accordion .accordion-title i {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #09101f;
  font-size: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.services-details-desc .services-details-faq .accordion .accordion-title.active i::before {
  content: "\eace";
  color: #002856;
}

.services-details-desc .services-details-faq .accordion .accordion-content {
  display: none;
  position: relative;
  padding: 18px 20px;
  border-top: 1px solid #002856;
  color: #6e727f;
}

.services-details-desc .services-details-faq .accordion .accordion-content.show {
  display: block;
}

.services-details-information .services-list {
  padding-left: 0;
  list-style-type: none;
  background-color: #ffffff;
  -webkit-box-shadow: 0 5px 40px 10px #eaeaef;
          box-shadow: 0 5px 40px 10px #eaeaef;
  margin-bottom: 30px;
}

.services-details-information .services-list li a {
  display: block;
  border-bottom: 1px solid #eeeeee;
  padding: 20px 30px;
  position: relative;
  font-size: 15px;
  font-weight: 600;
}

.services-details-information .services-list li a:hover, .services-details-information .services-list li a.active {
  background-color: #002856;
  border-color: #002856;
  color: #ffffff;
}

.services-details-information .services-list li:last-child a {
  border-bottom: none;
}

.services-details-information .download-file {
  background-color: #ffffff;
  -webkit-box-shadow: 0 5px 40px 10px #eaeaef;
          box-shadow: 0 5px 40px 10px #eaeaef;
  margin-bottom: 30px;
  padding: 30px;
}

.services-details-information .download-file h3 {
  margin-bottom: 25px;
  font-size: 22px;
  padding-left: 15px;
  border-left: 2px solid #002856;
}

.services-details-information .download-file ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}

.services-details-information .download-file ul li a {
  display: block;
  border-bottom: 1px solid #eeeeee;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 14px;
  font-weight: 600;
}

.services-details-information .download-file ul li a i {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 22px;
}

.services-details-information .download-file ul li a:hover {
  color: #002856;
}

.services-details-information .download-file ul li:first-child {
  border-top: 1px solid #eeeeee;
}

.services-details-information .services-contact-info {
  background-color: #ffffff;
  -webkit-box-shadow: 0 5px 40px 10px #eaeaef;
          box-shadow: 0 5px 40px 10px #eaeaef;
  margin-bottom: 30px;
  padding: 30px;
}

.services-details-information .services-contact-info h3 {
  margin-bottom: 25px;
  font-size: 22px;
  border-left: 2px solid #002856;
  padding-left: 15px;
}

.services-details-information .services-contact-info ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.services-details-information .services-contact-info ul li {
  margin-bottom: 20px;
  border-bottom: 1px solid #eeeeee;
  position: relative;
  color: #002856;
  font-weight: 500;
  font-size: 16px;
  padding-left: 35px;
  padding-bottom: 20px;
  font-size: 14px;
}

.services-details-information .services-contact-info ul li span {
  color: #09101f;
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
}

.services-details-information .services-contact-info ul li a {
  display: block;
  color: #002856;
  margin-bottom: 8px;
  font-size: 14px;
}

.services-details-information .services-contact-info ul li a:last-child {
  margin-bottom: 0;
}

.services-details-information .services-contact-info ul li a:hover {
  color: #002856;
}

.services-details-information .services-contact-info ul li .icon {
  position: absolute;
  left: 0;
  top: 3px;
  color: #002856;
  font-size: 25px;
}

.services-details-information .services-contact-info ul li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.related-services {
  margin-top: 30px;
}

.related-services h5 {
  font-size: 25px;
  margin-bottom: 20px;
}

/*================================================
Sign In Area CSS
=================================================*/
.sign-in-area {
  border-bottom: 1px solid #eeeeee;
}

.sign-in-image {
  background-image: none;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
}

.sign-in-form {
  padding: 40px 50px;
  border-radius: 5px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 10px rgba(51, 51, 51, 0.1);
          box-shadow: 0 0 10px rgba(51, 51, 51, 0.1);
}
.sign-in-form .message{
  height: 100px !important;
  padding-top: 15px !important;
}

.sign-in-form h2 {
  margin-bottom: 30px;
  font-size: 36px;
  position: relative;
  padding-left: 15px;
}

.sign-in-form h2::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 2px;
  content: '';
  height: 40px;
  background-color: #002856;
}

.sign-in-form form .form-group {
  margin-bottom: 25px;
}

.sign-in-form form .form-group label {
  display: block;
  margin-bottom: 10px;
  color: #6e727f;
  font-weight: 400;
  font-size: 16px;
}

.sign-in-form form .form-group .form-control {
  height: 60px;
  padding: 0 0 0 15px;
  line-height: initial;
  color: #09101f;
  background-color: #f1f1f1 !important;
  border: 1px solid #f1f1f1;
  border-radius: 5px;
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 16px;
  font-weight: 500;
}

.sign-in-form form .form-group .form-control:focus {
  background-color: transparent !important;
}

.sign-in-form form .lost-your-password {
  text-align: right;
}

.sign-in-form form .lost-your-password a {
  display: inline-block;
  position: relative;
  font-weight: 500;
  font-size: 15px;
  color: #6e727f;
}

.sign-in-form form .lost-your-password a::before {
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #eeeeee;
}

.sign-in-form form .lost-your-password a::after {
  width: 0;
  height: 1px;
  position: absolute;
  left: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  bottom: 0;
  content: '';
  background-color: #002856;
}

.sign-in-form form .lost-your-password a:hover::before {
  width: 0;
}

.sign-in-form form .lost-your-password a:hover::after {
  width: 100%;
}

.sign-in-form form .form-check {
  font-weight: 500;
  font-size: 15px;
  color: #000000;
}

.sign-in-form form .form-check a{
  color: #002856;
}

.sign-in-form form .form-check-input {
  position: absolute;
  margin-top: 4px;
  margin-left: -18px;
}

.sign-in-form form button {
  border: none;
  margin-top: 25px;
  padding: 12px 30px;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
}

/*================================================
Register Area CSS
=================================================*/
.register-form {
  padding: 40px 50px;
  border-radius: 5px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 10px rgba(51, 51, 51, 0.1);
          box-shadow: 0 0 10px rgba(51, 51, 51, 0.1);
}

.register-form h2 {
  margin-bottom: 30px;
  font-size: 36px;
  position: relative;
  padding-left: 15px;
}

.register-form h2::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 2px;
  content: '';
  height: 40px;
  background-color: #002856;
}

.register-form form .form-group {
  margin-bottom: 25px;
}

.register-form form .form-group label {
  display: block;
  margin-bottom: 10px;
  color: #6e727f;
  font-weight: 400;
  font-size: 16px;
}

.register-form form .form-group .form-control {
  height: 60px;
  padding: 0 0 0 15px;
  line-height: initial;
  color: #09101f;
  background-color: #f1f1f1 !important;
  border: 1px solid #f1f1f1;
  border-radius: 5px;
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 16px;
  font-weight: 600;
}

.register-form form .form-group .form-control:focus {
  background-color: transparent !important;
}

.register-form form button {
  border: none;
  padding: 15px 30px;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}

.register-form form .nice-select {
  height: 60px;
  width: 100%;
  line-height: 48px;
  font-size: 16px;
  padding-left: 20px;
  border: 1px solid #f1f1f1;
  color: #6e727f;
  border-radius: 5px;
  background-color: #f1f1f1;
  padding-top: 5px;
  font-weight: 600;
  margin-bottom: 20px;
}

.register-form form .nice-select:focus {
  background-color: transparent;
}

.register-form form .nice-select .list {
  background-color: #ffffff;
  -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);
  border-radius: 0;
  margin-top: 0;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}

.register-form form .nice-select .list .option {
  -webkit-transition: .6s;
  transition: .6s;
  color: #09101f;
  padding-left: 20px;
  padding-right: 20px;
}

.register-form form .nice-select .list .option:hover {
  background-color: #002856 !important;
  color: #ffffff;
}

.register-form form .nice-select .list .option.selected {
  background-color: transparent;
  font-weight: 600;
}

.register-form form .nice-select::after {
  height: 8px;
  width: 8px;
  border-color: #b5b6bc;
  right: 20px;
}

.register-image {
  background-image: none;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
}

/*================================================
Contact Area CSS
=================================================*/
.contact-area {
  position: relative;
  z-index: 1;
}

.contact-area::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 60%;
  background-color: #002856;
  z-index: -1;
}

.contact-area .section-title h2 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #ffffff;
}

.contact-area .section-title p {
  color: #ffffff;
}

.contact-form {
  padding: 45px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 10px rgba(51, 51, 51, 0.1);
          box-shadow: 0 0 10px rgba(51, 51, 51, 0.1);
  max-width: 950px;
  margin: auto;
}

.contact-form .form-group .form-control {
  display: block;
  width: 100%;
  height: 60px;
  outline: 0;
  background-color: #f1f1f1;
  border: 1px solid #f1f1f1;
  border-radius: 3px;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0 15px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.contact-form .form-group .form-control:focus {
  outline: 0;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.contact-form .form-group textarea.form-control {
  height: auto;
  padding: 10px 15px;
  line-height: 1.5rem;
}

.contact-form .form-group .help-block.with-errors ul {
  color: red;
  margin-bottom: 0;
  margin-top: 10px;
}

.contact-form .form-group .help-block.with-errors ul li {
  font-size: 14px;
}

.contact-form .form-group label {
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-form #msgSubmit {
  margin: 0;
  font-size: 1.3rem;
}

.contact-form #msgSubmit.text-danger, .contact-form #msgSubmit.text-success {
  margin-top: 20px;
  font-size: 20px;
}

.contact-form .default-btn {
  border: none;
  margin-top: 10px;
  width: 100%;
}

.contact-form .form-check {
  margin-top: 10px;
  margin-bottom: 20px;
  font-weight: 500;
  color: #6e727f;
}

.contact-form .form-check a {
  color: #002856;
}

/*================================================
Contact Info Area CSS
=================================================*/
.contact-info-box {
  text-align: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
  background: #ffffff;
  padding: 30px 50px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  height: 229px;
}

.contact-info-box::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  border-top: 1px solid #002856;
  z-index: -1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.contact-info-box .icon {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}



.contact-info-box .icon i {
  font-size: 80px;
  color: #002856;
  line-height: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.contact-info-box h3 {
  margin-bottom: 12px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 25px;
}

.contact-info-box p {
  margin-bottom: 2px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  max-width: 250px;
  margin: auto;
}

.contact-info-box p a {
  display: inline-block;
  color: #000000;
}

.contact-info-box p a:hover {
  color: #002856;
}

.contact-info-box p:last-child {
  margin-bottom: 0;
}

.contact-info-box:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.contact-info-box:hover::before {
  width: 100%;
}

#map iframe {
  width: 100%;
  height: 500px;
  margin-bottom: -7px;
  border: none;
}

/*================================================
404 Error Area CSS
=================================================*/
.error-content {
  text-align: center;
  margin: 0 auto;
  max-width: 750px;
}

.error-content h3 {
  font-size: 38px;
  margin-top: 45px;
  margin-bottom: 15px;
}

.error-content p {
  max-width: 520px;
  margin: 0 auto 25px;
}

/*================================================
Privacy Area CSS
=================================================*/
.privacy-policy-area .container {
  max-width: 1050px;
  margin: auto;
}

.privacy-policy-area .section-title h2 {
  margin-top: 0;
  margin-bottom: 15px;
}

.privacy-policy-image {
  margin-bottom: 30px;
  text-align: center;
}

.privacy-content h3 {
  font-size: 25px;
  margin: 0 0 16px 0;
  font-weight: 600;
}

.privacy-content ol, .privacy-content ul {
  margin-top: 10px;
  margin-bottom: 20px;
}

.privacy-content ol li, .privacy-content ul li {
  margin-bottom: 10px;
  color: #6e727f;
  line-height: 1.8;
}
/*================================================
Projects Area CSS
=================================================*/
.projects-area .container {
  max-width: 1250px;
}

.single-projects {
  margin-bottom: 30px;
}

.single-projects .projects-image {
  overflow: hidden;
}

.single-projects .projects-image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-projects .projects-content {
  position: relative;
  z-index: 1;
  background-color: #ffffff;
  -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);
  padding: 30px;
}

.single-projects .projects-content::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0%;
  background-color: #002856;
  z-index: -1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-projects .projects-content h3 {
  font-size: 28px;
  margin-bottom: 15px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-projects .projects-content h3 a {
  color: #09101f;
}

.single-projects .projects-content p {
  margin-bottom: 25px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-projects:hover .projects-image img {
  -webkit-transform: rotate(2deg) scale(1.2);
          transform: rotate(2deg) scale(1.2);
}

.single-projects:hover .projects-content::before {
  height: 100%;
}

.single-projects:hover .projects-content h3 a {
  color: #ffffff;
}

.single-projects:hover .projects-content p {
  color: #ffffff;
}

.single-projects:hover .projects-content .default-btn {
  background-color: #ffffff;
  color: #09101f;
}

.single-projects:hover .projects-content .default-btn:hover {
  color: #ffffff;
}

/*================================================
Projects Details Area CSS
=================================================*/
.projects-details-image {
  margin-bottom: 30px;
}

.projects-details-content {
  margin-top: 5px;
}

.projects-details-content h3 {
  font-size: 25px;
  margin-bottom: 10px;
  font-weight: 600;
}

.projects-details-content .projects-details-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 40px;
}

.projects-details-content .projects-details-info .projects-info-box {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  max-width: 20%;
}

.projects-details-content .projects-details-info .projects-info-box h4 {
  margin-bottom: 15px;
  font-size: 20px;
}

.projects-details-content .projects-details-info .projects-info-box span {
  display: block;
  color: #6e727f;
  font-size: 15px;
}

.projects-details-content .projects-details-info .projects-info-box .social {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.projects-details-content .projects-details-info .projects-info-box .social li {
  display: inline-block;
  margin: 0 5px;
}

.projects-details-content .projects-details-info .projects-info-box .social li a i {
  background-color: #002856;
  color: #ffffff;
  display: inline-block;
  width: 35px;
  height: 35px;
  text-align: center;
  border-radius: 30px;
  line-height: 35px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 18px;
}

.projects-details-content .projects-details-info .projects-info-box .social li a i:hover {
  color: #ffffff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.projects-details-content .projects-details-info .projects-info-box:last-child {
  text-align: center;
}

/*================================================
Pagination Area CSS
=================================================*/
.pagination-area {
  text-align: center;
  margin-top: 20px;
}

.pagination-area .page-numbers {
  width: 35px;
  height: 35px;
  margin: 0 3px;
  display: inline-block;
  background-color: #ffffff;
  line-height: 35px;
  color: #09101f;
  -webkit-box-shadow: 0 2px 10px 0 #d8dde6;
          box-shadow: 0 2px 10px 0 #d8dde6;
  font-size: 18px;
  font-weight: bold;
  border-radius: 50px;
}

.pagination-area .page-numbers.current, .pagination-area .page-numbers:hover, .pagination-area .page-numbers:focus {
  background: #002856;
  color: #ffffff;
  -webkit-box-shadow: 0 2px 10px 0 #d8dde6;
          box-shadow: 0 2px 10px 0 #d8dde6;
}

/*================================================
Blog Details Area CSS
=================================================*/
.blog-details-desc .article-content {
  margin-top: 30px;
}

.blog-details-desc .article-content .entry-meta ul {
  padding-left: 0;
  margin-bottom: 0;
}

.blog-details-desc .article-content .entry-meta ul li {
  list-style-type: none;
  display: inline-block;
  position: relative;
  padding-left: 20px;
  margin-right: 15px;
}

.blog-details-desc .article-content .entry-meta ul li:last-child {
  margin-right: 0;
}

.blog-details-desc .article-content .entry-meta ul li i {
  position: absolute;
  left: 0;
  color: #002856;
  top: 4px;
  font-size: 16px;
}

.blog-details-desc .article-content .entry-meta ul li a {
  font-size: 16px;
  font-weight: 500;
  color: #6e727f;
}

.blog-details-desc .article-content .entry-meta ul li a:hover {
  color: #002856;
}

.blog-details-desc .article-content h3 {
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 25px;
}

.blog-details-desc .article-content .features-list {
  padding-left: 0;
  list-style-type: none;
  margin-top: 20px;
  margin-bottom: 30px;
}

.blog-details-desc .article-content .features-list li {
  margin-bottom: 16px;
  position: relative;
  padding-left: 34px;
  color: #6e727f;
}

.blog-details-desc .article-content .features-list li i {
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  border-radius: 40px;
  background-color: #faf5f5;
  color: #002856;
  -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: #002856;
  color: #ffffff;
}

.blog-details-desc .article-content .features-list li:last-child {
  margin-bottom: 0;
}

.blog-details-desc .article-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
  border-top: 1px solid #002856;
  border-bottom: 1px solid #002856;
  padding-top: 10px;
  padding-bottom: 10px;
}

.blog-details-desc .article-footer .article-date{
  -webkit-box-flex: 0;
    -ms-flex: 0 0 35%;
       flex: 0 0 35%;
  max-width: 35%;
  color: #000000;
}

.article-footer .article-date .entry-meta{
    position: relative;
    top: 5px;
}


.article-footer .article-date .entry-meta ul {
  padding-left: 0;
  margin-bottom: 0;
}

.article-footer .article-date .entry-meta ul li {
  list-style-type: none;
  display: inline-block;
  position: relative;
  padding-left: 20px;
  margin-right: 15px;
}

.article-footer .article-date .entry-meta ul li:last-child {
  margin-right: 0;
}

.article-footer .article-date .entry-meta ul li i {
  position: absolute;
  left: 0;
  color: #002856;
  top: 4px;
  font-size: 16px;
}

.article-footer .article-date .entry-meta ul li a {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
}

.article-footer .article-date .entry-meta ul li a:hover {
  color: #002856;
}

.blog-details-desc .article-footer .article-tags {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
  max-width: 30%;
  color: #000000;
  text-align: right;
}

.blog-details-desc .article-footer .article-tags span {
  color: #09101f;
  font-size: 18px;
  margin-right: 5px;
  font-weight: 600;
}

.blog-details-desc .article-footer .article-tags a {
  display: inline-block;
  font-weight: 500;
  color:  #002856;
  background-color: #eeeef0;
  padding: 5px 10px;
  margin: 0 5px;
  border-radius: 50%;
}

.blog-details-desc .article-footer .article-tags a:hover {
  background-color: #002856;
  border: 1px solid #002856;
  color: #ffffff;
}

.blog-details-desc .article-footer .article-share {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 35%;
          flex: 0 0 35%;
  max-width: 35%;
}

.blog-details-desc .article-footer .article-share .social {
  padding-left: 0;
  list-style-type: none;
  text-align: center;
  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 {
  color: #09101f;
  font-size: 18px;
  margin-right: 5px;
  font-weight: 500;
}

.blog-details-desc .article-footer .article-share .social li a {
  display: block;
  color: #002856;
  width: 30px;
  height: 30px;
  line-height: 34px;
  border-radius: 50%;
  background-color: #eeeef0;
  text-align: center;
}

.blog-details-desc .article-footer .article-share .social li a:hover {
  color: #ffffff;
  background-color: #002856;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

blockquote, .blockquote {
  background-color: #fafafa;
  padding: 30px !important;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  border-left: 3px solid #002856;
  border-right: 3px solid #002856;
  border-radius: 5px;
}

blockquote p, .blockquote p {
  color: #09101f;
  margin-bottom: 0;
  font-size: 18px !important;
  font-weight: 500;
  font-style: italic;
}

.post-navigation {
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  padding-top: 20px;
  padding-bottom: 20px;
}

.post-navigation .navigation-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.post-navigation .navigation-links .nav-previous {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          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;
  font-size: 18px;
  position: relative;
  top: 1px;
}

.post-navigation .navigation-links .nav-previous a:hover i {
  margin-right: 0;
}

.post-navigation .navigation-links .nav-next {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          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;
  font-size: 18px;
  position: relative;
  top: 1px;
}

.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 {
  margin-top: 30px;
}

.comments-area .comments-title {
  margin-bottom: 30px;
  font-size: 25px;
  position: relative;
  padding-left: 15px;
}

.comments-area .comments-title::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  content: '';
  height: 30px;
  background-color: #002856;
}

.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 dashed #eeeeee;
  padding-left: 70px;
  color: #09101f;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.comments-area .comment-body .reply {
  margin-top: 15px;
}

.comments-area .comment-body .reply a {
  border: 1px dashed #ded9d9;
  color: #09101f;
  display: inline-block;
  padding: 5px 25px 5px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
}

.comments-area .comment-body .reply a:hover {
  color: #ffffff;
  background-color: #002856;
  border-color: #002856;
}

.comments-area .comment-author {
  font-size: 16px;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.comments-area .comment-author .avatar {
  height: 50px;
  left: -65px;
  position: absolute;
  width: 50px;
}

.comments-area .comment-author .fn {
  font-weight: 600;
}

.comments-area .comment-metadata {
  color: #6e727f;
  margin-bottom: 10px;
  font-size: 14px;
}

.comments-area .comment-metadata a {
  display: inline-block;
  color: #6e727f;
}

.comments-area .comment-metadata a:hover {
  color: #002856;
}

.comments-area .comment-respond {
  margin-top: 30px;
}

.comments-area .comment-respond .comment-reply-title {
  margin-bottom: 0;
  font-size: 25px;
  position: relative;
  padding-left: 15px;
}

.comments-area .comment-respond .comment-reply-title::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  content: '';
  height: 30px;
  background-color: #002856;
}

.comments-area .comment-respond .comment-form {
  overflow: hidden;
}

.comments-area .comment-respond .comment-notes {
  margin-top: 15px;
  margin-bottom: 20px;
}

.comments-area .comment-respond .comment-notes .required {
  color: red;
}

.comments-area .comment-respond .comment-form-comment {
  float: left;
  width: 100%;
}

.comments-area .comment-respond label {
  font-size: 16px;
  font-weight: 500;
}

.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: #f4f4f4;
  border: none;
  padding: 1px 0 0 15px;
  height: 60px;
  outline: 0;
  border-radius: 2px;
  color: #09101f;
}

.comments-area .comment-respond input[type="date"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="time"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="datetime-local"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="week"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="month"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="text"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="email"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="url"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="password"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="search"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="tel"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="number"]::-webkit-input-placeholder, .comments-area .comment-respond textarea::-webkit-input-placeholder {
  color: #f4f4f4;
}

.comments-area .comment-respond input[type="date"]:-ms-input-placeholder, .comments-area .comment-respond input[type="time"]:-ms-input-placeholder, .comments-area .comment-respond input[type="datetime-local"]:-ms-input-placeholder, .comments-area .comment-respond input[type="week"]:-ms-input-placeholder, .comments-area .comment-respond input[type="month"]:-ms-input-placeholder, .comments-area .comment-respond input[type="text"]:-ms-input-placeholder, .comments-area .comment-respond input[type="email"]:-ms-input-placeholder, .comments-area .comment-respond input[type="url"]:-ms-input-placeholder, .comments-area .comment-respond input[type="password"]:-ms-input-placeholder, .comments-area .comment-respond input[type="search"]:-ms-input-placeholder, .comments-area .comment-respond input[type="tel"]:-ms-input-placeholder, .comments-area .comment-respond input[type="number"]:-ms-input-placeholder, .comments-area .comment-respond textarea:-ms-input-placeholder {
  color: #f4f4f4;
}

.comments-area .comment-respond input[type="date"]::-ms-input-placeholder, .comments-area .comment-respond input[type="time"]::-ms-input-placeholder, .comments-area .comment-respond input[type="datetime-local"]::-ms-input-placeholder, .comments-area .comment-respond input[type="week"]::-ms-input-placeholder, .comments-area .comment-respond input[type="month"]::-ms-input-placeholder, .comments-area .comment-respond input[type="text"]::-ms-input-placeholder, .comments-area .comment-respond input[type="email"]::-ms-input-placeholder, .comments-area .comment-respond input[type="url"]::-ms-input-placeholder, .comments-area .comment-respond input[type="password"]::-ms-input-placeholder, .comments-area .comment-respond input[type="search"]::-ms-input-placeholder, .comments-area .comment-respond input[type="tel"]::-ms-input-placeholder, .comments-area .comment-respond input[type="number"]::-ms-input-placeholder, .comments-area .comment-respond textarea::-ms-input-placeholder {
  color: #f4f4f4;
}

.comments-area .comment-respond input[type="date"]::placeholder, .comments-area .comment-respond input[type="time"]::placeholder, .comments-area .comment-respond input[type="datetime-local"]::placeholder, .comments-area .comment-respond input[type="week"]::placeholder, .comments-area .comment-respond input[type="month"]::placeholder, .comments-area .comment-respond input[type="text"]::placeholder, .comments-area .comment-respond input[type="email"]::placeholder, .comments-area .comment-respond input[type="url"]::placeholder, .comments-area .comment-respond input[type="password"]::placeholder, .comments-area .comment-respond input[type="search"]::placeholder, .comments-area .comment-respond input[type="tel"]::placeholder, .comments-area .comment-respond input[type="number"]::placeholder, .comments-area .comment-respond textarea::placeholder {
  color: #f4f4f4;
}

.comments-area .comment-respond textarea {
  height: auto !important;
  padding-top: 15px;
}

.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: 7.5px;
}

.comments-area .comment-respond .comment-form-cookies-consent label {
  display: inline-block;
  margin: 0;
  color: #6e727f;
}

.comments-area .comment-respond .form-submit {
  float: left;
  width: 100%;
}

.comments-area .comment-respond .form-submit input {
  background: #002856;
  border: none;
  color: #ffffff;
  padding: 10px 30px 10px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 0;
  font-weight: 600;
  border-radius: 5px;
}

.comments-area .comment-respond .form-submit input:hover {
  background-color: #002856;
}

/*================================================
Widget Sidebar CSS
=================================================*/
.widget-area .widget {
  margin-bottom: 30px;
}

.widget-area .widget:last-child {
  margin-bottom: 0;
}

.widget-area .widget .widget-title {
  margin-bottom: 25px;
  position: relative;
  font-size: 20px;
  position: relative;
  padding-left: 15px;
}

.widget-area .widget .widget-title::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  content: '';
  height: 25px;
  background-color: #002856;
}

.widget-area .widget_search {
  background-color: #ffffff;
  -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);
  padding: 25px;
}

.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: 8px 15px;
  border: 1px solid #eeeeee;
  background-color: #eeeeee;
  width: 100%;
  display: block;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 0;
}

.widget-area .widget_search form .search-field:focus {
  border-color: #002856;
  background-color: transparent;
}

.widget-area .widget_search form button {
  border: none;
  background-color: #002856;
  color: #ffffff;
  height: 40px;
  width: 40px;
  position: absolute;
  right: 5px;
  padding: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  top: 5px;
  font-size: 20px;
  border-radius: 5px;
  cursor: pointer;
}

.widget-area .widget_search form button i {
  position: absolute;
  left: 0;
  right: 0;
  top: 52%;
  -webkit-transform: translateY(-52%);
          transform: translateY(-52%);
}

.widget-area .widget_search form button:hover, .widget-area .widget_search form button:focus {
  background-color: #002856;
  color: #ffffff;
}

.widget-area .widget_categories {
  background-color: #ffffff;
  -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);
  padding: 25px;
}

.widget-area .widget_categories ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.widget-area .widget_categories ul li {
  position: relative;
  margin-bottom: 12px;
  overflow: hidden;
  color: #09101f;
  padding-left: 20px;
  font-size: 16px;
  font-weight: 500;
}

.widget-area .widget_categories ul li:last-child {
  margin-bottom: 0;
}

.widget-area .widget_categories ul li::before {
  background: #002856;
  height: 10px;
  width: 10px;
  content: '';
  left: 0;
  top: 7px;
  position: absolute;
}

.widget-area .widget_categories ul li a {
  color: #09101f;
  display: inline-block;
}

.widget-area .widget_categories ul li a:hover {
  color: #002856;
}

.widget-area .widget_leve_posts_thumb {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  -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);
  padding: 25px;
}

.widget-area .widget_leve_posts_thumb .item {
  overflow: hidden;
  margin-bottom: 15px;
}

.widget-area .widget_leve_posts_thumb .item:last-child {
  margin-bottom: 0;
}

.widget-area .widget_leve_posts_thumb .item .thumb {
  float: left;
  height: 80px;
  overflow: hidden;
  display: block;
  position: relative;
  width: 80px;
  margin-right: 15px;
  z-index: 1;
}

.widget-area .widget_leve_posts_thumb .item .thumb .fullimage {
  width: 80px;
  height: 80px;
  display: inline-block;
  border-radius: 5px;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center;
}

.widget-area .widget_leve_posts_thumb .item .thumb .fullimage.bg1 {
  background-image: none;
}

.widget-area .widget_leve_posts_thumb .item .thumb .fullimage.bg2 {
  background-image: none;
}

.widget-area .widget_leve_posts_thumb .item .thumb .fullimage.bg3 {
  background-image: none;
}

.widget-area .widget_leve_posts_thumb .item .thumb .fullimage.bg4 {
  background-image: none;
}

.widget-area .widget_leve_posts_thumb .item .thumb .fullimage.bg5 {
  background-image: none;
}

.widget-area .widget_leve_posts_thumb .item .thumb .fullimage.bg6 {
  background-image: none;
}

.widget-area .widget_leve_posts_thumb .item .thumb .fullimage.bg7 {
  background-image: none;
}

.widget-area .widget_leve_posts_thumb .item .thumb .fullimage.bg8 {
  background-image: none;
}

.widget-area .widget_leve_posts_thumb .item .thumb .fullimage.bg9 {
  background-image: none;
}

.widget-area .widget_leve_posts_thumb .item .info {
  overflow: hidden;
  margin-top: 5px;
}

.widget-area .widget_leve_posts_thumb .item .info span {
  display: block;
  color: #002856;
  margin-top: -2px;
  margin-bottom: 5px;
  font-size: 14px;
}

.widget-area .widget_leve_posts_thumb .item .info .title {
  margin-bottom: 0;
  line-height: 1.4;
  font-size: 15px;
}

.widget-area .widget_leve_posts_thumb .item .info .title a {
  display: inline-block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.widget-area .widget_leve_posts_thumb .item .info .title a:hover {
  color: #002856;
}

.widget-area .widget_tag_cloud {
  background-color: #ffffff;
  -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);
  padding: 25px;
}

.widget-area .widget_tag_cloud .widget-title {
  margin-bottom: 18px;
}

.widget-area .tagcloud a {
  display: inline-block;
  background: #f5f5f5;
  color: #09101f;
  padding: 7px 15px;
  border: none;
  border-radius: 3px;
  font-weight: 500;
  font-size: 15px !important;
  margin-top: 8px;
  margin-right: 5px;
}

.widget-area .tagcloud a:hover, .widget-area .tagcloud a:focus {
  color: #ffffff;
  background-color: #002856;
}

.widget-area .widget_newsletter {
  background-color: #ffffff;
  -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);
  padding: 25px;
}

.widget-area .widget_newsletter .newsletter-form {
  margin-top: 0;
}

.widget-area .widget_newsletter .newsletter-form .input-newsletter {
  display: block;
  width: 100%;
  background-color: #f1f1f1;
  border: none;
  height: 55px;
  padding-left: 25px;
  border-radius: 5px;
  outline: 0;
  color: #09101f;
}

.widget-area .widget_newsletter .newsletter-form button {
  background: #002856;
  color: #ffffff;
  border: none;
  height: 55px;
  padding: 0 60px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  line-height: 55px;
  font-weight: 700;
  border-radius: 5px;
  transition: 0.5s;
  position: relative;
  left: 0;
  right: 0;
  width: 100%;
  margin-top: 10px;
}

.widget-area .widget_newsletter .newsletter-form button:hover {
  background-color: #002856;
}

.widget-area .widget_newsletter .newsletter-form #validator-newsletter {
  color: red;
  margin-top: 15px;
  font-weight: 600;
  text-align: center;
}

/*================================================
Open Account Area CSS
=================================================*/
.open-account-area {
  position: relative;
  z-index: 1;
}

.open-account-area::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 30%;
  background-image: none;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

.open-account-area .section-title h2 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #ffffff;
}

.open-account-area .section-title p {
  color: #ffffff;
}

.open-account-form {
  padding: 40px 50px;
  border-radius: 5px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 10px rgba(51, 51, 51, 0.1);
          box-shadow: 0 0 10px rgba(51, 51, 51, 0.1);
  max-width: 810px;
  margin: auto;
}

.open-account-form form .form-group {
  margin-bottom: 25px;
}

.open-account-form form .form-group label {
  display: block;
  margin-bottom: 10px;
  color: #6e727f;
  font-weight: 400;
  font-size: 16px;
}

.open-account-form form .form-group .form-control {
  height: 50px;
  padding: 0 0 0 15px;
  line-height: initial;
  color: #09101f;
  background-color: #f1f1f1 !important;
  border: 1px solid #f1f1f1;
  border-radius: 5px;
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 16px;
  font-weight: 400;
}

.open-account-form form .form-group .form-control:focus {
  background-color: transparent !important;
}

.open-account-form form .form-group .form-control:focus::-webkit-input-placeholder {
  color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.open-account-form form .form-group .form-control:focus:-ms-input-placeholder {
  color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.open-account-form form .form-group .form-control:focus::-ms-input-placeholder {
  color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.open-account-form form .form-group .form-control:focus::placeholder {
  color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.open-account-form form button {
  border: none;
  padding: 15px 30px;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}

.open-account-form form .nice-select {
  height: 50px;
  width: 100%;
  line-height: 40px;
  font-size: 16px;
  padding-left: 20px;
  border: 1px solid #f1f1f1;
  color: #6e727f;
  border-radius: 5px;
  background-color: #f1f1f1;
  padding-top: 5px;
  font-weight: 400;
  margin-bottom: 20px;
}

.open-account-form form .nice-select:focus {
  background-color: transparent;
}

.open-account-form form .nice-select .list {
  background-color: #ffffff;
  -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);
  border-radius: 0;
  margin-top: 0;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}

.open-account-form form .nice-select .list .option {
  -webkit-transition: .6s;
  transition: .6s;
  color: #09101f;
  padding-left: 20px;
  padding-right: 20px;
}

.open-account-form form .nice-select .list .option:hover {
  background-color: #002856 !important;
  color: #ffffff;
}

.open-account-form form .nice-select .list .option.selected {
  background-color: transparent;
  font-weight: 600;
}

.open-account-form form .nice-select::after {
  height: 8px;
  width: 8px;
  border-color: #b5b6bc;
  right: 20px;
}

.open-account-form form h3 {
  font-size: 18px;
  font-weight: 500;
  color: #6e727f;
}

/*================================================
Security Area CSS
=================================================*/
.security-content {
  max-width: 600px;
}

.security-content h3 {
  font-size: 36px;
  margin-bottom: 20px;
}

.security-content p {
  margin-bottom: 0;
}

.security-content .security-list {
  padding-left: 0;
  margin-top: 20px;
  margin-bottom: 0;
}

.security-content .security-list li {
  list-style-type: none;
  color: #6e727f;
  font-weight: 600;
  position: relative;
  padding-left: 28px;
  margin-bottom: 15px;
}

.security-content .security-list li:last-child {
  margin-bottom: 0;
}

.security-content .security-list li i {
  position: absolute;
  left: 0;
  top: 0;
  color: #002856;
}

.security-image {
  background-image: none;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
}

/*================================================
Advice Area CSS
=================================================*/
.advice-area {
  background-color: #fafafa;
}

.advice-content {
  max-width: 600px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.advice-content h3 {
  font-size: 36px;
  margin-bottom: 20px;
}

.advice-content .advice-inner-content {
  position: relative;
  margin-top: 30px;
  padding-left: 60px;
}

.advice-content .advice-inner-content .number {
  position: absolute;
  left: 0;
  top: 0;
}

.advice-content .advice-inner-content .number span {
  display: inline-block;
  height: 45px;
  width: 45px;
  line-height: 45px;
  background-color: #002856;
  color: #ffffff;
  font-size: 25px;
  text-align: center;
  border-radius: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.advice-content .advice-inner-content h4 {
  font-weight: 500;
  font-size: 25px;
  margin-bottom: 10px;
}

.advice-content .advice-inner-content p {
  margin-bottom: 0;
}

.advice-content .advice-inner-content:hover .number span {
  background-color: #002856;
}

.advice-image {
  background-image: none;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
}

/*================================================
Online Area CSS
=================================================*/
.online-content {
  max-width: 600px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.online-content h3 {
  font-size: 36px;
  margin-bottom: 20px;
}

.online-content .online-inner-content {
  position: relative;
  margin-top: 30px;
  padding-left: 60px;
}

.online-content .online-inner-content .number {
  position: absolute;
  left: 0;
  top: 0;
}

.online-content .online-inner-content .number span {
  display: inline-block;
  height: 45px;
  width: 45px;
  line-height: 45px;
  background-color: #002856;
  color: #ffffff;
  font-size: 25px;
  text-align: center;
  border-radius: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.online-content .online-inner-content h4 {
  font-weight: 500;
  font-size: 25px;
  margin-bottom: 10px;
}

.online-content .online-inner-content p {
  margin-bottom: 0;
}

.online-content .online-inner-content:hover .number span {
  background-color: #002856;
}

.online-image {
  background-image: none;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
}

/*================================================
Personal Loan Area CSS
=================================================*/
.personal-loan-content {

}

.personal-loan-area.personal-scholarship{
  background-color: #fafafa;
}

.personal-loan-content h3 {
  font-size: 36px;
  margin-bottom: 20px;
}

.personal-loan-content p {
  margin-bottom: 0;
}

.personal-loan-content .personal-loan-list {
  padding-left: 0;
  margin-top: 20px;
  margin-bottom: 0;
}

.personal-loan-content .personal-loan-list li {
  list-style-type: none;
  color: #6e727f;
  font-weight: 600;
  position: relative;
  padding-left: 28px;
  margin-bottom: 15px;
}

.personal-loan-content .personal-loan-list li:last-child {
  margin-bottom: 0;
}

.personal-loan-content .personal-loan-list li i {
  position: absolute;
  left: 0;
  top: 0;
  color: #002856;
}

.personal-loan-image {
  background-image: none;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
}

/*================================================
Types Loan Area CSS
=================================================*/
.types-loan-area {
  background-color: #fafafa;
}

.types-loan-area.types-scholarship{
  background-color: #ffffff;
}

.types-loan-content {
  padding-top: 20px;
  padding-bottom: 20px;
}

.types-loan-content.type-2{
  max-width: unset;
  padding-top: unset;
}

.types-loan-content h3 {
  font-size: 36px;
  margin-bottom: 20px;
}

.types-loan-content .types-loan-inner-content {
  position: relative;
  margin-top: 30px;
  padding-left: 60px;
}

.types-loan-content .types-loan-inner-content .number {
  position: absolute;
  left: 0;
  top: 0;
}

.types-loan-content .types-loan-inner-content .number span {
  display: inline-block;
  height: 45px;
  width: 45px;
  line-height: 45px;
  background-color: #002856;
  color: #ffffff;
  font-size: 25px;
  text-align: center;
  border-radius: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.types-loan-content .types-loan-inner-content h4 {
  font-weight: 500;
  font-size: 25px;
  margin-bottom: 10px;
}

.types-loan-content .types-loan-inner-content p {
  margin-bottom: 0;
}

.types-loan-content .types-loan-inner-content:hover .number span {
  background-color: #002856;
}

.types-loan-image {
  background-image: none;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
}

/*================================================
Apply Area CSS
=================================================*/
.apply-content {
  max-width: 600px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.apply-content h3 {
  font-size: 36px;
  margin-bottom: 0;
}

.apply-content .apply-inner-content {
  position: relative;
  margin-top: 30px;
  padding-left: 60px;
}

.apply-content .apply-inner-content .number {
  position: absolute;
  left: 0;
  top: 0;
}

.apply-content .apply-inner-content .number span {
  display: inline-block;
  height: 45px;
  width: 45px;
  line-height: 45px;
  background-color: #002856;
  color: #ffffff;
  font-size: 25px;
  text-align: center;
  border-radius: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.apply-content .apply-inner-content h4 {
  font-weight: 500;
  font-size: 25px;
  margin-bottom: 10px;
}

.apply-content .apply-inner-content p {
  margin-bottom: 0;
}

.apply-content .apply-inner-content:hover .number span {
  background-color: #002856;
}

.apply-content .apply-btn {
  margin-top: 30px;
}

.apply-image {
  background-image: none;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
}

/*================================================
Loan Form Area CSS
=================================================*/
.loan-form-area {
  position: relative;
  z-index: 1;
}

.loan-form-area::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 30%;
  background-image: none;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

.loan-form-area .section-title h2 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #ffffff;
}

.loan-form-area .section-title p {
  color: #ffffff;
}

.loan-form {
  padding: 40px 50px;
  border-radius: 5px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 10px rgba(51, 51, 51, 0.1);
          box-shadow: 0 0 10px rgba(51, 51, 51, 0.1);
  max-width: 810px;
  margin: auto;
}

.loan-form form .form-group {
  margin-bottom: 25px;
}

.loan-form form .form-group label {
  display: block;
  margin-bottom: 10px;
  color: #6e727f;
  font-weight: 400;
  font-size: 16px;
}

.loan-form form .form-group .form-control {
  height: 50px;
  padding: 0 0 0 15px;
  line-height: initial;
  color: #09101f;
  background-color: #f1f1f1 !important;
  border: 1px solid #f1f1f1;
  border-radius: 5px;
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 16px;
  font-weight: 400;
}

.loan-form form .form-group .form-control:focus {
  background-color: transparent !important;
}

.loan-form form .form-group .form-control:focus::-webkit-input-placeholder {
  color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.loan-form form .form-group .form-control:focus:-ms-input-placeholder {
  color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.loan-form form .form-group .form-control:focus::-ms-input-placeholder {
  color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.loan-form form .form-group .form-control:focus::placeholder {
  color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.loan-form form button {
  border: none;
  padding: 15px 30px;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}

.loan-form form .nice-select {
  height: 50px;
  width: 100%;
  line-height: 40px;
  font-size: 16px;
  padding-left: 20px;
  border: 1px solid #f1f1f1;
  color: #6e727f;
  border-radius: 5px;
  background-color: #f1f1f1;
  padding-top: 5px;
  font-weight: 400;
  margin-bottom: 20px;
}

.loan-form form .nice-select:focus {
  background-color: transparent;
}

.loan-form form .nice-select .list {
  background-color: #ffffff;
  -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);
  border-radius: 0;
  margin-top: 0;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}

.loan-form form .nice-select .list .option {
  -webkit-transition: .6s;
  transition: .6s;
  color: #09101f;
  padding-left: 20px;
  padding-right: 20px;
}

.loan-form form .nice-select .list .option:hover {
  background-color: #002856 !important;
  color: #ffffff;
}

.loan-form form .nice-select .list .option.selected {
  background-color: transparent;
  font-weight: 600;
}

.loan-form form .nice-select::after {
  height: 8px;
  width: 8px;
  border-color: #b5b6bc;
  right: 20px;
}

/*================================================
Location Maps Area CSS
=================================================*/
.location-maps-image {
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 1;
  text-align: center;
}

.location-maps-image .location {
  position: absolute;
  left: 20%;
  top: 40%;
  width: auto;
  height: auto;
}

.location-maps-image .location a::before {
  content: "";
  position: absolute;
  left: 16px;
  bottom: -4px;
  border: 5px solid #002856;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  -webkit-animation-name: ripple;
          animation-name: ripple;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
          animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  background: #ffffff;
}

.location-maps-image .location a .location-info {
  position: absolute;
  left: -50px;
  bottom: 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 160px;
  background: #ffffff;
  text-align: center;
  padding: 5px 15px;
  border-radius: 3px;
  z-index: 1;
  -webkit-box-shadow: 0 0 20px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 20px rgba(0, 0, 0, 0.05);
}

.location-maps-image .location a .location-info::before {
  content: "";
  position: absolute;
  left: 60px;
  bottom: -10px;
  width: 25px;
  height: 25px;
  background: #ffffff;
  z-index: -1;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.06);
          box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.06);
}

.location-maps-image .location a .location-info h5 {
  font-size: 16px;
  margin: 5px 0 5px 0;
  color: #002856;
}

.location-maps-image .location.location2 {
  right: 50%;
  left: auto;
  top: 20%;
}

.location-maps-image .location.location3 {
  right: 75%;
  left: auto;
  top: 80%;
}

.location-maps-image .location.location4 {
  right: 50%;
  left: auto;
  top: 60%;
}

.location-maps-image .location.location5 {
  right: 53%;
  left: auto;
  top: 93%;
}

.location-maps-image .location.location6 {
  right: 25%;
  left: auto;
  top: 78%;
}

.location-maps-image .location.location7 {
  right: 25%;
  left: auto;
  top: 35%;
}

.location-maps-image .location:hover a .location-info {
  bottom: 40px;
}

/*================================================
Table Area CSS
=================================================*/
.table-area .container {
  max-width: 1170px;
}

.table-area .section-title {
  margin-bottom: 25px;
}

.table-area .section-title p {
  font-size: 18px;
  font-weight: 600;
}

.table-area .section-title p b {
  color: #002856;
  font-weight: 600;
}

.table {
  margin-bottom: 0;
}

.table thead th {
  border-bottom: none;
  background-color: #f9fafb;
  color: #09101f;
  font-weight: 600;
  font-size: 16px;
}

.table-bordered tbody tr th {
  font-size: 18px;
  font-weight: 600;
}

.table-bordered tbody tr td {
  border: 1px solid #f0f0f0;
  font-weight: 400;
  color: #6e727f;
  overflow-x: auto;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: unset;
}

.table-responsive {
  overflow-x: unset;
}

/*================================================
Footer Area CSS
=================================================*/
.footer-area {
  background-color: #002856;
}

.footer-area.bg-color .single-footer-widget .footer-logo .social li a i:hover {
  background-color: #4865ff;
  border: 1px solid #4865ff;
}

.footer-area.bg-color .single-footer-widget .footer-contact-info li i {
  color: #4865ff;
}

.footer-area.bg-color .single-footer-widget .footer-contact-info li a:hover {
  color: #4865ff;
}

.footer-area.bg-color .single-footer-widget .footer-contact-info li a::before {
  background-color: #4865ff;
}

.footer-area.bg-color .single-footer-widget .quick-links li a:hover {
  color: #4865ff;
}

.footer-area.bg-color .single-footer-widget .quick-links li a::before {
  background-color: #4865ff;
}

.footer-area.bg-ffffff {
  background-color: #ffffff;
}

.footer-area.bg-ffffff .single-footer-widget .footer-logo h2 a {
  color: #6e727f;
}

.footer-area.bg-ffffff .single-footer-widget .footer-logo p {
  color: #6e727f;
}

.footer-area.bg-ffffff .single-footer-widget .footer-logo .social li a i {
  color: #6e727f;
}

.footer-area.bg-ffffff .single-footer-widget .footer-logo .social li a i:hover {
  background-color: #4ed198;
  border: 1px solid #4ed198;
  color: #ffffff;
}

.footer-area.bg-ffffff .single-footer-widget h3 {
  color: #09101f;
}

.footer-area.bg-ffffff .single-footer-widget .footer-contact-info li {
  color: #6e727f;
}

.footer-area.bg-ffffff .single-footer-widget .footer-contact-info li i {
  color: #4ed198;
}

.footer-area.bg-ffffff .single-footer-widget .footer-contact-info li span {
  color: #09101f;
}

.footer-area.bg-ffffff .single-footer-widget .footer-contact-info li a {
  color: #6e727f;
}

.footer-area.bg-ffffff .single-footer-widget .footer-contact-info li a:hover {
  color: #4ed198;
}

.footer-area.bg-ffffff .single-footer-widget .footer-contact-info li a::before {
  background-color: #4ed198;
}

.footer-area.bg-ffffff .single-footer-widget .quick-links li a {
  color: #6e727f;
}

.footer-area.bg-ffffff .single-footer-widget .quick-links li a:hover {
  color: #4ed198;
}

.footer-area.bg-ffffff .single-footer-widget .quick-links li a::before {
  background-color: #4ed198;
}

.single-footer-widget {
  margin-bottom: 30px;
}

.single-footer-widget .footer-logo h2 {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 20px;
}

.single-footer-widget .footer-logo h2 a {
  color: #ffffff;
}

.single-footer-widget .footer-logo p {
  color: #ffffff;
  margin-bottom: 0;
}

.single-footer-widget .footer-logo .social {
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 20px;
}

.single-footer-widget .footer-logo .social li {
  display: inline-block;
  list-style-type: none;
  margin-right: 10px;
}

.single-footer-widget .footer-logo .social li:last-child {
  margin-right: 0;
}

.single-footer-widget .footer-logo .social li a i {
  display: inline-block;
  height: 50px;
  width: 50px;
  line-height: 50px;
  border: 1px solid #fff;
  text-align: center;
  font-size: 25px;
  color: #ffffff;
  border-radius: 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-footer-widget .footer-logo .social li a i:hover {
  background-color: #002856;
  border: 1px solid #002856;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.single-footer-widget h3 {
  font-size: 25px;
  margin-bottom: 30px;
  color: #ffffff;
}

.single-footer-widget .footer-contact-info {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.single-footer-widget .footer-contact-info li {
  margin-bottom: 15px;
  color: #ffffff;
  position: relative;
  padding-left: 35px;
}

.single-footer-widget .footer-contact-info li i {
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 25px;
  color: #fff;
}

.single-footer-widget .footer-contact-info li span {
  display: block;
  margin-bottom: 5px;
  color: #ffffff;
  font-size: 16px;
}

.single-footer-widget .footer-contact-info li a {
  display: inline-block;
  color: #ffffff;
  font-weight: 500;
  position: relative;
  font-size: 16px;
}

.single-footer-widget .footer-contact-info li .footer-link-info{
    top: 4px;
}

.single-footer-widget .footer-contact-info li a:hover {
  color: #ffffff;
  font-weight: 600;
}

.single-footer-widget .footer-contact-info li a:hover::before {
  width: 100%;
}

.single-footer-widget .footer-contact-info li a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #002856;
}

.single-footer-widget .footer-contact-info li:last-child {
  margin-bottom: 0;
}

.single-footer-widget .quick-links {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.single-footer-widget .quick-links li {
  margin-bottom: 5px;
  font-size: 16px;
}

.single-footer-widget .quick-links li a {
  display: inline-block;
  color: #ffffff;
  font-weight: 500;
  position: relative;
}

.single-footer-widget .quick-links li a:hover {
  color: #ffffff;
  font-weight: 600;
}

.single-footer-widget .quick-links li a:hover::before {
  width: 100%;
}

.single-footer-widget .quick-links li a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #002856;
}

.single-footer-widget .quick-links li:last-child {
  margin-bottom: 0;
}

.footer-info-p p{
    margin:0px;
    color: #fff;
}

/*================================================
Copy Right Area CSS
=================================================*/
.copyright-area {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #002856;
  border-top: 1px solid #fff;
}

.copyright-area .copyright-area-content {
  text-align: center;
}

.copyright-area .copyright-area-content p {
  color: #ffffff;
}

.copyright-area .copyright-area-content p a {
  display: inline-block;
  font-weight: 600;
  color: #002856;
}

.copyright-area .copyright-area-content p a:hover {
  color: #ffffff;
}

.copyright-area.bg-color .copyright-area-content p a {
  color: #4865ff;
}

.copyright-area.bg-color .copyright-area-content p a:hover {
  color: #ffffff;
}

.copyright-area.bg-ffffff {
  background-color: #ffffff;
  border-top: 1px solid #ecedee;
}

.copyright-area.bg-ffffff p {
  color: #6e727f;
}

.copyright-area.bg-ffffff p a {
  color: #4ed198;
}

.copyright-area.bg-ffffff p a:hover {
  color: #6e727f;
}

/*================================================
Go Top CSS
=================================================*/
.go-top {
  position: fixed;
  cursor: pointer;
  bottom: -100px;
  right: 20px;
  color: #ffffff;
  background-color: #000;
  z-index: 4;
  width: 45px;
  text-align: center;
  height: 45px;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  font-size: 22px;
  -webkit-transition: .9s;
  transition: .9s;
  overflow: hidden;
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}

.go-top i {
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
  font-size: 30px;
  margin-left: auto;
  margin-right: auto;
}

.go-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}

.go-top:hover {
  background-color: #002856;
  color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}




.timeline {
    padding: 50px 0;
    position: relative;
}
.timeline-nodes {
        padding-bottom: 25px;
        position: relative;
    }
.timeline-nodes:nth-child(even) {
    flex-direction: row-reverse;
}
.timeline h3, .timeline p {
    padding: 5px 15px;
}
.timeline h3{
    font-weight: lighter;
    background: #002856;
    font-size: 24px;
}
.timeline p{
  color: #000;
}

.timeline time {
    color: #002856;
}

.timeline time{
  font-size: 24px;
  font-weight: 600;
}
.timeline::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    border-left: 2px solid #002856;
    height: 100%;
    z-index: 1;
    transform: translateX(-50%);
}
.timeline-content {
    border: 1px solid #002856;
    position: relative;
    border-radius: 0 0 10px 10px;
    box-shadow: 0px 3px 25px 0px rgba(10, 55, 90, 0.2)
}
.timeline-nodes:nth-child(odd) h3,
.timeline-nodes:nth-child(odd) p {
    text-align: right;
}
.timeline-nodes:nth-child(odd) .timeline-date {
    text-align: left;
}

.timeline-nodes:nth-child(even) .timeline-date {
    text-align: right;
}
.timeline-nodes:nth-child(odd) .timeline-content::after {
    content: "";
    position: absolute;
    top: 5%;
    left: 100%;
    width: 0;
    border-left: 10px solid #002856;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}
.timeline-nodes:nth-child(even) .timeline-content::after {
    content: "";
    position: absolute;
    top: 5%;
    right: 100%;
    width: 0;
    border-right: 10px solid #002856;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}
.timeline-image {
    position: relative;
    z-index: 100;
}
.timeline-image::before {
    content: "";
    width: 80px;
    height: 80px;
    border: 2px solid #002856;
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: #fff;
    z-index: 1;


}
.timeline-image img {
    position: relative;
    z-index: 100;
}
/*small device style*/

@media (max-width: 767px) {
    .timeline-nodes:nth-child(odd) h3,
    .timeline-nodes:nth-child(odd) p {
    text-align: left
}
.timeline-nodes:nth-child(even) {
    flex-direction: row;
}
    .timeline::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 4%;
    width: 0;
    border-left: 2px solid #002856;
    height: 100%;
    z-index: 1;
    transform: translateX(-50%);
}
.timeline h3 {
    font-size: 1.7rem;
}
.timeline p {
    font-size: 14px;
}
.timeline-image {
    position: absolute;
    left: 0%;
    top: 60px;
    /*transform: translateX(-50%;);*/
}
.timeline-nodes:nth-child(odd) .timeline-content::after {
    content: "";
    position: absolute;
    top: 5%;
    left: auto;
    right: 100%;
    width: 0;
    border-left: 0;
    border-right: 10px solid #002856;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}
.timeline-nodes:nth-child(even) .timeline-content::after {
    content: "";
    position: absolute;
    top: 5%;
    right: 100%;
    width: 0;
    border-right: 10px solid #002856;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}
.timeline-nodes:nth-child(even) .timeline-date {
    text-align: left;
}
.timeline-image::before {
    width: 65px;
    height: 65px;
}
}

/*extra small device style */
@media (max-width: 575px) {
    .timeline::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 3%;
}
.timeline-image {
    position: absolute;
    left: -5%;
    }
.timeline-image::before {
    width: 60px;
    height: 60px;
}
}


/*================================================
Gallery Area
=================================================*/
.gallery-area .container-fluid {
  padding: 0;
  overflow: hidden;
  max-width: 1920px;
  width: 100%;
}

.gallery-area .gallery {
  position: relative;
  margin: 10px;
}

.gallery-area .gallery img{
  width: 100%;
}

.gallery-area .gallery .caption {
  position: absolute;
  background-color: rgba(0, 97, 127, 0.9);
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: .6s;
  transition: .6s;
}

.gallery-area .gallery .caption i {
  font-size: 35px;
  color: #fff;
  margin-bottom: 20px;
  display: inline-block;
}

.gallery-area .gallery .caption h3 {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
}

.gallery-area .gallery .caption p {
  font-size: 14px;
  font-style: italic;
  color: #fff;
}

.gallery-area .gallery:hover .caption {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.section-title-one {
  text-align: center;
  max-width: 510px;
  margin: 0 auto 45px;
}


.section-title-one h2 {
  font-size: 36px;
  margin-bottom: 20px;
}




.top-header-area .cart-box{
  position:relative;
  color:#0060ff;
  font-size:16px;
  background:none;
  display:inline-block;
}

.top-header-area .cart-box .cart-box-btn{
  background:none;
  border: none;
  color:#fff;
  cursor: pointer;
  font-size: 18px;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
}
.top-header-area .cart-box .cart-box-btn i{
  color: #fff;
  top: 8px;
}

.top-header-area .cart-box .cart-box-btn:after{
  display:none;
}

.top-header-area .cart-box .cart-box-btn .total-cart{
  position:absolute;
  right: -8px;
  top: -8px;
  width:18px;
  height:18px;
  color:#ffffff;
  font-weight:700;
  font-size:10px;
  border-radius:50%;
  text-align:center;
  line-height:18px;
  background-color:#222222;
}

.top-header-area .cart-box .cart-box-btn:hover{

}



.top-header-area .cart-product{
  position:relative;
  min-height:67px;
  border-bottom:1px solid #e4e4e4;
}

.top-header-area .cart-product .inner{
  position:relative;
  min-height:70px;
}
.top-header-area .cart-product .inner span{
  background-color: #dcdcdc;
  padding: 8px;
  border-radius: 3px;
}
.top-header-area .cart-product .inner i{
  background-color: #dcdcdc;
  padding: 9px;
  border-radius: 3px;
  text-align: center;
}

.top-header-area .cart-product .inner .cross-icon{
  position:absolute;
  right:0px;
  top:-2px;
  z-index:1;
  color:#263120;
  font-size:16px;
  cursor:pointer;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.top-header-area .cart-product .inner .cross-icon:hover{
  color:#0060ff;
}

.top-header-area .cart-product .inner .image{
  position:absolute;
  width:70px;
  height:70px;
  left:0px;
  top:0px;
}

.top-header-area .cart-product .inner h3{
  position:relative;
  padding: 5px 0px;
  font-weight:600;
  font-size:11px;
  margin:0px;
  letter-spacing: 1px;
}

.top-header-area .cart-product .inner h3 a{
  color:#222222;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
}

.top-header-area .cart-product .inner h3 a:hover{
  color:#0060ff;
}

.top-header-area .cart-product .inner .quantity-text{
  position:relative;
  font-weight:300;
  color:#666666;
  font-size: 13px;
  margin-bottom: 0px;
}

.top-header-area .cart-product .inner .price{
  position:relative;
  font-weight:700;
  font-size:16px;
  margin:0px;
  color:#222222;
}



.top-header-area .cart-box .cart-panel{
  left: auto !important;
  right: 0px !important;
  border-radius:20px;
  padding:20px 20px;
  min-width:300px;
  margin-top:38px;
  z-index: 9999;
  box-shadow: 0px 0px 25px rgba(0,0,0,0.15);
  border:1px solid #0060ff;
  -webkit-transform: translate3d(0px, 0px, 0px) !important;
  transform: translate3d(0px, 0px, 0px) !important;
}

.top-header-area .cart-box .cart-panel .cart-total{
  color:#000000;
  font-size:15px;
  font-weight:400;
  text-align:center;
}

.top-header-area .cart-box .cart-panel .cart-total span{
  font-weight:800;
  font-size:18px;
}

.top-header-area .cart-box .cart-panel .btns-boxed{
  position:relative;
  text-align:center;
  margin-top:20px;
}

.top-header-area .cart-box .cart-panel .btns-boxed li{
  position:relative;
  margin:0px 5px;
  display:inline-block;
}

.top-header-area .cart-box .cart-panel .btns-boxed li a{
  position:relative;
  color:#ffffff;
  font-weight:500;
  font-size:12px;
  padding:10px 20px 8px;
  border-radius: 2px;
  display:inline-block;
  background-color:#0060ff;
  border:1px solid #0060ff;
  /*text-transform:uppercase;*/
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
}

.top-header-area .cart-box .cart-panel .btns-boxed li a:hover{
  color:#0060ff;
  background:none;
}

.top-header-area .cart-box .icon a{
  color:#999999;
}

.gerb{
  height: 30px;
  margin: 9px;
}

.bayroq{
  height: 28px;
  margin: 10px 2px;
}

.mobile i{
  /*font-size: 18px !important;*/
}

.element-355-plugin{
  color: #fff !important;
}

.gerb-flag{
  margin-right: 0px !important;
  top: 5px !important;
}

/*# sourceMappingURL=style.css.map */


/***
====================================================================
  Search Popup
====================================================================

***/


.search-popup{
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 99999;
  margin-top: -540px;
  transform: translateY(-100%);
  background-color: rgba(0,0,0,0.90);
    -webkit-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000); /* easeInOutQuint */
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000); /* easeInOutQuint */
}

.sidenav-bar-visible .search-popup{
  width: 80%;
}

.search-popup:before{
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 560px;
  background-image: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-top: 0px;
  content: "";
}

.search-active .search-popup{
  transform: translateY(0%);
  margin-top: 0;
}

.search-popup .close-search{
  position: absolute;
  left: 0;
  right: 0;
  top: 75%;
  margin: 0 auto;
  margin-top: -200px;
  border-radius: 50%;
  text-align: center;
  background-color: #002856;
  width: 70px;
  cursor:pointer;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  border-bottom: 3px solid #ffffff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  opacity: 0;
  visibility: hidden;
}

.search-popup .close-search span{
  position: relative;
  display: block;

  font-size: 30px;
  line-height: 70px;
  color: #ffffff;
}

.search-active .search-popup .close-search{
  visibility: visible;
  opacity: 1;
  top: 50%;
  -webkit-transition-delay: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  transition-delay: 1500ms;
}

.search-popup form{
  position: absolute;
  max-width: 700px;
  top: 50%;
  left: 15px;
  right: 15px;
  margin:-35px auto 0;
  transform: scaleX(0);
  transform-origin: center;
  background-color: #111111;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.search-active .search-popup form{
  transform: scaleX(1);
  -webkit-transition-delay: 1200ms;
  -moz-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.search-popup .form-group{
  position:relative;
  margin:0px;
  overflow: hidden;
}

.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"]{
  position:relative;
  display:block;
  font-size:18px;
  line-height: 50px;
  color:#000000;
  height:70px;
  width:100%;
  padding: 10px 30px;
  background-color: #ffffff;
  -webkit-transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  transition:all 500ms ease;
  font-weight:500;
}

.search-popup .form-group input[type="submit"],
.search-popup .form-group button{
  position:absolute;
  right:30px;
  top:0px;
  height:70px;
  line-height: 80px;
  border: none;
  background: transparent;
  text-align:center;
  font-size:24px;
  color:#000000;
  padding: 0;
  cursor:pointer;
  -webkit-transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  transition:all 500ms ease;
}

.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover{
  color: #000000;
}

.search-popup input::placeholder,
.search-popup textarea::placeholder{
  color:#000000;
}

.search-popup .close-search.style-two{
  position: absolute;
  right: 25px;
  left: auto;
  color:#ffffff;
  width:auto;
  height:auto;
  top:25px;
  margin:0px;
  border:none;
  background:none !important;
  box-shadow:none !important;
  -webkit-transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  transition:all 500ms ease;
}

.search-popup .close-search.style-two span{
  font-size:20px;
  color:#ffffff;
}

/* Search Box Outer */

.top-header-area .search-box-outer{
  position:relative;
}

.top-header-area .search-box-btn{
  position:relative;
  top: 6px;
  display:block;
  font-size:16px;
  color:#fff;
  line-height:20px !important;
  cursor:pointer;
  background:none;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.top-header-area .search-box-btn:after{
  display:none;
}

.top-header-area .search-box-outer .dropdown-menu{
  top:49px !important;
  right:0px;
  padding:0px;
  width:280px;
  left: auto !important;
  border-radius:0px;
  border-top:3px solid #0060ff;
  -webkit-transform: translate3d(0px, 0px, 0px) !important;
  transform: translate3d(0px, 0px, 0px) !important;
}

.top-header-area .btn-box{
  position:relative;
  float:left;
  margin-left:30px;
}

.mobile .mobile-icon{
  padding: 6px 3px 3px 3px !important;
}




/***

Flag Area

***/


.flag-area {
  display: inline-block;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  top: 2px;
}

.flag-area .flag-item-top {
  position: relative;
}
.flag-area .flag-item-top .flag-bar img{
  margin-left:5px;
  border-radius: 20%;
  width: 30px;
  height: 24px;
}
.flag-area .flag-item-top .flag-bar span {
  position: relative;
  top: 1px;
  color: #fff;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  font-size: 15px;
  font-weight: 500;
  margin-left: 5px;
}

.flag-area .flag-item-top .flag-bar i {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  position: relative;
  top: 4px;
}

.flag-area .flag-item-top .flag-item-bottom {
  list-style: none;
  position: absolute;
  top: 50px;
  left: -30px;
  padding: 20px !important;
  -webkit-box-shadow: 0 0 20px 0 #dadada;
          box-shadow: 0 0 20px 0 #dadada;
  background-color: #ffffff;
  width: 170px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
  margin: 0;
  text-align: left;
}

.flag-area .flag-item-top .flag-item-bottom::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 0;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #ffffff;
  border-left: 8px solid transparent;
  top: -8px;
  left: 55px;
}

.flag-area .flag-item-top .flag-item-bottom .flag-item {
  margin-bottom: 15px;
}

.flag-area .flag-item-top .flag-item-bottom .flag-item:last-child {
  margin-bottom: 0;
}

.flag-area .flag-item-top .flag-item-bottom .flag-item .flag-link {
  color: #201f25;
  display: block;
  font-size: 14px;
}

.flag-area .flag-item-top .flag-item-bottom .flag-item .flag-link img {
  width: 30px;
  height: 24px;
  margin-right: 8px;
  border-radius: 20%;
  position: relative;
  top: -2px;
}

.flag-area .flag-item-top .flag-item-bottom .flag-item .flag-link:hover {
  color: #20829D;
}

.flag-area .flag-item-top:hover .flag-item-bottom {
  visibility: visible;
  opacity: 1;
  top: 35px;
  z-index: 9999;
}

.read-more{
  left: unset !important;
  position: unset !important;
}


/*** Article Footer **/


.article-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
  border-top: 1px solid #002856;
  border-bottom: 1px solid #002856;
  padding-top: 10px;
  padding-bottom: 10px;
}

.article-footer .article-tags {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
  color: #6e727f;
}

.article-footer .article-tags span {
  color: #09101f;
  font-size: 18px;
  margin-right: 5px;
  font-weight: 600;
}

.article-footer .article-tags a {
  display: inline-block;
  font-weight: 500;
  color: #6e727f;
  border: 1px solid #f3f3f3;
  padding: 5px 10px;
  margin: 0 5px;
}

.article-footer .article-tags a:hover {
  background-color: #002856;
  border: 1px solid #002856;
  color: #ffffff;
}

.article-footer .article-date{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.article-footer .article-share {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}


.article-footer .article-share .social {
  padding-left: 0;
  list-style-type: none;
  text-align: right;
  margin-bottom: 0;

}

.article-footer .article-share .social li {
  display: inline-block;
}

.article-footer .article-share .social li span {
  color: #09101f;
  font-size: 18px;
  margin-right: 5px;
  font-weight: 500;
}

.article-footer .article-share .social li a {
  display: block;
  color: #002856;
  width: 30px;
  height: 30px;
  line-height: 34px;
  border-radius: 50%;
  background-color: #eeeef0;
  text-align: center;
}

.article-footer .article-share .social li a:hover {
  color: #ffffff;
  background-color: #002856;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}





select.form-control{
  height: 60px !important;
}

.filter{
  height: 38px !important;
}

select.form-control.filter{
  height: 45px !important;
}

.footer-last-rss{
  border-top: 1px solid #fff;
  padding-top: 10px;
}

.footer-last-rss div.col-lg-2{
  padding-right: 0px;
  text-align: right;
}

.footer-last-rss .single-footer-widget{
  position: relative;
  top: -15px;
}

.single-competition{
  padding: 15px;
  height: 216px;
  border: 1px solid #002856;
  box-shadow: 0px 0px 20px rgba(0,0,0,0.10)
}

.single-competition .post-content{
  margin-top: unset;
}

.single-competition .post-content h5{
  height: 115px;
    font-size: 16px;
}
.single-product-item {
  margin-bottom: 30px;
}

.single-product-item .post-image {
  overflow: hidden;
}

.single-product-item .post-image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-product-item .post-content {
  margin-top: 25px;
}

.single-product-item .post-content h3 {
  margin-bottom: 0;
  font-size: 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-product-item .post-content h5{
  height: 72px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-product-item .post-content h3 a {
  color: #ffffff;
}

.single-product-item .post-content .post-meta {
  padding-left: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.single-product-item .post-content .post-meta li {
  list-style-type: none;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  padding-left: 22px;
  margin-right: 18px;
}

.single-product-item .post-content .post-meta li:last-child {
  margin-right: 0;
  align-content: center;
}

.single-product-item .post-content .post-meta li i {
  position: absolute;
  left: 0;
  color: #002856;
  top: 4px;
  font-size: 16px;
}

.single-product-item .post-content p {
  margin-bottom: 18px;
}

.single-product-item .post-content .product-btn {
  font-weight: 600;
  font-size: 18px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color:#F9F5F6;
  display: inline-block;
  background-color: #003DA0;
  padding: 12px 18px;
  border-radius: 3px;
  text-decoration: none;
  border: 1px solid transparent;
}

.single-product-item .post-content .product-btn i {
  font-size: 16px;
}

.single-product-item:hover .post-image img {
  -webkit-transform: rotate(2deg) scale(1.2);
          transform: rotate(2deg) scale(1.2);
}

.single-product-item:hover .post-content h3 a {
  color: #ffffff;
}

.single-product-item:hover .post-content .product-btn {
  color: #333333;
  letter-spacing: 1px;
  background-color: #ffffff;
  border: 1px solid #ffbb05;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;

}
.single-productz{
  padding: 15px;
  height: 500px;
  border: 1px solid #013480;
  box-shadow: 0px 0px 20px rgba(0,0,0,0.10);
  background: #03223E;
  color:#ffffff;
  
}

.single-productz .post-content{
  margin-top: unset;
}
.single-productz .post-content h3{
  
  font-size: 24px;
	font-weight: 600;
	color: #ffffff;
	text-align: center;
}
.single-productz .post-content h5{
  height: 115px;
    font-size: 16px;
}
.services-contact-info h3{

}

.services-contact-info .sidebar-contact-div{
  position: relative;
  top: 8px;
}

.send-rezume-contact::before{
  background-color: #ffffff !important;
}

.send-rezume-contact .section-title h2{
  color: #000000 !important;
}

.send-rezume-contact .section-title p{
  color: #000000 !important;
}


.video-gallery{
  position: relative;
}


.video-gallery .caption {
  position: absolute;
  background-color: rgba(0, 97, 127, 0.7);
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: .6s;
  transition: .6s;
}

.video-gallery .caption i {
  font-size: 70px;
  color: #fff;
  margin-bottom: 20px;
  display: inline-block;
}

.video-gallery .caption h3 {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
}

.video-gallery .caption p {
  font-size: 14px;
  font-style: italic;
  color: #fff;
}

.video-gallery:hover .caption {
  -webkit-transform: scale(1);
          transform: scale(1);
}


.blog-details-desc h3{
  padding-bottom: 15px;
}


.search-item{
    padding: 25px 40px 20px 20px;
    color: #fff;
    position: relative;
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    background-color: #002856;
}

.search-item a{
  color: #fff;
  float: right;
    font-size: 18px;
    font-weight: 600;
}

.protect-content-home h3{
  color: #002856;
}


.custom-file .custom-file-label{
  height: 60px;
  padding-top: 17px;
  background-color: #f1f1f1;
  border: 1px solid #f1f1f1;
}

.custom-file .custom-file-label:after{
  content: unset !important;
  height: 60px;
  padding-top: 17px;
  background-color: #f1f1f1;
  border-left: 1px solid #f1f1f1;
}


.why-gtl-title{
  max-width: 900px;
  margin-bottom: 70px;
}

.job-submit{
  margin-top: 0px !important;
  height: 60px;
  cursor: pointer;
}

.sidebar-item{
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: 600;
}


.sidebar-menu .sidebar-drop {
  display: none;
}

.sidebar-item .sidebar-icon{
  cursor: pointer;
  font-weight: 600;
}

.sidebar-item.active i::before{
  content: "\eace";
  color: #002856;
}



/*====| - Our_History |====*/
.onepage.is-sticky {
  position: fixed;
  top: 130px;
  left: 18px;
  width: 100%;
  z-index: 999;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
          animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.onepage.is-sticky .our-history{
  box-shadow: unset;
}

.sticky-top{
    position: sticky;
    position: -webkit-sticky;
    top: 150px;

}

.our-history {
  margin:0 auto;
  list-style:none;
  box-shadow:7px 7px 15px 0 rgba(0,40,86,0.3);
}
.our-history li {
    display: inline-block;
    float: left;
    margin-left: -1px;
    background-color: #ffffff;
}
.our-history li a{
  padding: 10px 30px;
  display: inline-block;
  font-size: 18px;
  border: 1px solid rgba(0,40,86,0.3);
  transition:all 0.5s;
  -moz-transition:all 0.5s;
  -webkit-transition:all 0.5s;
  -o-transition:all 0.5s;
  -ms-transition:all 0.5s;
}
.our-history li a.active{
  background-color:#002856;
  color: #ffffff;
}



/***

====================================================================
  Banner Section
====================================================================

***/


/*.main-slider-item{
  position:relative;
  overflow:hidden;
  height: 570px;
}*/

.main-slider-item .slide::before{
  position:absolute;
  content:'';
  left:0px;
  top:0px;
  right:0px;
  bottom:0px;
  z-index:2;
  background-color:rgba(0,0,0,0.70);
}

.main-slider-item .slide{
  position:relative;
  overflow:hidden;
  padding-top:100px;
  padding-bottom:150px;
  height: 563px;
}

.main-slider-item .patern-layer-one{
  position: absolute;
    left: 0px;
    top: 0px;
    width: 493px;
    height: 492px;
  z-index:2;
  opacity:0;
  transform: translateX(-500px);
    background-position: center bottom;
    background-repeat: no-repeat;
  background-size:cover;

  transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
}

.main-slider-item .active .patern-layer-one{
  opacity:1;
  transform: translateX(0px);
}

.main-slider-item .patern-layer-two{
  position: absolute;
    right: 0px;
    bottom: 0px;
    width: 611px;
    height: 633px;
  z-index:2;
    background-position: right top;
    background-repeat: no-repeat;

  transform: translateX(500px);
  transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
}

.main-slider-item .active .patern-layer-two{
  transform: translateX(00px);
  -webkit-transition-delay: 300ms;
  -moz-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  transition-delay: 300ms;
}

.main-slider-item .content-column{
  position:relative;
  z-index:10;
}

.main-slider-item .content-column .inner-column{
  position:relative;
  margin-top: 70px;
}

.main-slider-item .content-column .title{
  position:relative;
  color:#ffffff;
  font-size:25px;
  line-height:1.8em;
  margin-bottom:16px;
  font-weight:700;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 100ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.main-slider-item .active .content-column .title{
  opacity: 1;
  transform: scaleY(1);
  -webkit-transition-delay: 300ms;
  -moz-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  transition-delay: 300ms;
}

.main-slider-item .content-column h1{
  position:relative;
  color:#ffffff;
  font-weight:700;
  line-height:1.1em;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 100ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.main-slider-item .active .content-column h1{
  opacity: 1;
  transform: scaleY(1);
  -webkit-transition-delay: 600ms;
  -moz-transition-delay: 600ms;
  -ms-transition-delay: 600ms;
  -o-transition-delay: 600ms;
  transition-delay: 600ms;
}

.main-slider-item .content-column .text{
  position:relative;
  color:#ffffff;
  font-size:17px;
  line-height:1.9em;
  margin-top:30px;
  margin-bottom:30px;
  font-weight:400;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 100ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.main-slider-item .active .content-column .text{
  opacity: 1;
  transform: scaleY(1);
  -webkit-transition-delay: 900ms;
  -moz-transition-delay: 900ms;
  -ms-transition-delay: 900ms;
  -o-transition-delay: 900ms;
  transition-delay: 900ms;
}

.main-slider-item .content-column .btns-box{
  margin-top:35px;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 100ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.main-slider-item .active .content-column .btns-box{
  opacity: 1;
  transform: scaleY(1);
  -webkit-transition-delay: 1200ms;
  -moz-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.main-slider-item .content-column .theme-btn{
  margin-right:15px;
}

.main-slider-item .owl-dots{
  position:absolute;
  left:0px;
  right:0px;
  bottom:40px;
  text-align:center;
}

.main-slider-item .owl-dots .owl-dot{
  position:relative;
  width:30px;
  height:6px;
  margin-bottom:10px;
  border-radius:0px;
  margin:0px 5px;
  display:inline-block;
  background-color:#ffffff;
  transition:all 0.3s ease;
  -moz-transition:all 0.3s ease;
  -webkit-transition:all 0.3s ease;
  -ms-transition:all 0.3s ease;
  -o-transition:all 0.3s ease;
}

.main-slider-item .owl-dots .owl-dot.active,
.main-slider-item .owl-dots .owl-dot:hover{
  background-color:#141d38;
}

.main-slider-item .owl-nav{
  position:absolute;
  left:0px;
  top:50%;
  z-index:99999;
  width:100%;
  opacity:0;
  margin-top:-10px;
  transition:all 0.3s ease;
  -moz-transition:all 0.3s ease;
  -webkit-transition:all 0.3s ease;
  -ms-transition:all 0.3s ease;
  -o-transition:all 0.3s ease;
}

.main-slider-item:hover .owl-nav{
  opacity:1;
}

.main-slider-item .owl-nav .owl-prev{
  position:absolute;
  left:20px;
  width:60px;
  height:60px;
  color:#ffffff;
  line-height:56px;
  font-size:24px;
  text-align:center;
  border-radius:50px;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  border:2px solid rgba(255,255,255,0.60);
}

.main-slider-item .owl-nav .owl-next{
  position:absolute;
  right:20px;
  color:#ffffff;
  font-size:24px;
  width:60px;
  height:60px;
  color:#ffffff;
  line-height:56px;
  border-radius:50px;
  text-align:center;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  border:2px solid rgba(255,255,255,0.60);
}

.main-slider-item .owl-nav .owl-prev:hover,
.banner-section .owl-nav .owl-next:hover{
  color:#222222;
  border-color:#ffffff;
  background-color:#ffffff;
}

.title-section{
    margin-bottom: 50px;
}

.title-section h2{
    font-weight: 600;
    font-size: 32px;
}


.full-logo-image{
  position: relative;
  top: -35px;
}

.video{
  /*border:2px solid #045abd;*/
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  background: black;
}
.text-left h2{
  color: #002856;
  font-family: "Open Sans","sans-serif";
  padding-top: 20px;
}
.about-text p{
  color: #09101f;
  font-family: "Open Sans","sans-serif";
  font-size: 18px;
}
.pattern-layer {
  position: absolute;
  left: -36%;
  top: 40px;
  width: 50%;
  height: 500px;
  background-repeat: no-repeat;
  z-index: -1;
}
.pattern-layer {
  animation-name: rotateme;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: rotateme;
  -webkit-animation-duration: 15s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: rotateme;
  -moz-animation-duration: 15s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: rotateme;
  -ms-animation-duration: 15s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: rotateme;
  -o-animation-duration: 15s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}
@keyframes rotateme {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}

/*.rightCont .container{*/
/*  margin-right: 0;*/
/*  padding-right: 0;*/
/*}*/

/*.rightCont .container .row{*/
/*  margin-right: 0px;*/
/*}*/

/*.rightCont .container .row .col-lg-6:last-child{*/
/*  padding-right: 0px;*/
/*}*/


/*@media only screen and (max-width: 2500px) and (min-width: 1200px){*/
/*  .rightCont .container {*/
/*    max-width: 1665px;*/
/*  }*/
/*}*/
@media only screen and (max-width: 1200px){
  .pattern-layer {
    left: -30%;
    top: 20px;
    width: 40%;
    height: 350px;
  }
}
.test-alert {
  position: fixed;
  width: 30%;
  height: 150px;
  left:30%;
  top: 40%;
  z-index: 5555;
  display: none !important;
}

.test-alert .alert {
  height:180px;
  display: none !important;
  flex-direction: column;
  align-items:center;
  padding: 12px 20px;
}

.test-alert .default-btn {
  background-color: #002856;
  opacity:1;
  z-index: 55555;
  color: #fff;
  border: none;
  cursor: pointer;
}

@media screen and (max-width: 1100px) {
  .test-alert {
    width: 60%;
    left: 20%;
    display: none !important;
  }
}

@media screen and (max-width: 600px) {
  .test-alert {
    width: 80%;
    left: 10%;
    display: none !important;
  }
}
@media screen and (max-width: 1200px) {
.is-sticky-res img.main-logo-img.img-logo-white-res{
    display: none!important;
    }
}
.navbar-brand img.full-logo-image.img-logo-dark{
    display: none;
    }
.navbar-area .navbar-brand-res img.full-logo-image.img-logo-dark-res{
    display: none;
    }


.footer-area .logo a img{
    width: 300px;
    }

