:root {
  --color1: #48B345;
  --color2: #0159A4;
}

html,
body {
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
  background: #fff;
  font-family: 'Poppins', sans-serif;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  scroll-behavior: smooth;
}

*,
::after,
::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

header,
nav {
  display: block;
}

ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

ul ul {
  margin-bottom: 0;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

img {
  vertical-align: middle;
  border-style: none;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

button,
input {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button {
  text-transform: none;
}

[type=submit],
button {
  -webkit-appearance: button;
}

[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

.row {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.collapse:not(.show) {
  display: none;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: .5rem 0;
  margin: .125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: .25rem;
}

.nav-link {
  display: block;
  padding: .5rem 1rem;
}

.nav-link:focus,
.nav-link:hover {
  text-decoration: none;
}

.navbar {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding: .5rem 1rem;
}

.navbar-brand {
  display: inline-block;
  padding-top: .3125rem;
  padding-bottom: .3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

.navbar-brand:focus,
.navbar-brand:hover {
  text-decoration: none;
}

.navbar-nav {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

.navbar-collapse {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -ms-flex-positive: 1;
  -webkit-box-flex: 1;
  flex-grow: 1;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
}

@media (min-width: 768px) {
  .navbar-expand-md {
    -ms-flex-flow: row nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
  }

  .navbar-expand-md .navbar-nav {
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
  }

  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem;
  }

  .navbar-expand-md .navbar-collapse {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-brand:focus,
.navbar-light .navbar-brand:hover {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: rgba(0, 0, 0, 0.7);
}

.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}

.align-items-center {
  -ms-flex-align: center !important;
  -webkit-box-align: center !important;
  align-items: center !important;
}

@media print {

  *,
  ::after,
  ::before {
    text-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
  }

  a:not(.btn) {
    text-decoration: underline;
  }

  img {
    page-break-inside: avoid;
  }

  .container {
    min-width: 992px !important;
  }

  .navbar {
    display: none;
  }
}

a {
  outline: 0 !important;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: var(--color2);
  text-decoration: none;
}

a:hover {
  color: var(--color1);
  text-decoration: none;
}

button,
input {
  outline: 0 !important;
}

img {
  max-width: 100%;
}

.default-btn {
  border: none;
  position: relative;
  display: inline-block;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  color: #ffffff;
  text-transform: uppercase;
  background-color: var(--color2);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 5px;
  font-weight: 700;
  font-size: 15px;
  font-family: "Roboto", sans-serif;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 13px;
  padding-bottom: 13px;
}

.default-btn span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: var(--color1);
  -webkit-transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
  transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 5px;
}

.default-btn:hover,
.default-btn:focus {
  color: #ffffff;
}

.default-btn:hover span,
.default-btn:focus span {
  width: 225%;
  height: 562.5px;
}

.header-area {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  z-index: 999;
  background-color: transparent;
}

.header-area::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 85%;
  background-color: var(--color2);
  z-index: -1;
}

.top-header {
  padding-top: 10px;
  padding-bottom: 15px;
}

.top-header .top-header-right-side {
  text-align: right;
}

.top-header .top-header-right-side ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.top-header .top-header-right-side ul li {
  display: inline-block;
  text-align: left;
  position: relative;
  padding-left: 52px;
  color: #ffffff;
  font-size: 14px;
  margin-right: 20px;
}

.top-header .top-header-right-side ul li .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  color: var(--color1);
  font-size: 20px;
  background-color: #fff;
  text-align: center;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.top-header .top-header-right-side ul li span {
  display: block;
}

.top-header .top-header-right-side ul li a {
  display: inline-block;
  color: #ffffff;
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}

.top-header .top-header-right-side ul li a.default-btn {
  background-color: var(--color1);
  color: #ffffff;
  top: 4px;
  font-size: 15px;
}

.top-header .top-header-right-side ul li a.default-btn span {
  background: #ffffff;
}

.top-header .top-header-right-side ul li a.default-btn:hover {
  color: var(--color2);
}

.top-header .top-header-right-side ul li:hover .icon {
  background-color: #ffffff;
  color: var(--color1);
}

.top-header .top-header-logo a {
  display: inline-block;
}

.pearo-responsive-nav {
  display: none;
}

.pearo-nav {
  background-color: transparent;
}

.pearo-nav .navbar {
  background-color: #ffffff;
  -webkit-box-shadow: -10px 10px rgba(255, 255, 255, 0.6);
  box-shadow: -10px 10px rgba(255, 255, 255, 0.6);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding-right: 25px;
  padding-top: 0;
  padding-left: 25px;
  padding-bottom: 0;
}

.pearo-nav .navbar .navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.pearo-nav .navbar ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}

.pearo-nav .navbar .navbar-nav {
  font-family: "Roboto", sans-serif;
  margin-left: auto;
}

.pearo-nav .navbar .navbar-nav .nav-item {
  position: relative;
  padding: 0;
}

.pearo-nav .navbar .navbar-nav .nav-item a {
  font-size: 15px;
  font-weight: 700;
  color: var(--color2);
  text-transform: uppercase;
  padding-left: 0;
  padding-right: 0;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-left: 13px;
  margin-right: 13px;
}

.pearo-nav .navbar .navbar-nav .nav-item a:hover,
.pearo-nav .navbar .navbar-nav .nav-item a:focus,
.pearo-nav .navbar .navbar-nav .nav-item a.active {
  color: var(--color1);
}

.pearo-nav .navbar .navbar-nav .nav-item a i {
  font-size: 11px;
}

.pearo-nav .navbar .navbar-nav .nav-item:last-child a {
  margin-right: 0;
}

.pearo-nav .navbar .navbar-nav .nav-item:first-child a {
  margin-left: 0;
}

.pearo-nav .navbar .navbar-nav .nav-item:hover a {
  color: var(--color1);
}

.pearo-nav .navbar .navbar-nav .nav-item .dropdown-menu {
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  background: #ffffff;
  position: absolute;
  border: none;
  top: 80px;
  left: 0;
  width: 250px;
  z-index: 99;
  display: block;
  opacity: 0;
  visibility: hidden;
  border-radius: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-top: 20px;
  border-top: 2px solid var(--color1);
  padding: 0;
}

.pearo-nav .navbar .navbar-nav .nav-item .dropdown-menu li {
  padding: 0;
}

.pearo-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
  text-transform: uppercase;
  padding: 13px 20px 11px;
  margin: 0;
  position: relative;
  color: var(--color2);
  background-color: transparent;
  border-bottom: 1px dashed #e5e5e5;
  font-size: 14px;
  font-weight: 600;
}

.pearo-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover,
.pearo-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:focus,
.pearo-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  color: #ffffff;
  background-color: var(--color1);
}

.pearo-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
  left: -250px;
  top: 15px;
  opacity: 0;
  visibility: hidden;
}

.pearo-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
  color: var(--color2);
}

.pearo-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover,
.pearo-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus {
  color: #ffffff;
  background-color: var(--color1);
}

.pearo-nav .navbar .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: 0;
}

.pearo-nav .navbar .navbar-nav .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
  margin-top: 0;
}

.pearo-nav .navbar .others-option {
  margin-left: 25px;
}

.pearo-nav .navbar .others-option .option-item {
  color: var(--color2);
  display: inline-block;
  position: relative;
  line-height: 1;
}

.pearo-nav .navbar .others-option .option-item .search-btn {
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: var(--color2);
  font-size: 20px;
  font-weight: 600;
}

.pearo-nav .navbar .others-option .option-item .search-btn:hover {
  color: var(--color1);
}

.pearo-nav .navbar .others-option .option-item .close-btn {
  cursor: pointer;
  display: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 20px;
  color: var(--color2);
  font-size: 18px;
}

.pearo-nav .navbar .others-option .option-item .close-btn:hover {
  color: var(--color1);
}

.pearo-nav .navbar .others-option .burger-menu {
  margin-left: 15px;
  cursor: pointer;
  display: inline-block;
  font-size: 22px;
  color: var(--color2);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.pearo-nav .navbar .others-option .burger-menu:hover {
  color: var(--color1);
}

.navbar-area {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.header-style-three .pearo-nav .navbar-brand {
  display: none;
}

.header-style-three .pearo-nav .navbar .navbar-nav {
  margin-left: 0;
}

.header-style-three .pearo-nav .navbar .others-option {
  margin-left: auto;
}

.search-overlay {
  display: none;
}

.search-overlay.search-popup {
  position: absolute;
  top: 100%;
  width: 330px;
  right: 0;
  background: #ffffff;
  z-index: 2;
  padding: 20px;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  margin-top: 31px;
}

.search-overlay.search-popup .search-form {
  position: relative;
}

.search-overlay.search-popup .search-form .search-input {
  display: block;
  width: 100%;
  height: 50px;
  line-height: initial;
  border: 1px solid #eeeeee;
  color: var(--color2);
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding-left: 15px;
}

.search-overlay.search-popup .search-form .search-input:focus {
  border-color: var(--color1);
}

.search-overlay.search-popup .search-form .search-button {
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
  background: transparent;
  border: none;
  width: 50px;
  outline: 0;
  color: #666666;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding: 0;
}

.search-overlay.search-popup .search-form .search-button:hover,
.search-overlay.search-popup .search-form .search-button:focus {
  color: var(--color1);
}

@media only screen and (max-width: 991px) {
  .pearo-responsive-nav {
    display: block;
  }

  .pearo-responsive-nav .pearo-responsive-menu {
    position: relative;
  }

  .pearo-responsive-nav .logo {
    position: relative;
    width: 50%;
    z-index: 999;
  }

  .navbar-area {
    background-color: #ffffff;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .pearo-nav {
    display: none;
  }

  .search-overlay.search-popup {
    width: 270px;
    right: -68px;
  }

  .search-overlay.search-popup .search-form .search-input {
    width: 94%;
  }
}

@media only screen and (max-width: 767px) {
  .default-btn {
    font-size: 13px;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 13px;
    padding-bottom: 12px;
  }

  .top-header {
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .top-header .top-header-right-side {
    text-align: center;
    margin-top: 10px;
  }

  .top-header .top-header-right-side ul li {
    text-align: center;
    padding-left: 0;
    font-size: 13px;
    margin-right: 10px;
    margin-left: 10px;
  }

  .top-header .top-header-right-side ul li .icon {
    display: none;
  }

  .top-header .top-header-right-side ul li span {
    margin-bottom: 1px;
  }

  .top-header .top-header-right-side ul li a {
    font-size: 16px;
  }

  .top-header .top-header-right-side ul li a.default-btn {
    top: 5px;
    font-size: 13px;
  }

  .top-header .top-header-logo {
    display: none;
  }

  .header-style-three .top-header .top-header-right-side {
    margin-top: 0;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .top-header .top-header-right-side ul li:last-child {
    display: inline-block;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .default-btn {
    font-size: 14px;
  }

  .top-header {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .top-header .top-header-right-side {
    text-align: center;
    margin-top: 10px;
  }

  .top-header .top-header-logo {
    display: none;
  }

  .header-style-three .top-header .top-header-right-side {
    margin-top: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .top-header .top-header-right-side ul li {
    padding-left: 45px;
    font-size: 14px;
    margin-right: 10px;
  }

  .top-header .top-header-right-side ul li .icon {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 18px;
  }
}

a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-bar {
  float: left;
  width: 100%;
  position: absolute;
  background: transparent;
  padding: 0 0 0;
  z-index: 999;
}

.mean-container a.meanmenu-reveal {
  width: 35px;
  height: 30px;
  position: absolute;
  right: 0;
  cursor: pointer;
  color: #000000;
  text-decoration: none;
  font-size: 16px;
  text-indent: -9999em;
  line-height: 22px;
  font-size: 1px;
  display: block;
  font-weight: 700;
  padding-top: 11px;
}

.mean-container a.meanmenu-reveal span {
  display: block;
  background: #000000;
  height: 4px;
  margin-top: 3px;
  border-radius: 3px;
}

.mean-container .mean-nav {
  float: left;
  width: 100%;
  background: #ffffff;
  margin-top: 62px;
}

.mean-container .mean-nav ul {
  padding: 0;
  margin: 0;
  width: 100%;
  border: none;
  list-style-type: none;
}

.mean-container .mean-nav ul li {
  position: relative;
  float: left;
  width: 100%;
}

.mean-container .mean-nav ul li a i {
  display: none;
}

.mean-container .mean-nav ul li a {
  display: block;
  float: left;
  width: 90%;
  padding: 1em 5% 13px;
  margin: 0;
  text-align: left;
  color: #677294;
  border-top: 1px solid #DBEEFD;
  text-decoration: none;
}

.mean-container .mean-nav ul li a.active {
  color: #000000;
}

.mean-container .mean-nav ul li li a {
  width: 80%;
  padding: 1em 10% 13px;
  color: #677294;
  border-top: 1px solid #DBEEFD;
  opacity: 1;
  filter: alpha(opacity=75);
  text-shadow: none !important;
  visibility: visible;
  text-transform: none;
  font-size: 14px;
}

.mean-container .mean-nav ul li.mean-last a {
  margin-bottom: 0;
}

.mean-container .mean-nav ul li li li a {
  width: 70%;
  padding: 1em 15% 13px;
}

.mean-container .mean-nav ul li a:hover {
  background: #252525;
  background: rgba(255, 255, 255, 0.1);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 1px;
  width: 100%;
  height: 24px;
  padding: 12px !important;
  text-align: right;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  font-weight: 700;
  background: transparent;
  border: none !important;
}

.mean-container .mean-bar,
.mean-container .mean-bar * {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.pearo-responsive-nav {
  display: none;
}

.search-overlay {
  display: none;
}

.search-overlay.search-popup {
  position: absolute;
  top: 100%;
  width: 330px;
  right: 0;
  background: #ffffff;
  z-index: 2;
  padding: 20px;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  margin-top: 31px;
}

.search-overlay.search-popup .search-form {
  position: relative;
}

.search-overlay.search-popup .search-form .search-input {
  display: block;
  width: 100%;
  height: 50px;
  line-height: initial;
  border: 1px solid #eeeeee;
  color: var(--color2);
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding-left: 15px;
}

.search-overlay.search-popup .search-form .search-input:focus {
  border-color: var(--color1);
}

.search-overlay.search-popup .search-form .search-button {
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
  background: transparent;
  border: none;
  width: 50px;
  outline: 0;
  color: #666666;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding: 0;
}

.search-overlay.search-popup .search-form .search-button:hover,
.search-overlay.search-popup .search-form .search-button:focus {
  color: var(color1);
}

@media only screen and (max-width: 991px) {
  .pearo-responsive-nav {
    display: block;
  }

  .pearo-responsive-nav .pearo-responsive-menu {
    position: relative;
  }

  .pearo-responsive-nav .pearo-responsive-menu.mean-container .mean-nav {
    margin-top: 62px;
  }

  .pearo-responsive-nav .pearo-responsive-menu.mean-container .mean-nav ul {
    font-size: 15px;
  }

  .pearo-responsive-nav .pearo-responsive-menu.mean-container .mean-nav ul li a.active {
    color: var(color1);
  }

  .pearo-responsive-nav .pearo-responsive-menu.mean-container .mean-nav ul li li a {
    font-size: 14px;
  }

  .pearo-responsive-nav .pearo-responsive-menu.mean-container .mean-nav .others-option {
    position: absolute;
    right: 55px;
    top: 13px;
  }

  .pearo-responsive-nav .pearo-responsive-menu.mean-container .mean-nav .others-option .option-item {
    color: var(--color2);
    display: inline-block;
    position: relative;
    line-height: 1;
  }

  .pearo-responsive-nav .pearo-responsive-menu.mean-container .mean-nav .others-option .option-item .search-btn {
    cursor: pointer;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    color: var(--color2);
    font-size: 20px;
    font-weight: 600;
  }

  .pearo-responsive-nav .pearo-responsive-menu.mean-container .mean-nav .others-option .option-item .search-btn:hover {
    color: var(color1);
  }

  .pearo-responsive-nav .pearo-responsive-menu.mean-container .mean-nav .others-option .option-item .close-btn {
    cursor: pointer;
    display: none;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    width: 20px;
    color: var(--color2);
    font-size: 18px;
  }

  .pearo-responsive-nav .pearo-responsive-menu.mean-container .mean-nav .others-option .option-item .close-btn:hover {
    color: var(color1);
  }

  .pearo-responsive-nav .pearo-responsive-menu.mean-container .mean-nav .others-option .burger-menu {
    display: none;
  }

  .pearo-responsive-nav .pearo-responsive-menu.mean-container .navbar-nav {
    overflow-y: scroll;
    height: 306px;
    -webkit-box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
  }

  .pearo-responsive-nav .mean-container a.meanmenu-reveal {
    color: var(--color2);
  }

  .pearo-responsive-nav .mean-container a.meanmenu-reveal span {
    background: var(--color2);
  }

  .pearo-responsive-nav .logo {
    position: relative;
    width: 50%;
    z-index: 999;
  }

  .search-overlay.search-popup {
    width: 270px;
    right: -68px;
  }

  .search-overlay.search-popup .search-form .search-input {
    width: 94%;
  }
}

.ptb-100 {
  padding-top: 100px;
}

.mtb-100 {
  margin-top: 100px;
}

.bg-f8f8f8 {
  background-color: #f8f8f8;
}

.default-btn {
  border: none;
  position: relative;
  display: inline-block;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  color: #ffffff;
  text-transform: uppercase;
  background-color: var(--color2);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 5px;
  font-weight: 700;
  font-size: 15px;
  font-family: "Roboto", sans-serif;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 13px;
  padding-bottom: 13px;
}

.default-btn span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: var(color1);
  -webkit-transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
  transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 5px;
}

.default-btn:hover,
.default-btn:focus {
  color: #ffffff;
}

.default-btn:hover span,
.default-btn:focus span {
  width: 225%;
  height: 562.5px;
}

.about-image {
  position: relative;
  padding-bottom: 90px;
}

.about-image img:nth-child(2) {
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 0 10px 0 0;
}

.about-content {
  padding-left: 15px;
}

.about-content span {
  display: block;
  color: var(--color1);
  margin-bottom: 10px;
  font-size: 18px;
}

.about-content .hlight {
  text-transform: uppercase;
  margin-bottom: 17px;
  font-size: 40px;
  line-height: 42px;
  color: var(--color2);
  font-weight: 900;
}

.about-content .default-btn {
  margin-top: 10px;
}

.about-inner-area {
  margin-top: 30px;
}

.about-text-box {
  background-color: #ffffff;
  padding: 30px;
  margin-top: 30px;
  border-radius: 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  z-index: 1;
}

.about-text-box h3 {
  margin-bottom: 17px;
  text-transform: uppercase;
  position: relative;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 12px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 20px;
  font-weight: 900;
}

.about-text-box h3::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 50px;
  height: 1px;
  background-color: var(color1);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.about-text-box p {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 14.5px;
}

.about-text-box::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color2);
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  transition-property: -webkit-transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  border-radius: 5px;
}

.about-text-box:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}

.about-text-box:hover h3 {
  color: #ffffff;
  border-color: #ffffff;
}

.about-text-box:hover p {
  color: #ffffff;
}

.about-text-box:hover::before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

@media only screen and (max-width: 767px) {
  p {
    font-size: 13px;
  }

  .ptb-100 {
    padding-top: 60px;
  }

  .default-btn {
    font-size: 13px;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 13px;
    padding-bottom: 12px;
  }

  .about-image {
    padding-bottom: 0;
  }

  .about-image img {
    width: 100%;
  }

  .about-image img:nth-child(2) {
    position: relative;
    right: 0;
    bottom: 0;
    border-radius: 0;
    margin-top: 20px;
  }

  .about-content {
    padding-left: 0;
    text-align: center;
    margin-top: 30px;
  }

  .about-content span {
    margin-bottom: 8px;
    font-size: 15px;
  }

  .about-content .hlight {
    font-size: 25px;
  }

  .about-inner-area {
    margin-top: 10px;
  }

  .about-text-box {
    padding: 25px;
  }

  .about-text-box h3 {
    font-size: 16px;
  }

  .about-text-box p {
    font-size: 13px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-image {
    padding-bottom: 90px;
  }

  .about-image img {
    width: auto;
  }

  .about-image img:nth-child(2) {
    position: absolute;
    border-radius: 0 10px 0 0;
    margin-top: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  p {
    font-size: 14px;
  }

  .default-btn {
    font-size: 14px;
  }

  .ptb-100 {
    padding-top: 70px;
  }

  .about-content {
    padding-left: 0;
    text-align: center;
    margin-top: 30px;
  }

  .about-content span {
    font-size: 16px;
  }

  .about-content .hlight {
    font-size: 35px;
  }
}

.single-services-box {
  position: relative;
  margin-bottom: 30px;
  text-align: center;
  height: 260px;
  z-index: 1;
  border-radius: 5px;
  background-color: #ffffff;
  padding: 25px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
}

.single-services-box .icon {
  font-size: 65px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  z-index: 1;
  margin-top: -15px;
  margin-bottom: 12px;
}

.single-services-box .icon .icon-bg img {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: auto !important;
  display: inline-block !important;
  z-index: -1;
}

.single-services-box .h3 {
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 15px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 900;
}

.single-services-box .h3 a {
  display: inline-block;
}

.single-services-box .h3 a:not([href]):not([tabindex]) {
  color: #142f5a;
  text-decoration: none;
}

.single-services-box:hover .single-services-box .h3 a:not([href]):not([tabindex]):hover {
  color: #ced8e8;

}

.single-services-box .h3::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  margin: 0 auto;
  background-color: #e1dfe1;
  height: 1px;
  width: 70px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-services-box p {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-services-box .read-more-btn {
  display: inline-block;
  margin-top: 10px;
  color: var(--color2);
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
}

.single-services-box .read-more-btn:hover {
  letter-spacing: .5px;
}

.single-services-box .box-shape img {
  position: absolute;
  left: 0;
  top: 0;
  width: auto !important;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: inline-block !important;
}

.single-services-box .box-shape img:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}

.single-services-box:hover {
  background: var(--color2);
}

.single-services-box:hover .icon {
  color: #3aade1;
}

.single-services-box:hover .h3 {
  color: #ffffff;
}

.single-services-box:hover .h3 a {
  color: #ffffff !important;
}

.single-services-box:hover p {
  color: #ffffff;
}

.single-services-box:hover .read-more-btn {
  color: #3aade1;
}

.single-services-box:hover .box-shape img:nth-child(1) {
  opacity: 0;
  visibility: hidden;
}

.single-services-box:hover .box-shape img:nth-child(2) {
  opacity: 1;
  visibility: visible;
}

@media only screen and (max-width: 767px) {
  p {
    font-size: 13px;
  }

  .single-services-box {
    padding: 25px;
  }

  .single-services-box .icon {
    font-size: 50px;
    margin-top: -12px;
  }

  .single-services-box .h3 {
    margin-bottom: 16px;
    font-size: 16px;
  }

  .single-services-box .read-more-btn {
    margin-top: 5px;
    font-size: 13px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  p {
    font-size: 14px;
  }

  .single-services-box .icon {
    font-size: 55px;
    margin-top: -13px;
  }

  .single-services-box .h3 {
    font-size: 18px;
  }

  .single-services-box .read-more-btn {
    font-size: 14px;
  }
}

.why-choose-us-area .container-fluid {
  padding: 0;
}

.why-choose-us-area .container-fluid .row {
  margin: 0;
}

.why-choose-us-area .container-fluid .row .col-lg-5, .why-choose-us-area .container-fluid .row .col-lg-7 {
  padding: 0;
}

.why-choose-us-content {
  background-color: var(--color2);
  background-image: url(../img/why-choose-bg.jpg);
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
}

.why-choose-us-content .content {
  max-width: 705px;
  overflow: hidden;
  padding-left: 70px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.why-choose-us-content .content .title {
  margin-bottom: 10px;
}

.why-choose-us-content .content .title .sub-title {
  color: #3aade1;
  font-size: 18px;
  display: block;
  margin-bottom: 10px;
}

.why-choose-us-content .content .title h2 {
  color: #ffffff;
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: 42px;
  font-weight: 900;
  line-height: 15px;
}

.why-choose-us-content .content .title p {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 0;
  margin-top: 10px;
}

.why-choose-us-content .content .features-list {
  padding-left: 0;
  list-style-type: none;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: 0;
  margin-top: 0;
}

.why-choose-us-content .content .features-list li {
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
  flex: 0 0 50%;
  max-width: 50%;
  color: #e5e5e5;
  position: relative;
  padding-left: 82px;
  padding-right: 15px;
  padding-top: 30px;
}

.why-choose-us-content .content .features-list li .icon {
  position: absolute;
  left: 15px;
  top: 35px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 50%;
  color: #ffffff;
  background-color: #3aade1;
  text-align: center;
  font-size: 28px;
}

.why-choose-us-content .content .features-list li span {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 900;
}

.why-choose-us-content .content .features-list li:hover .icon {
  background-color: #ffffff;
  color: #3aade1;
}

.why-choose-us-image {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.why-choose-us-image img {
  width: auto !important;
  display: none !important;
}

.why-choose-us-slides {
  height: 100%;
}

.why-choose-us-slides .owl-stage-outer {
  width: 100%;
  height: 100%;
}

.why-choose-us-slides .owl-stage-outer .owl-stage {
  height: 100%;
}

.why-choose-us-slides .owl-stage-outer .owl-stage .owl-item {
  height: 100%;
}

.why-choose-us-slides.owl-theme .owl-nav {
  opacity: 0;
  visibility: hidden;
  margin-top: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.why-choose-us-slides.owl-theme .owl-nav [class*=owl-] {
  position: absolute;
  left: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0;
  padding: 0;
  background-color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #ffffff;
  font-size: 35px;
}

.why-choose-us-slides.owl-theme .owl-nav [class*=owl-].owl-next {
  left: auto;
  right: 25px;
}

.why-choose-us-slides.owl-theme .owl-nav [class*=owl-]:hover {
  color: #3aade1;
  background-color: transparent;
}

.why-choose-us-slides.owl-theme .owl-dots {
  line-height: .01;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 25px;
  margin-top: 0;
}

.why-choose-us-slides.owl-theme .owl-dots .owl-dot span {
  width: 15px;
  height: 2px;
  margin: 0 3px;
  background-color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 0;
}

.why-choose-us-slides.owl-theme .owl-dots .owl-dot:hover span {
  background-color: #3aade1;
}

.why-choose-us-slides.owl-theme .owl-dots .owl-dot.active span {
  background-color: #3aade1;
  width: 25px;
}

.why-choose-us-slides.owl-theme:hover .owl-nav {
  opacity: 1;
  visibility: visible;
}

@media only screen and (max-width: 767px) {
  .why-choose-us-image {
    height: auto;
    background-image: unset !important;
  }

  .why-choose-us-image img {
    width: auto !important;
    display: inline-block !important;
  }

  .why-choose-us-slides {
    height: auto;
  }

  .why-choose-us-slides .owl-stage-outer {
    height: auto;
  }

  .why-choose-us-slides .owl-stage-outer .owl-stage {
    height: auto;
  }

  .why-choose-us-slides .owl-stage-outer .owl-stage .owl-item {
    height: auto;
  }

  .why-choose-us-slides.owl-theme .owl-nav [class*=owl-] {
    left: 15px;
    font-size: 25px;
  }

  .why-choose-us-slides.owl-theme .owl-nav [class*=owl-].owl-next {
    left: auto;
    right: 15px;
  }

  .why-choose-us-content {
    background-image: unset !important;
  }

  .why-choose-us-content .content {
    max-width: 100%;
    padding-left: 15px;
    padding-top: 60px;
    padding-bottom: 60px;
    padding-right: 15px;
  }

  .why-choose-us-content .content .title {
    text-align: center;
  }

  .why-choose-us-content .content .title .sub-title {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .why-choose-us-content .content .title h2 {
    font-size: 25px;
  }

  .why-choose-us-content .content .title p {
    font-size: 13px;
  }

  .why-choose-us-content .content .features-list {
    text-align: center;
    margin-left: -10px;
    margin-right: -10px;
  }

  .why-choose-us-content .content .features-list li {
    padding-left: 10px;
    padding-right: 10px;
  }

  .why-choose-us-content .content .features-list li .icon {
    position: relative;
    left: 0;
    top: 0;
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 22px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
  }

  .why-choose-us-content .content .features-list li span {
    font-size: 13px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .why-choose-us-content .content .features-list {
    text-align: left;
  }

  .why-choose-us-content .content .features-list li {
    padding-left: 75px;
  }

  .why-choose-us-content .content .features-list li .icon {
    position: absolute;
    left: 15px;
    top: 35px;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
  }

  .why-choose-us-content .content {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  p {
    font-size: 14px;
  }

  .why-choose-us-image {
    height: auto;
    background-image: unset !important;
  }

  .why-choose-us-image img {
    width: auto !important;
    display: inline-block !important;
  }

  .why-choose-us-slides {
    height: auto;
  }

  .why-choose-us-slides .owl-stage-outer {
    height: auto;
  }

  .why-choose-us-slides .owl-stage-outer .owl-stage {
    height: auto;
  }

  .why-choose-us-slides .owl-stage-outer .owl-stage .owl-item {
    height: auto;
  }

  .why-choose-us-content .content {
    max-width: 100%;
    padding-left: 35px;
    padding-top: 50px;
    padding-bottom: 70px;
    padding-right: 70px;
  }

  .why-choose-us-content .content .title {
    text-align: center;
  }

  .why-choose-us-content .content .title .sub-title {
    font-size: 16px;
  }

  .why-choose-us-content .content .title h2 {
    font-size: 35px;
  }

  .why-choose-us-content .content .title p {
    font-size: 15px;
  }

  .why-choose-us-content .content .features-list li span {
    font-size: 15px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .why-choose-us-content .content {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.subscribe-area {
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid #0c4776;
}

.subscribe-content h2 {
  margin-bottom: 0;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 900;
}

.subscribe-content p {
  color: #ffffff;
  opacity: 0.9;
  margin-top: 10px;
  margin-bottom: 0;
}

.subscribe-form {
  padding-left: 30px;
}

.subscribe-form form {
  position: relative;
}

.subscribe-form form .input-newsletter {
  display: block;
  width: 100%;
  color: #002e5b;
  height: 65px;
  border-radius: 5px;
  border: none;
  padding-left: 15px;
  outline: 0;
  -webkit-box-shadow: unset !important;
  box-shadow: unset !important;
  font-size: 16px;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
}

.subscribe-form form .input-newsletter::-webkit-input-placeholder {
  color: #99afc3;
}

.subscribe-form form .input-newsletter:-ms-input-placeholder {
  color: #99afc3;
}

.subscribe-form form .input-newsletter::-ms-input-placeholder {
  color: #99afc3;
}

.subscribe-form form .input-newsletter::placeholder {
  color: #99afc3;
}

.subscribe-form form button {
  position: absolute;
  right: 5px;
  top: 5px;
  background-color: var(--color1);
  color: #ffffff;
  border: none;
  border-radius: 5px;
  height: 55px;
  line-height: 55px;
  padding: 0 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-transform: uppercase;
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}

.subscribe-form form button:hover {
  color: #ffffff;
  background-color: #000000;
}

.subscribe-form #validator-newsletter {
  color: #ffffff;
  position: absolute;
  left: 0;
  bottom: -32px;
}

.footer-area {
  background-color: var(--color2);
  padding-top: 70px;
  position: relative;
  z-index: 1;
}

.footer-area::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url(../img/bg-line.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.single-footer-widget {
  margin-bottom: 30px;
}

.single-footer-widget h3 {
  margin-bottom: 30px;
  color: #ffffff;
  position: relative;
  padding-bottom: 8px;
  border-bottom: 1px solid #0c4776;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 900;
}

.single-footer-widget h3::before {
  bottom: -1px;
  left: 0;
  width: 55px;
  height: 1px;
  background-color: var(color1);
  content: '';
  position: absolute;
}

.single-footer-widget .logo a {
  display: inline-block;
}

.single-footer-widget .logo p {
  color: #ebe7e7;
  margin-bottom: 0;
  margin-top: 15px;
}

.single-footer-widget .social {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  margin-top: 20px;
}

.single-footer-widget .social li {
  display: inline-block;
  margin-right: 3px;
}

.single-footer-widget .social li a {
  display: inline-block;
  background-color: var(color1);
  color: #002e5b;
  width: 38px;
  font-size: 17px;
  height: 38px;
  line-height: 39px;
  border-radius: 50%;
  text-align: center;
}

.single-footer-widget .social li a:hover {
  background-color: #ffffff;
  color: #002e5b;
}

.single-footer-widget .social li:last-child {
  margin-right: 0;
}

.single-footer-widget .footer-quick-links {
  padding-left: 0;
  list-style-type: none;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  margin-bottom: 0;
  margin-top: -12px;
}

.single-footer-widget .footer-quick-links li {
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 12px;
}

.single-footer-widget .footer-quick-links li a {
  display: inline-block;
  color: #ebe7e7;
  text-transform: uppercase;
  font-size: 14px;
}

.single-footer-widget .footer-quick-links li a:hover {
  color: var(color1);
}

.single-footer-widget .footer-contact-info {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}

.single-footer-widget .footer-contact-info li {
  color: #ebe7e7;
  font-size: 15px;
  margin-bottom: 12px;
}

.single-footer-widget .footer-contact-info li span {
  display: inline-block;
  font-weight: 600;
  color: #ffffff;
}

.single-footer-widget .footer-contact-info li a {
  display: inline-block;
  color: #ffffff;
  position: relative;
}

.single-footer-widget .footer-contact-info li a::before {
  width: 100%;
  height: 1px;
  background-color: var(color1);
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-footer-widget .footer-contact-info li a:hover {
  color: var(color1);
}

.single-footer-widget .footer-contact-info li:last-child {
  margin-bottom: 0;
}

.single-footer-widget .footer-contact-info li:last-child a::before {
  opacity: 1;
  visibility: visible;
}

.copyright-area {
  margin-top: 40px;
  border-top: 1px solid #0c4776;
  padding-top: 25px;
  padding-bottom: 25px;
}

.copyright-area p {
  color: #ebe7e7;
  font-size: 15px;
}

.copyright-area p a {
  color: #ffffff;
  display: inline-block;
  font-weight: 600;
}

.copyright-area p a:hover {
  color: var(color1);
}

.copyright-area ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  text-align: right;
}

.copyright-area ul li {
  display: inline-block;
  color: #ebe7e7;
  font-size: 15px;
  position: relative;
  margin-left: 10px;
  margin-right: 10px;
}

.copyright-area ul li a {
  display: inline-block;
  color: #ebe7e7;
}

.copyright-area ul li a:hover {
  color: var(color1);
}

.copyright-area ul li::before {
  content: '';
  position: absolute;
  top: 5px;
  right: -13px;
  width: 1px;
  height: 14px;
  background-color: #ffffff;
}

.copyright-area ul li:last-child {
  margin-right: 0;
}

.copyright-area ul li:last-child::before {
  display: none;
}

.copyright-area ul li:first-child {
  margin-left: 0;
}

/*! CSS Used from: https://templates.envytheme.com/pearo/default/assets/css/responsive.css */
@media only screen and (max-width: 767px) {
  p {
    font-size: 13px;
  }

  .subscribe-area {
    text-align: center;
  }

  .subscribe-content h2 {
    font-size: 25px;
  }

  .subscribe-form {
    padding-left: 0;
    margin-top: 20px;
  }

  .subscribe-form form .input-newsletter {
    height: 60px;
    font-size: 15px;
  }

  .subscribe-form form button {
    position: relative;
    right: 0;
    top: 0;
    font-size: 14px;
    margin-top: 10px;
    display: block;
    width: 100%;
  }

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

  .single-footer-widget h3 {
    font-size: 16px;
  }

  .single-footer-widget .footer-contact-info li {
    font-size: 14px;
  }

  .single-footer-widget .footer-quick-links li a {
    font-size: 13px;
  }

  .copyright-area {
    margin-top: 30px;
    text-align: center;
  }

  .copyright-area p {
    font-size: 14px;
  }

  .copyright-area ul {
    text-align: center;
    margin-top: 15px;
  }

  .copyright-area ul li {
    font-size: 14px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .subscribe-form form button {
    position: absolute;
    right: 2.3px;
    top: 2.3px;
    margin-top: 0;
    display: inline-block;
    width: auto;
  }

  .copyright-area {
    text-align: left;
  }

  .copyright-area ul {
    text-align: right;
    margin-top: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  p {
    font-size: 14px;
  }

  .subscribe-content {
    margin-bottom: 20px;
    text-align: center;
  }

  .subscribe-content h2 {
    font-size: 30px;
  }

  .subscribe-form {
    padding-left: 0;
  }

  .single-footer-widget h3 {
    font-size: 18px;
  }
}

/*! CSS Used from: https://templates.envytheme.com/pearo/default/assets/css/bootstrap.min.css */
*, ::after, ::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

h2 {
  margin-top: 0;
  margin-bottom: .5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

img {
  vertical-align: middle;
  border-style: none;
}

h2 {
  margin-bottom: .5rem;
  font-weight: 500;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
}

@media print {
  *, ::after, ::before {
    text-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
  }

  a:not(.btn) {
    text-decoration: underline;
  }

  img {
    page-break-inside: avoid;
  }

  h2, p {
    orphans: 3;
    widows: 3;
  }

  h2 {
    page-break-after: avoid;
  }
}

/*! CSS Used from: https://templates.envytheme.com/pearo/default/assets/css/fontawesome.min.css */
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fa-facebook-f:before {
  content: "\f39e";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-linkedin-in:before {
  content: "\f0e1";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-youtube:before {
  content: "\f167";
}

.fab {
  font-family: "Font Awesome 5 Brands";
}

/*! CSS Used from: https://templates.envytheme.com/pearo/default/assets/css/flaticon.css */
[class^="flaticon-"]:before, [class^="flaticon-"]:after {
  font-family: Flaticon;
  font-style: normal;
}

.flaticon-cross-out:before {
  content: "\f10d";
}

/*! CSS Used from: https://templates.envytheme.com/pearo/default/assets/css/style.css */
a {
  outline: 0 !important;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #002e5b;
  text-decoration: none;
}

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

p {
  color: #666666;
  margin-bottom: 12px;
  line-height: 1.8;
  font-size: 15px;
}

p:last-child {
  margin-bottom: 0;
}

h2 {
  color: #002e5b;
  font-family: "Roboto", sans-serif;
}

img {
  max-width: 100%;
}

.sidebar-modal {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  overflow: hidden;
}

.sidebar-modal .sidebar-modal-inner {
  position: absolute;
  right: -100%;
  top: 0;
  width: 30%;
  overflow-y: scroll;
  height: 100%;
  background-color: #ffffff;
  -webkit-transition: 1.5s;
  transition: 1.5s;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 40px;
  padding-left: 40px;
  padding-right: 40px;
}

.sidebar-modal .sidebar-modal-inner .close-btn {
  display: inline-block;
  position: absolute;
  right: 35px;
  top: 20px;
  font-size: 14px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #002e5b;
  cursor: pointer;
  width: 35px;
  text-align: center;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #eeeeee;
  line-height: 34px;
}

.sidebar-modal .sidebar-modal-inner .close-btn:hover {
  background-color: red;
  border-color: red;
  color: #ffffff;
}

.sidebar-modal .sidebar-about-area {
  margin-bottom: 40px;
}

.sidebar-modal .sidebar-about-area .title h2 {
  margin-bottom: 12px;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 900;
}

.sidebar-modal .sidebar-about-area .title p {
  font-size: 14px;
}

.sidebar-modal .sidebar-instagram-feed {
  margin-bottom: 40px;
}

.sidebar-modal .sidebar-instagram-feed h2 {
  margin-bottom: 25px;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 900;
}

.sidebar-modal .sidebar-instagram-feed ul {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  list-style-type: none;
  margin-left: -5px;
  margin-right: -5px;
  margin-bottom: 0;
  margin-top: -10px;
}

.sidebar-modal .sidebar-instagram-feed ul li {
  -ms-flex: 0 0 25%;
  -webkit-box-flex: 0;
  flex: 0 0 25%;
  max-width: 25%;
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 10px;
}

.sidebar-modal .sidebar-instagram-feed ul li a {
  display: block;
  position: relative;
}

.sidebar-modal .sidebar-instagram-feed ul li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.sidebar-modal .sidebar-instagram-feed ul li a:hover::before {
  opacity: .50;
  visibility: visible;
}

.sidebar-modal .sidebar-contact-area .sidebar-contact-info {
  text-align: center;
}

.sidebar-modal .sidebar-contact-area .sidebar-contact-info .contact-info-content h2 {
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 700;
}

.sidebar-modal .sidebar-contact-area .sidebar-contact-info .contact-info-content h2 a {
  display: inline-block;
  color: #3aade1;
}

.sidebar-modal .sidebar-contact-area .sidebar-contact-info .contact-info-content h2 a:hover {
  color: #002e5b;
}

.sidebar-modal .sidebar-contact-area .sidebar-contact-info .contact-info-content h2 a:not(:first-child) {
  color: #002e5b;
}

.sidebar-modal .sidebar-contact-area .sidebar-contact-info .contact-info-content h2 a:not(:first-child):hover {
  color: #3aade1;
}

.sidebar-modal .sidebar-contact-area .sidebar-contact-info .contact-info-content h2 span {
  display: block;
  color: #666666;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
}

.sidebar-modal .sidebar-contact-area .sidebar-contact-info .contact-info-content .social {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  margin-top: 20px;
}

.sidebar-modal .sidebar-contact-area .sidebar-contact-info .contact-info-content .social li {
  display: inline-block;
  margin: 0 1px;
  padding-left: 0;
}

.sidebar-modal .sidebar-contact-area .sidebar-contact-info .contact-info-content .social li a {
  width: 35px;
  height: 35px;
  line-height: 33px;
  border: 1px solid #dadada;
  border-radius: 50%;
  color: #aba5a5;
  display: block;
}

.sidebar-modal .sidebar-contact-area .sidebar-contact-info .contact-info-content .social li a i {
  font-size: 14px;
}

.sidebar-modal .sidebar-contact-area .sidebar-contact-info .contact-info-content .social li a:hover {
  color: #ffffff;
  border-color: #3aade1;
  background-color: #3aade1;
}

.sidebar-modal::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: -1;
  height: 100%;
  -webkit-transition: 1s;
  transition: 1s;
}

.sidebar-modal.active {
  opacity: 1;
  visibility: visible;
}

.sidebar-modal.active .sidebar-modal-inner {
  right: 0;
}

.sidebar-modal.active::before {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  p {
    font-size: 13px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  p {
    font-size: 14px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .sidebar-modal .sidebar-modal-inner {
    width: 50%;
  }
}

.banner {
  margin-top: 134px;
}

.mobile {
  display: none;
}

.banner {
  position: relative;
  border-bottom: 5px solid var(--color1);
}

@media (max-width: 768px) {
  .dasktop {
    display: none;
  }

  .mobile {
    display: block;
  }
}

.banner-logo {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
}


.why-choose-us-content .content {
  max-width: 1083px;
  overflow: hidden;
  padding-left: 62px;
  padding-top: 6px;
  padding-bottom: 23px;
}

.list-group-item {
  position: relative;
  display: block;
  padding: .75rem 1.25rem;
  margin-bottom: -1px;
  background-color: #fff0;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.overflow-y {
  height: 560px;
  overflow-y: scroll;
}

.mfp-no-margins img.mfp-img {
  padding: 0;
}

.mfp-no-margins .mfp-figure:after {
  top: 0;
  bottom: 0;
}

.mfp-no-margins .mfp-container {
  padding: 0;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}

::-webkit-scrollbar {
  width: 1em;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
  background-color: var(--color2);
  outline: 1px solid slategrey;
  border-radius: 20px;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .why-choose-us-content .content {
    padding-left: 0;
    padding-top: 10px;
  }

  ::-webkit-scrollbar {
    width: 0.7em;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .why-choose-us-content .content {
    padding-left: 0;
    padding-top: 10px;
  }

  .why-choose-us-content .content {
    padding-right: 16px;
  }
}

@media (max-width: 767px) {
  .why-choose-us-content .content {
    max-width: 1083px;
    overflow: hidden;
    padding-left: 0;
    padding-top: 6px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .list-group-item {
    padding: .75rem .25rem;
  }

  .list-group-flush .list-group-item {
    font-size: 13px;
  }

  .single-services-box {
    margin-bottom: 5px;
  }

  .mtb-100 {
    margin-top: 60px;
  }

  .copyright-area {
    margin-top: 0;
    text-align: center;
  }

  .table {
    font-size: 13px;
  }

  .about-content {
    padding-left: 0;
    text-align: center;
    margin-top: 20px;
  }
}

.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: #144168 !important;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

@media only screen and (max-width: 767px) {
.top-header{
  background: #144168;
}
.top-header .top-header-right-side ul li span{
  color: #f8f8f8;
}
.top-header .top-header-right-side ul li a{
  color: #f8f8f8 !important;
}
}

/*# sourceMappingURL=style.css.map */