@charset "UTF-8";
/*===================================================================
[Table Of Content]

    * Imported CSS
    * Typography CSS
    * Common CSS
    * Main Navigation CSS
    * Header CSS
    * Home Slider CSS
    * Team CSS
    * Brand Logo CSS
    * Form CSS
    * Blog CSS
    * Contact CSS
    * Footer CSS

=====================================================================*/
/*
-----------------------------------------------------------------------
  Typography CSS
-----------------------------------------------------------------------
*/
body {
  color:#656565;
  font-size: 16px;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  line-height: 1.75;
  margin: 0;
  overflow-x: hidden;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
@media only screen and (max-width: 1199px) {
  body {
    font-size: 15px;
  }
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  color: #272a33;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
  margin-top: 0;
}

a {
  color: #0a58ca;
  text-decoration: none;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
a:hover, a:active, a:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #025d2b;
  outline: none;
  text-decoration: none;
}
a img {
  border: none;
}

button {
  text-decoration: none;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
button:hover, button:active, button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  text-decoration: none;
}

.btn:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

p {
  margin-bottom: 30px;
}
p:last-child {
  margin-bottom: 0;
}

:active,
:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none !important;
}

::-moz-selection {
  background: #91b2c3;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #91b2c3;
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: #91b2c3;
  /* Firefox */
  color: #fff;
  text-shadow: none;
}

::-webkit-selection {
  background: #91b2c3;
  /* Safari */
  color: #fff;
  text-shadow: none;
}

img {
  height: auto;
  max-width: 100%;
}

iframe {
  border: none !important;
}

textarea:focus, textarea:active, input:focus, input:active {
  outline: none;
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}

pre,
ul,
ol,
dl,
dd,
blockquote,
address,
table,
fieldset {
  margin-bottom: 30px;
}

table p {
  margin-bottom: 0;
}

/*
-----------------------------------------------------------------------
  Common CSS
-----------------------------------------------------------------------
*/
/*-------- Background Style Css --------*/
.bg-img {
  background: no-repeat center center;
  background-size: cover;
}

/*-------- Container Style Css --------*/
.wrapper {
  overflow-x: hidden;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}
@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

.row > * {
  margin-top: 0;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}
.row > [class*=col-] {
  padding-right: 15px;
  padding-left: 15px;
}

/*-------- Gutter Style Css --------*/
.no-gutter {
  margin-right: 0;
  margin-left: 0;
}
.no-gutter .col,
.no-gutter [class*=col-] {
  padding-left: 0;
  padding-right: 0;
}

.row-gutter-10 {
  margin-right: -5px;
  margin-left: -5px;
}
.row-gutter-10 .col,
.row-gutter-10 [class*=col-] {
  padding-left: 5px;
  padding-right: 5px;
}

.row-gutter-20 {
  margin-right: -10px;
  margin-left: -10px;
}
.row-gutter-20 .col,
.row-gutter-20 [class*=col-] {
  padding-left: 10px;
  padding-right: 10px;
}

.row-gutter-40 {
  margin-right: -20px;
  margin-left: -20px;
}
.row-gutter-40 .col,
.row-gutter-40 [class*=col-] {
  padding-left: 20px;
  padding-right: 20px;
}

.row-gutter-70 {
  margin-right: -35px;
  margin-left: -35px;
}
@media only screen and (max-width: 1199px) {
  .row-gutter-70 {
    margin-right: -15px;
    margin-left: -15px;
  }
}
.row-gutter-70 .col,
.row-gutter-70 [class*=col-] {
  padding-left: 35px;
  padding-right: 35px;
}
@media only screen and (max-width: 1199px) {
  .row-gutter-70 .col,
.row-gutter-70 [class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/*-------- Spacing Style Css --------*/
.container,
.container-fluid {
  padding-bottom: 90px;
  padding-top: 113px;
}
@media only screen and (max-width: 1199px) {
  .container,
.container-fluid {
    padding-bottom: 50px;
    padding-top: 80px;
  }
}

/*-------- Button Style Css --------*/
.btn-theme {
  background-color: #0a58ca;
  border: 1px solid #0a58ca;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  font-size: 15px;
  padding: 8px 35px 8px;
  text-align: center;
}
.btn-theme.btn-sm {
  height: 38px;
  padding: 4px 5px 6px;
  width: 110px;
}
@media only screen and (max-width: 1199px) {
  .btn-theme.btn-sm {
    height: 34px;
    padding: 4px 4px 4px;
    width: 90px;
    font-size: 13px;
  }
}
.btn-theme.btn-white {
  background-color: #fff;
  border: 1px solid rgba(3, 168, 78, 0.18);
  color: #0a58ca;
}
.btn-theme.btn-white:hover {
  background-color: #0a58ca;
  border-color: #0a58ca;
  color: #fff;
}
.btn-theme:hover {
  background-color: #fff;
  border: 1px solid #0a58ca;
  color: #0a58ca;
}

/*-------- Z Index Style Css --------*/
.z-index--1 {
  z-index: -1;
}

.z-index-1 {
  z-index: 1;
}

.z-index-2 {
  z-index: 2;
}

/*-------- Fancybox Images Style Css --------*/
.fancybox-slide {
  cursor: url("../img/icons/cancel-white.html"), auto;
}

/*-------- Custom Color Style Css --------*/
.bg-color-gray {
  background-color: #f4f7f7;
}

/*-------- Margin & Padding Custom Style Css --------*/
.m--0 {
  margin: 0 !important;
}

.mb--0 {
  margin-bottom: 0 !important;
}

.ml--0 {
  margin-left: 0 !important;
}

.mr--0 {
  margin-right: 0 !important;
}

.mt--0 {
  margin-top: 0 !important;
}

.p--0 {
  padding: 0 !important;
}

.pb--0 {
  padding-bottom: 0 !important;
}

.pl--0 {
  padding-left: 0 !important;
}

.pr--0 {
  padding-right: 0 !important;
}

.pt--0 {
  padding-top: 0 !important;
}

/*-------- Scroll To Top Style Css --------*/
.scroll-to-top {
  -webkit-box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.2);
  bottom: -60px;
  background-color: #0a58ca;
  color: #fff;
  position: fixed;
  right: 30px;
  display: block;
  padding: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  line-height: 40px;
  font-weight: 700;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  z-index: 999;
}
@media only screen and (max-width: 767px) {
  .scroll-to-top {
    right: 10px;
    width: 30px;
    height: 30px;
    font-size: 12px;
    line-height: 30px;
  }
}
.scroll-to-top:hover {
  background-color: #272a33;
}
.scroll-to-top.show {
  visibility: visible;
  opacity: 0.8;
  bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .scroll-to-top.show {
    bottom: 10px;
  }
}
.scroll-to-top.show:hover {
  opacity: 1;
}

/*
-----------------------------------------------------------------------
	Main Navigation CSS
-----------------------------------------------------------------------
*/
.main-menu > li {
  margin-right: 14px;
  padding: 3px 0;
}
.main-menu > li:last-child {
  margin-right: 0;
}
.main-menu > li > a {
  color: #000;
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 30px;
  text-transform: uppercase;
  padding: 7px 25px;
  position: relative;
}
.main-menu > li:hover > a, .main-menu > li.active > a {
  color: #0a58ca;
}
.main-menu > li:hover > a:before, .main-menu > li.active > a:before {
  color: #0a58ca;
}

.has-submenu {
  padding-right: 10px;
  position: relative;
}
.has-submenu > a {
  position: relative;
}
.has-submenu > a:before {
  content: "";
  color: #272a33;
  display: none;
  font-size: 12px;
  font-family: "FontAwesome";
  display: none;
  position: absolute;
  right: -16px;
  top: 0;
  line-height: 51px;
}
.has-submenu:hover > .submenu-nav {
  margin-top: 0;
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
}
.has-submenu .submenu-nav {
  background-color: #111;
  border: none;
  border-bottom: none;
  padding: 15px 0 15px;
  position: absolute;
  left: -15px;
  top: 100%;
  opacity: 0;
  min-width: 210px;
  pointer-events: none;
  margin-top: 30px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  visibility: hidden;
  z-index: 9999;
}
@media only screen and (max-width: 1199px) {
  .has-submenu .submenu-nav {
    min-width: 210px;
    left: 0;
  }
}
.has-submenu .submenu-nav:before {
  content: "";
  position: absolute;
  height: 56px;
  width: 100%;
  left: 0;
  bottom: 100%;
}
.has-submenu .submenu-nav > li {
  padding: 10px 25px;
}
.has-submenu .submenu-nav > li a {
  color: #aaa;
  display: block;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: inherit;
  text-transform: capitalize;
}
.has-submenu .submenu-nav > li a:hover {
  color: #fff;
}
.has-submenu .submenu-nav > li:hover > a {
  color: #fff;
}
.has-submenu .submenu-nav > li:hover:after {
  color: #fff !important;
}
.has-submenu .submenu-nav > li.has-submenu {
  position: relative;
}
.has-submenu .submenu-nav > li.has-submenu a:before {
  display: none;
}
.has-submenu .submenu-nav > li.has-submenu:hover > .submenu-nav {
  -webkit-transform: none;
          transform: none;
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
}
.has-submenu .submenu-nav > li.has-submenu:after {
  content: "";
  color: #656565;
  font-size: 15px;
  line-height: 1;
  font-family: "FontAwesome";
  display: none;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(0%, -57%);
  -webkit-transform: translate(0%, -57%);
  -moz-transform: translate(0%, -57%);
  -ms-transform: translate(0%, -57%);
  -o-transform: translate(0%, -57%);
}
.has-submenu .submenu-nav > li.has-submenu .submenu-nav {
  left: 100%;
  top: 0;
}

/*
-----------------------------------------------------------------------
  Offcanvas Header
-----------------------------------------------------------------------
*/
.off-canvas-wrapper.offcanvas {
  background-color: #fff;
  width: 310px;
}
@media only screen and (max-width: 991px) {
  .off-canvas-wrapper.offcanvas {
    width: 310px;
  }
}
.off-canvas-wrapper .offcanvas-header {
  padding: 0;
}
.off-canvas-wrapper .offcanvas-body {
  padding: 0 0 20px;
  scrollbar-width: auto;
  scrollbar-color: #1f1f1f #292929;
  /* Chrome, Edge, and Safari */
}
.off-canvas-wrapper .offcanvas-body::-webkit-scrollbar {
  width: 2px;
}
.off-canvas-wrapper .offcanvas-body::-webkit-scrollbar-track {
  background: #292929;
}
.off-canvas-wrapper .offcanvas-body::-webkit-scrollbar-thumb {
  background-color: #1f1f1f;
  border-radius: 2px;
  border: 2px solid #1f1f1f;
}
.off-canvas-wrapper .btn-menu-close {
  display: block;
  width: 100%;
  height: 60px;
  background-color: #0746a2;
  opacity: 1;
  border-radius: 0;
  color: #fff;
  background-image: none;
  padding: 0 20px;
  line-height: 60px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  font-weight: 600;
  text-align: left;
  border: none;
  position: relative;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.off-canvas-wrapper .btn-menu-close i {
  position: absolute;
  right: 21px;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}
.off-canvas-wrapper .btn-menu-close:hover {
  color: #fff;
  background-color: #2f2f2f;
}

.offcanvas-backdrop,
.modal-backdrop {
  background-color: rgba(43, 43, 43, 0.92);
  cursor: url("../img/icons/cancel-white.html"), auto;
}
.offcanvas-backdrop.show,
.modal-backdrop.show {
  opacity: 1;
}

.mobile-menu-items {
  padding: 0;
}
.mobile-menu-items ul {
  border-top: 1px solid rgba(10, 77, 60, 0.15);
}
.mobile-menu-items ul li {
  position: relative;
}
.mobile-menu-items ul li a {
  display: block;
  width: 100%;
  background: none;
  text-align: left;
  padding: 10px 20px;
  border: 0;
  border-bottom: 1px solid rgba(10, 77, 60, 0.15);
  font-size: 15px;
  font-weight: 600;
  font-family: "Jost", sans-serif;
  color: #272a33;
}
.mobile-menu-items ul li a:hover {
  color: #0a58ca;
}
.mobile-menu-items ul li .mobile-menu-expand {
  position: absolute;
  right: 20px;
  top: 15px;
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.mobile-menu-items ul li .mobile-menu-expand::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #272a33;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.mobile-menu-items ul li .mobile-menu-expand::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #272a33;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.mobile-menu-items ul li.active-expand > .mobile-menu-expand::before {
  background-color: #0a58ca;
}
.mobile-menu-items ul li.active-expand > .mobile-menu-expand::after {
  background-color: #0a58ca;
  height: 0;
}
.mobile-menu-items ul li.active-expand a {
  color: #0a58ca;
}
.mobile-menu-items ul li.active-expand ul li a {
  color: #272a33;
}
.mobile-menu-items ul li ul {
  border-top: 0;
}
.mobile-menu-items ul li ul li a {
  padding-left: 12%;
}
.mobile-menu-items ul li ul li a:hover {
  color: #0a58ca;
}
.mobile-menu-items ul li ul li ul li a {
  padding-left: 18%;
}

/*
-----------------------------------------------------------------------
  Section Title CSS
-----------------------------------------------------------------------
*/
.section-title {
  margin-bottom: 56px;
}
@media only screen and (max-width: 1199px) {
  .section-title {
    margin-bottom: 42px;
  }
}
.section-title .title {
  font-size: 30px;
  margin-bottom: 12px;
}
@media only screen and (max-width: 1199px) {
  .section-title .title {
    font-size: 28px;
    margin-bottom: 8px;
  }
}
@media only screen and (max-width: 991px) {
  .section-title .title {
    font-size: 25px;
    margin-bottom: 6px;
  }
}
.section-title .desc p {
  padding-bottom: 0;
}

/*
-----------------------------------------------------------------------
  Header CSS
-----------------------------------------------------------------------
*/
.header-area {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0;
}
.header-area .container {
  padding: 0 15px;
}
.header-area.sticky-header {
  transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
}
.header-area.sticky-header.sticky {
  background-color: #0a58ca;
  -webkit-box-shadow: 0px 10px 60px -30px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 60px -30px rgba(0, 0, 0, 0.1);
  position: fixed !important;
  left: 0;
  top: 0 !important;
  width: 100%;
  z-index: 99;
}
.header-area.sticky-header.sticky .header-logo-area .logo-main {
  display: block;
}
.header-area.sticky-header.sticky .header-logo-area .logo-light {
  display: none;
}
.header-area.transparent {
  background-color: transparent;
  position: absolute !important;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9;
}
.header-area.header-default {
  background-size: cover;
  background-position: top left 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 2;
}
.header-area .header-align {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  .header-navigation-area {
    display: none;
  }
}
.header-navigation-area .main-menu.nav {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-navigation-area .main-menu.nav > li {
  padding: 0;
  margin-right: 0;
}
.header-navigation-area .main-menu.nav > li.active > a {
  color: #0a58ca;
}
.header-navigation-area .main-menu.nav > li.active > a:before {
  color: #0a58ca;
}
.header-navigation-area .main-menu.nav > li > a {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  height: 88px;
  line-height: 90px;
  letter-spacing: 0;
  position: relative;
  margin: 0 11px;
  padding: 0 11px;
  text-transform: capitalize;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
@media only screen and (max-width: 1199px) {
  .header-navigation-area .main-menu.nav > li > a {
    height: 78px;
    line-height: 80px;
    margin: 0 7px;
    margin-left: 7px;
    padding: 0 7px;
    padding-left: 7px;
  }
}
.header-navigation-area .main-menu.nav > li > a span {
  position: relative;
}
.header-navigation-area .main-menu.nav > li > a span:before {
  content: "";
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.header-navigation-area .main-menu.nav > li > a:hover {
  color: #0a58ca;
}
.header-navigation-area .main-menu.nav > li > a:hover:after {
  bottom: auto;
  height: 100%;
  top: 0;
}
.header-navigation-area .main-menu.nav > li:first-child {
  margin-left: 0;
}
.header-navigation-area .main-menu.nav > li:first-child > a {
  margin-left: 0;
  padding-left: 0;
}
.header-navigation-area .main-menu.nav > li:last-child {
  margin-right: 0;
}
.header-navigation-area .main-menu.nav > li:last-child > a {
  margin-right: 0;
  padding-right: 0;
}
.header-navigation-area .main-menu.nav > li:hover span:before {
  background-color: #fff;
  width: 100%;
  left: 0;
  right: auto;
}
.header-navigation-area .main-menu.nav .has-submenu:hover a {
  color: #0a58ca;
}
.header-navigation-area .main-menu.nav .has-submenu:hover a:before {
  color: #0a58ca;
}
.header-navigation-area .main-menu.nav .has-submenu:hover a:after {
  bottom: auto;
  height: 100%;
  top: 0;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav {
  -webkit-box-shadow: 0 1px 24px 0 rgba(0, 0, 0, 0.09);
          box-shadow: 0 1px 24px 0 rgba(0, 0, 0, 0.09);
  background-color: #fff;
  border-radius: 0 0 4px 4px;
  color: #555;
  padding: 0 0;
  position: absolute;
  width: 210px;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav:before {
  display: none;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li {
  border-bottom: 1px solid rgba(173, 181, 189, 0.15);
  padding: 0;
  margin-bottom: 0;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.active a {
  color: #0a58ca !important;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.active:after {
  color: #0a58ca;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li a {
  color: #1d1d1d;
  display: block;
  font-size: 14px;
  padding: 11px 25px 10px;
  position: relative;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li a:hover {
  color: #0a58ca;
  background-color: rgba(173, 181, 189, 0.15);
}
@media only screen and (max-width: 1399.98px) {
  .header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.has-submenu {
    padding: 0px 28px;
  }
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.has-submenu:after {
  color: #555;
}
@media only screen and (max-width: 1399.98px) {
  .header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.has-submenu:after {
    right: auto;
    transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    top: calc(50% + -8px);
    left: 20px;
  }
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.has-submenu.active:after {
  color: #0a58ca;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.has-submenu .submenu-nav {
  border-radius: 0 4px 4px 4px;
  -webkit-box-shadow: 0 0 3.76px 0.24px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 3.76px 0.24px rgba(0, 0, 0, 0.05);
  left: 100%;
  right: auto;
  top: 7px;
  transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
}
@media only screen and (max-width: 1399.98px) {
  .header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.has-submenu .submenu-nav {
    left: auto;
    right: 100%;
  }
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.has-submenu .submenu-nav:before {
  content: "";
  display: block;
  height: 30px;
  position: absolute;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.has-submenu .submenu-nav > li > a {
  color: #555 !important;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.has-submenu .submenu-nav > li > a:hover {
  color: #0a58ca !important;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.has-submenu .submenu-nav > li.active > a {
  color: #0a58ca !important;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.has-submenu:hover a {
  color: #0a58ca;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.has-submenu:hover:after {
  color: #0a58ca !important;
}

.btn-menu {
  color: #fff;
  background-color: #0a58ca;
  border: none;
  border-radius: 5px;
  display: none;
  margin: 0;
  padding: 0;
  font-size: 20px;
  margin-left: 8px;
  position: relative;
  top: 1px;
  height: 38px;
  width: 38px;
  line-height: 38px;
  transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
}
@media only screen and (max-width: 991px) {
  .btn-menu {
    display: inline-block;
  }
}
@media only screen and (max-width: 767px) {
  .btn-menu {
    height: 34px;
    width: 34px;
    font-size: 16px;
    line-height: 34px;
  }
}
.btn-menu:hover {
  background-color: #0746a2;
}

.header-logo-area {
  margin-top: 1px;
  position: relative;
}
.header-logo-area a {
  display: block;
}
.header-logo-area img {
  max-width: 125px;
}
@media only screen and (max-width: 1399.98px) {
  .header-logo-area img {
    max-width: 125px;
  }
}
@media only screen and (max-width: 1199px) {
  .header-logo-area img {
    max-width: 112px;
  }
}
.header-logo-area .logo-light {
  display: none;
}

@media only screen and (max-width: 991px) {
  .header-action-area {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 70px;
  }
}
.header-action-area .btn-registration {
  background-color: #0a58ca;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  font-size: 15px;
  height: 48px;
  width: 160px;
  text-align: center;
  line-height: 47px;
}
@media only screen and (max-width: 1199px) {
  .header-action-area .btn-registration {
    font-size: 14px;
    height: 38px;
    width: 122px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .header-action-area .btn-registration {
    font-size: 13px;
    height: 34px;
    width: 102px;
    line-height: 32px;
  }
}
.header-action-area .btn-registration span {
  margin-right: 4px;
}
@media only screen and (max-width: 767px) {
  .header-action-area .btn-registration span {
    margin-right: 0;
    position: relative;
    top: -1px;
  }
}
.header-action-area .btn-registration:hover {
  background-color: #0746a2;
}

/*
-----------------------------------------------------------------------
    Home Slider CSS
-----------------------------------------------------------------------
*/
.home-slider-area {
  position: relative;
}

.home-slider-container .slider-content-area {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 870px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .home-slider-container .slider-content-area {
    height: 700px;
  }
}
@media only screen and (max-width: 991px) {
  .home-slider-container .slider-content-area {
    height: 600px;
  }
}
@media only screen and (max-width: 767px) {
  .home-slider-container .slider-content-area {
    height: 520px;
  }
}
@media only screen and (max-width: 575px) {
  .home-slider-container .slider-content-area {
    height: auto;
    padding: 104px 0 98px;
  }
}
.home-slider-container .slider-content-area:before {
  background-color: #272a33;
  content: "";
  height: 100%;
  opacity: 0.7;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.home-slider-container .slider-content-area .slider-content {
  margin-bottom: 34px;
  margin-top: 23px;
  position: relative;
  text-align: center;
  z-index: 1;
}
.home-slider-container .slider-content-area .slider-content .title {
  color: #fefefe;
  font-size: 50px;
  line-height: 1.3;
  margin-bottom: 21px;
}
@media only screen and (max-width: 1199px) {
  .home-slider-container .slider-content-area .slider-content .title {
    font-size: 40px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .home-slider-container .slider-content-area .slider-content .title {
    font-size: 32px;
  }
}
@media only screen and (max-width: 575px) {
  .home-slider-container .slider-content-area .slider-content .title {
    font-size: 26px;
  }
}
.home-slider-container .slider-content-area .slider-content .title span {
  color: #0a58ca;
}
.home-slider-container .slider-content-area .slider-content .desc {
  color: #fefefe;
  font-size: 18px;
  margin-bottom: 0;
}
@media only screen and (max-width: 1199px) {
  .home-slider-container .slider-content-area .slider-content .desc {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .home-slider-container .slider-content-area .slider-content .desc {
    font-size: 14px;
  }
}

@media only screen and (max-width: 1199px) {
  .home-slider-shape {
    display: none;
  }
}
.home-slider-shape .shape1 {
  position: absolute;
  top: 0;
  right: 0;
  animation: movebounce 4s linear infinite;
  -webkit-animation: movebounce 4s linear infinite;
  -moz-animation: movebounce 4s linear infinite;
  -ms-animation: movebounce 4s linear infinite;
  -o-animation: movebounce 4s linear infinite;
}
@media only screen and (max-width: 1699px) {
  .home-slider-shape .shape1 {
    width: 200px;
  }
}
@media only screen and (max-width: 1399.98px) {
  .home-slider-shape .shape1 {
    width: 170px;
  }
}
.home-slider-shape .shape2 {
  position: absolute;
  top: 0;
  right: 0;
  animation: movebounce2 5s linear infinite;
  -webkit-animation: movebounce2 5s linear infinite;
  -moz-animation: movebounce2 5s linear infinite;
  -ms-animation: movebounce2 5s linear infinite;
  -o-animation: movebounce2 5s linear infinite;
}
@media only screen and (max-width: 1699px) {
  .home-slider-shape .shape2 {
    width: 170px;
  }
}
@media only screen and (max-width: 1399.98px) {
  .home-slider-shape .shape2 {
    width: 130px;
  }
}
.home-slider-shape .shape3 {
  position: absolute;
  bottom: 140px;
  left: 0;
  animation: movebounce3 4s linear infinite;
  -webkit-animation: movebounce3 4s linear infinite;
  -moz-animation: movebounce3 4s linear infinite;
  -ms-animation: movebounce3 4s linear infinite;
  -o-animation: movebounce3 4s linear infinite;
}
@media only screen and (max-width: 1699px) {
  .home-slider-shape .shape3 {
    width: 210px;
  }
}
@media only screen and (max-width: 1399.98px) {
  .home-slider-shape .shape3 {
    width: 160px;
  }
}
.home-slider-shape .shape4 {
  position: absolute;
  bottom: 82px;
  right: 48px;
}
@media only screen and (max-width: 1399.98px) {
  .home-slider-shape .shape4 {
    width: 100px;
  }
}

.job-search-wrap {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  max-width: 998px;
}

@-webkit-keyframes movebounce {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}
@keyframes movebounce {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}
@-webkit-keyframes movebounce2 {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(60px);
    transform: translateX(60px);
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}
@keyframes movebounce2 {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(60px);
    transform: translateX(60px);
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}
@-webkit-keyframes movebounce3 {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}
@keyframes movebounce3 {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}
/*
-----------------------------------------------------------------------
  Shop CSS
-----------------------------------------------------------------------
*/
.job-category-area .container {
  padding-top: 129px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 1199px) {
  .job-category-area .container {
    padding-top: 78px;
    padding-bottom: 60px;
  }
}

.job-category-item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f4f7f7;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 68px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
  position: relative;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
@media only screen and (max-width: 1199px) {
  .job-category-item {
    height: 55px;
  }
}
.job-category-item .content {
  margin-top: -1px;
}
.job-category-item .title {
  color: #272a33;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
}
@media only screen and (max-width: 1199px) {
  .job-category-item .title {
    font-size: 14px;
  }
}
.job-category-item .title a {
  color: #272a33;
}
.job-category-item .overlay-link {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.job-category-item:hover {
  background-color: #0a58ca;
}
.job-category-item:hover .title a {
  color: #fff;
}

/*
-----------------------------------------------------------------------
  Services CSS
-----------------------------------------------------------------------
*/
.recent-job-inner-area .container {
  padding-top: 120px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 1199px) {
  .recent-job-inner-area .container {
    padding-top: 80px;
    padding-bottom: 60px;
  }
}
.recent-job-inner-area .pagination-area {
  margin-top: 40px;
}
@media only screen and (max-width: 1199px) {
  .recent-job-inner-area .pagination-area {
    margin-top: 10px;
  }
}

.job-details-area .container {
  padding-top: 120px;
  padding-bottom: 76px;
}
@media only screen and (max-width: 1199px) {
  .job-details-area .container {
    padding-top: 80px;
    padding-bottom: 50px;
  }
}

.employers-details-area .container {
  padding-top: 120px;
  padding-bottom: 90px;
}
@media only screen and (max-width: 1199px) {
  .employers-details-area .container {
    padding-top: 80px;
    padding-bottom: 50px;
  }
}

.recent-job-item {
  background-color: #fff;
  border-radius: 5px;
  margin-bottom: 30px;
  padding: 42px 40px 41px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
@media only screen and (max-width: 1199px) {
  .recent-job-item {
    padding: 30px 28px 29px;
  }
}
.recent-job-item .company-info {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.recent-job-item .company-info img {
  border-radius: 5px;
  min-width: 75px;
}
@media only screen and (max-width: 1199px) {
  .recent-job-item .company-info img {
    min-width: auto;
    width: 58px;
  }
}
.recent-job-item .company-info .content {
  margin-left: 30px;
  margin-top: -1px;
}
@media only screen and (max-width: 1199px) {
  .recent-job-item .company-info .content {
    margin-left: 14px;
  }
}
.recent-job-item .company-info .name {
  color: #272a33;
  font-size: 20px;
  margin-bottom: 9px;
}
@media only screen and (max-width: 1199px) {
  .recent-job-item .company-info .name {
    font-size: 16px;
  }
}
.recent-job-item .company-info .name a {
  color: #272a33;
}
.recent-job-item .company-info .name a:hover {
  color: #0a58ca;
}
.recent-job-item .company-info .address {
  font-size: 15px;
  line-height: 1;
}
@media only screen and (max-width: 1199px) {
  .recent-job-item .company-info .address {
    font-size: 14px;
  }
}
.recent-job-item .main-content {
  margin: 24px 0 20px;
}
.recent-job-item .main-content .title {
  color: #272a33;
  font-size: 24px;
  margin-bottom: 12px;
}
@media only screen and (max-width: 1199px) {
  .recent-job-item .main-content .title {
    font-size: 18px;
  }
}
.recent-job-item .main-content .title a {
  color: #272a33;
}
.recent-job-item .main-content .title a:hover {
  color: #0a58ca;
}
.recent-job-item .main-content .work-type {
  color: #0a58ca;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1199px) {
  .recent-job-item .main-content .work-type {
    font-size: 14px;
  }
}
.recent-job-item .main-content .desc {
  font-size: 15px;
  line-height: 1.87;
  max-width: 234px;
}
@media only screen and (max-width: 1199px) {
  .recent-job-item .main-content .desc {
    font-size: 13px;
    max-width: none;
  }
}
.recent-job-item .recent-job-info {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.recent-job-item .recent-job-info .salary {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
}
.recent-job-item .recent-job-info .salary h4 {
  font-size: 22px;
  line-height: 1;
  margin-bottom: 0;
}
@media only screen and (max-width: 1199px) {
  .recent-job-item .recent-job-info .salary h4 {
    font-size: 19px;
  }
}
.recent-job-item .recent-job-info .salary p {
  bottom: 3px;
  font-size: 14px;
  line-height: 1;
  position: relative;
}
.recent-job-item:hover {
  -webkit-box-shadow: 0px 15px 15px 0px rgba(114, 118, 116, 0.08);
          box-shadow: 0px 15px 15px 0px rgba(114, 118, 116, 0.08);
}

.recent-job-style2-item {
  background-color: #f4f7f7;
}
.recent-job-style2-item:hover {
  -webkit-box-shadow: 0px 5px 15px 0px rgba(114, 118, 116, 0.15);
          box-shadow: 0px 5px 15px 0px rgba(114, 118, 116, 0.15);
}

.recent-job-style3-item {
  background-color: #f4f7f7;
  padding: 36px 35px 36px;
}
.recent-job-style3-item.recent-job-item .company-info .content {
  margin-bottom: 0;
}
.recent-job-style3-item.recent-job-item .company-info .name {
  font-size: 19px;
  margin-right: -2px;
}
.recent-job-style3-item.recent-job-item:hover {
  -webkit-box-shadow: 0px 5px 15px 0px rgba(114, 118, 116, 0.15);
          box-shadow: 0px 5px 15px 0px rgba(114, 118, 116, 0.15);
}

.job-details-wrap {
  background-color: #f4f7f7;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 50px;
  padding: 45px 44px 45px 50px;
}
@media only screen and (max-width: 991px) {
  .job-details-wrap {
    padding: 30px 21px 30px 30px;
  }
}
@media only screen and (max-width: 767px) {
  .job-details-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media only screen and (max-width: 575px) {
  .job-details-wrap {
    display: block;
    text-align: center;
  }
}

.job-details-info {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 575px) {
  .job-details-info {
    display: block;
  }
}
@media only screen and (max-width: 575px) {
  .job-details-info .thumb {
    margin-bottom: 22px;
  }
}
.job-details-info .thumb img {
  border-radius: 5px;
}
.job-details-info .content {
  margin-top: -3px;
  margin-left: 30px;
}
@media only screen and (max-width: 1199px) {
  .job-details-info .content {
    margin-left: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .job-details-info .content {
    margin-left: 0;
    margin-top: 0;
  }
}
.job-details-info .content .title {
  font-size: 24px;
  margin-bottom: 9px;
}
@media only screen and (max-width: 991px) {
  .job-details-info .content .title {
    font-size: 22px;
    margin-bottom: 8px;
  }
}
.job-details-info .content .sub-title {
  color: #0a58ca;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
}
.job-details-info .content .info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
}
@media only screen and (max-width: 575px) {
  .job-details-info .content .info-list {
    display: block;
  }
}
.job-details-info .content .info-list li {
  color: #656565;
  font-size: 14px;
  line-height: 1;
}
.job-details-info .content .info-list li + li {
  margin-left: 19px;
}
@media only screen and (max-width: 575px) {
  .job-details-info .content .info-list li + li {
    margin-top: 14px;
    margin-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  .job-details-price {
    margin-top: 26px;
  }
}
@media only screen and (max-width: 575px) {
  .job-details-price {
    margin-top: 18px;
  }
}
.job-details-price .title {
  font-size: 24px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 1199px) {
  .job-details-price .title {
    font-size: 24px;
    margin-bottom: 6px;
  }
}
@media only screen and (max-width: 991px) {
  .job-details-price .title {
    font-size: 22px;
    margin-bottom: 6px;
  }
}
@media only screen and (max-width: 575px) {
  .job-details-price .title {
    font-size: 22px;
    margin-bottom: 14px;
  }
}
.job-details-price .title span {
  color: #656565;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  position: relative;
  display: inline-block;
  left: -8px;
}
.job-details-price .btn-theme {
  width: 130px;
  height: 45px;
  padding: 8px 5px 10px;
}
@media only screen and (max-width: 991px) {
  .job-details-price .btn-theme {
    width: 120px;
    height: 41px;
    padding: 5px;
  }
}

.job-details-item {
  margin-top: -7px;
}
.job-details-item .content {
  margin-bottom: 44px;
  margin-right: 70px;
}
@media only screen and (max-width: 1199px) {
  .job-details-item .content {
    margin-bottom: 30px;
    margin-right: 0;
  }
}
.job-details-item .content .title {
  font-size: 30px;
  margin-bottom: 22px;
}
@media only screen and (max-width: 1199px) {
  .job-details-item .content .title {
    font-size: 26px;
    margin-bottom: 18px;
  }
}
.job-details-item .content .desc {
  margin-bottom: 19px;
  margin-right: -4px;
}
.job-details-item .job-details-list li {
  font-size: 16px;
  display: block;
  line-height: 1.75;
  position: relative;
  padding-left: 30px;
}
@media only screen and (max-width: 1199px) {
  .job-details-item .job-details-list li {
    font-size: 15px;
  }
}
.job-details-item .job-details-list li i {
  margin-right: 12px;
  margin-right: 12px;
  position: absolute;
  left: -2px;
  top: 6px;
}
.job-details-item .btn-apply-now {
  background-color: #0a58ca;
  color: #fff;
  display: inline-block;
  font-size: 17px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 10px 10px;
  border-radius: 5px;
  width: 200px;
  height: 60px;
  text-align: center;
  line-height: 39px;
  position: relative;
  margin-top: 46px;
}
@media only screen and (max-width: 1199px) {
  .job-details-item .btn-apply-now {
    margin-top: 16px;
    font-size: 15px;
    padding: 5px;
    width: 150px;
    height: 50px;
    line-height: 40px;
  }
}
.job-details-item .btn-apply-now i {
  color: #fff;
  font-size: 20px;
  position: relative;
  top: 2px;
  margin-left: 16px;
}
@media only screen and (max-width: 1199px) {
  .job-details-item .btn-apply-now i {
    font-size: 17px;
    margin-left: 0;
  }
}
.job-details-item .btn-apply-now:hover {
  background-color: #272a33;
  color: #fff;
}

/*
-----------------------------------------------------------------------
  Working Process CSS
-----------------------------------------------------------------------
*/
@media only screen and (max-width: 1199px) {
  .work-process-area .container {
    padding-bottom: 44px;
  }
}

.working-process-item {
  max-width: 216px;
  margin-bottom: 22px;
  position: relative;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .working-process-item {
    margin: 0 auto 34px;
  }
}
.working-process-item .icon-box {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.working-process-item .icon-box .inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f4f7f7;
  border-radius: 5px;
  color: #0a58ca;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 70px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 15px;
  position: relative;
  text-align: center;
  width: 70px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
@media only screen and (max-width: 1199px) {
  .working-process-item .icon-box .inner {
    height: 60px;
    margin: 10px;
    width: 60px;
  }
}
.working-process-item .icon-box .inner:before {
  border: 2px dashed #e8efef;
  border-radius: 5px;
  content: "";
  height: calc(100% + 30px);
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% + 30px);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
@media only screen and (max-width: 1199px) {
  .working-process-item .icon-box .inner:before {
    height: calc(100% + 20px);
    width: calc(100% + 20px);
  }
}
.working-process-item .icon-box .inner img {
  position: absolute;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
@media only screen and (max-width: 1199px) {
  .working-process-item .icon-box .inner img {
    width: 18px;
  }
}
.working-process-item .icon-box .inner .icon-hover {
  opacity: 0;
}
.working-process-item .content {
  margin-top: 34px;
}
@media only screen and (max-width: 1199px) {
  .working-process-item .content {
    margin-top: 24px;
  }
}
.working-process-item .title {
  font-size: 22px;
  margin-bottom: 25px;
}
@media only screen and (max-width: 1199px) {
  .working-process-item .title {
    font-size: 20px;
    margin-bottom: 12px;
  }
}
.working-process-item .desc {
  margin-bottom: 0;
}
.working-process-item .shape-arrow-icon {
  position: absolute;
  width: 33px;
  top: 40px;
  right: -52px;
}
@media only screen and (max-width: 1199px) {
  .working-process-item .shape-arrow-icon {
    position: absolute;
    width: 33px;
    top: 30px;
    right: -6px;
  }
}
@media only screen and (max-width: 991px) {
  .working-process-item .shape-arrow-icon {
    display: none;
  }
}
.working-process-item .shape-arrow-icon .shape-icon,
.working-process-item .shape-arrow-icon .shape-icon-hover {
  position: absolute;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.working-process-item .shape-arrow-icon .shape-icon-hover {
  opacity: 0;
}
.working-process-item:hover .icon-box .inner {
  background-color: #0a58ca;
}
.working-process-item:hover .icon-box .inner:before {
  border-color: #0a58ca;
}
.working-process-item:hover .icon-box .inner .icon-hover {
  opacity: 1;
}
.working-process-item:hover .shape-icon {
  opacity: 0;
}
.working-process-item:hover .shape-icon-hover {
  opacity: 1;
}

.working-process-content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  .working-process-content-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media only screen and (max-width: 991px) {
  .working-process-content-wrap .working-col {
    width: 50%;
  }
}
@media only screen and (max-width: 479.98px) {
  .working-process-content-wrap .working-col {
    width: 100%;
  }
}

/*
-----------------------------------------------------------------------
  Divider CSS
-----------------------------------------------------------------------
*/
.divider-style1 {
  padding: 97px 0 102px;
}
@media only screen and (max-width: 1199px) {
  .divider-style1 {
    padding: 80px 0 85px;
  }
}
.divider-style1 .divider-content .sub-title {
  color: #fff;
  font-size: 23px;
  margin-bottom: 23px;
}
@media only screen and (max-width: 1199px) {
  .divider-style1 .divider-content .sub-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .divider-style1 .divider-content .sub-title {
    font-size: 18px;
  }
}
@media only screen and (max-width: 575px) {
  .divider-style1 .divider-content .sub-title {
    font-size: 15px;
  }
}
.divider-style1 .divider-content .title {
  color: #fff;
  font-size: 40px;
  line-height: 1.5;
  margin-bottom: 35px;
}
@media only screen and (max-width: 1199px) {
  .divider-style1 .divider-content .title {
    font-size: 30px;
    line-height: 1.4;
    margin-bottom: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .divider-style1 .divider-content .title {
    font-size: 28px;
  }
}
@media only screen and (max-width: 575px) {
  .divider-style1 .divider-content .title {
    font-size: 25px;
  }
}
@media only screen and (max-width: 479.98px) {
  .divider-style1 .divider-content .title {
    font-size: 22px;
  }
}
@media only screen and (max-width: 479.98px) {
  .divider-style1 .divider-content .title br {
    display: none;
  }
}
.divider-style1 .divider-content .btn-divider img {
  border-radius: 8px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
@media only screen and (max-width: 1199px) {
  .divider-style1 .divider-content .btn-divider img {
    width: 150px;
  }
}
@media only screen and (max-width: 575px) {
  .divider-style1 .divider-content .btn-divider img {
    width: 130px;
  }
}
.divider-style1 .divider-content .btn-divider-app-store {
  margin-left: 19px;
}
@media only screen and (max-width: 1199px) {
  .divider-style1 .divider-content .btn-divider-app-store {
    margin-left: 12px;
  }
}
.divider-style1 .divider-content .btn-divider:hover img {
  opacity: 0.8;
}
.divider-style1 .divider-btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.account-login-area .container {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media only screen and (max-width: 1199px) {
  .account-login-area .container {
    padding-bottom: 80px;
    padding-top: 80px;
  }
}

.login-register-form-wrap {
  background-color: #f4f7f7;
  border-radius: 8px;
  padding: 48px 70px 51px;
}
@media only screen and (max-width: 1199px) {
  .login-register-form-wrap {
    padding: 38px 50px 35px;
  }
}
@media only screen and (max-width: 767px) {
  .login-register-form-wrap {
    padding: 35px 40px 32px;
  }
}
@media only screen and (max-width: 575px) {
  .login-register-form-wrap {
    padding: 32px 34px 29px;
  }
}
@media only screen and (max-width: 479.98px) {
  .login-register-form-wrap {
    padding: 28px 24px 25px;
  }
}
.login-register-form-wrap .form-title .title {
  border-bottom: 1px solid #d7e1dc;
  font-size: 30px;
  margin-bottom: 50px;
  padding-bottom: 24px;
  position: relative;
  text-align: center;
}
@media only screen and (max-width: 1199px) {
  .login-register-form-wrap .form-title .title {
    font-size: 24px;
    margin-bottom: 30px;
    padding-bottom: 20px;
  }
}
.login-register-form-wrap .form-title .title:before {
  background-color: #0a58ca;
  content: "";
  height: 3px;
  width: 50px;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  bottom: -2px;
}

.sec-overlay {
  position: relative;
  z-index: 1;
}
.sec-overlay-theme:before {
  background-color: #0a58ca;
  content: "";
  left: 0;
  height: 100%;
  opacity: 0.95;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.sec-overlay-black:before {
  background-color: #272a33;
  content: "";
  left: 0;
  height: 100%;
  opacity: 0.7;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.play-video-btn .video-popup {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #0a58ca;
  height: 76px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: -41px auto 0;
  position: relative;
  padding-left: 2px;
  text-align: center;
  width: 76px;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .play-video-btn .video-popup {
    width: 56px;
    height: 56px;
    margin: -30px auto 0;
  }
}
.play-video-btn .video-popup:before {
  background-color: #0a58ca;
  border-radius: 50%;
  content: "";
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  position: absolute;
}
.play-video-btn .video-popup:after {
  border: 1px solid #cacaca;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0.25;
  z-index: -2;
  animation: popup-overlay 1.4s linear infinite;
  -webkit-animation: popup-overlay 1.4s linear infinite;
  -moz-animation: popup-overlay 1.4s linear infinite;
  -ms-animation: popup-overlay 1.4s linear infinite;
  -o-animation: popup-overlay 1.4s linear infinite;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}

.bg-layer-style1 {
  background-color: #272a33;
  content: "";
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
  height: 100%;
  position: absolute;
  width: 625px;
  top: 0;
  left: 0;
  opacity: 0.05;
  z-index: -1;
}
@media only screen and (max-width: 1199px) {
  .bg-layer-style1 {
    width: 357px;
  }
}
@media only screen and (max-width: 991px) {
  .bg-layer-style1 {
    width: 210px;
  }
}
@media only screen and (max-width: 767px) {
  .bg-layer-style1 {
    width: 80px;
  }
}
@media only screen and (max-width: 575px) {
  .bg-layer-style1 {
    display: none;
  }
}

.bg-layer-style2 {
  background-color: #272a33;
  content: "";
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  -webkit-clip-path: polygon(100% 0, 0 100%, 100% 100%);
  height: 100%;
  position: absolute;
  width: 625px;
  top: 0;
  right: 0;
  opacity: 0.05;
  z-index: -1;
}
@media only screen and (max-width: 1199px) {
  .bg-layer-style2 {
    width: 357px;
  }
}
@media only screen and (max-width: 991px) {
  .bg-layer-style2 {
    width: 210px;
  }
}
@media only screen and (max-width: 767px) {
  .bg-layer-style2 {
    width: 80px;
  }
}
@media only screen and (max-width: 575px) {
  .bg-layer-style2 {
    display: none;
  }
}

@-webkit-keyframes popup-overlay {
  0% {
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.6);
    -webkit-transform: scale(1.6);
    -moz-transform: scale(1.6);
    -ms-transform: scale(1.6);
    -o-transform: scale(1.6);
    opacity: 0;
  }
}

@keyframes popup-overlay {
  0% {
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.6);
    -webkit-transform: scale(1.6);
    -moz-transform: scale(1.6);
    -ms-transform: scale(1.6);
    -o-transform: scale(1.6);
    opacity: 0;
  }
}
/*
-----------------------------------------------------------------------
  Brand Logo CSS
-----------------------------------------------------------------------
*/
.brand-logo-content {
  border-top: 1px solid #f2f5f5;
  padding-top: 100px;
  padding-bottom: 120px;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .brand-logo-content {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.brand-logo-content:hover .brand-swiper-btn-prev,
.brand-logo-content:hover .brand-swiper-btn-next {
  opacity: 1;
}

@media only screen and (max-width: 575px) {
  .brand-logo-item {
    text-align: center;
  }
}
.brand-logo-item img {
  -webkit-filter: grayscale(100%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.brand-logo-item:hover img {
  opacity: 1;
  -webkit-filter: inherit;
  /* Safari 6.0 - 9.0 */
  filter: inherit;
}

.brand-swiper-btn-prev,
.brand-swiper-btn-next {
  background-color: #fff;
  border: 1px solid #d9e7df;
  border-radius: 5px;
  color: #0f034a;
  cursor: pointer;
  font-size: 24px;
  height: 46px;
  width: 46px;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: cen