* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  font-family: "Lato", sans-serif;
  color: #2c3e50;
  padding-top: 45px;
}
button:focus {
  outline: none;
}
:focus {
  outline: none;
}
.text-primary-color {
  color: #00a8e8;
}
.text-secondary-color {
  color: #0266b3;
}
ul {
  list-style: none;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 0;
}
a {
  color: #5a5a5a;
  text-decoration: none;
  background-color: transparent;
  transition: all 0.2s ease-in-out;
}
a.white {
  color: #fff;
  text-decoration: none;
  background-color: transparent;
  transition: all 0.2s ease-in-out;
}
a:hover,
a:active,
a:focus {
  color: #00a8e8;
  text-decoration: none;
}
.headroom--pinned {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.headroom--unpinned {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}
.header--fixed {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  left: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  box-shadow: rgb(2 102 179 / 32%) 1.95px 1.95px 2.6px;
}
header .navbar-light {
  padding: 0 1rem;
}
header .navbar-light .navbar-nav {
  display: inline-flex;
}
header .navbar-light .navbar-brand img {
  width: 60px;
}
@media (min-width: 768px) {
  body {
    padding-top: 55px;
  }
  header .navbar-light .navbar-brand img {
    width: 80px;
  }
}
@media (min-width: 991px) {
  body {
    padding-top: 62px;
  }
  header .navbar-light .navbar-brand img {
    width: 95px;
  }
}

header .navbar-light .navbar-nav .nav-link {
  color: #5a5a5a;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: #00a8e8;
}

.navbar-light .navbar-nav .nav-link span,
.navbar-light .navbar-nav .nav-link span {
  display: block;
  margin-top: 1px;
  height: 7px;
  width: 7px;
  position: absolute;
  left: 50%;
  -webkit-transform: rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  background-color: #00a8e8;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.navbar-light .navbar-nav .nav-link.active span,
.navbar-light .navbar-nav .nav-link:hover span {
  opacity: 1;
}

.navbar-light .navbar-nav .nav-link::before {
  content: "";
  display: block;
  height: 3px;
  width: auto;
  flex-grow: 1;
  background-color: #00a8e8;
  position: absolute;
  width: 100%;
  bottom: 2px;
  left: 8px;
  width: calc(50% - 16px);
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.navbar-light .navbar-nav .nav-link.active::before,
.navbar-light .navbar-nav .nav-link:hover::before {
  opacity: 1;
}
.navbar-light .navbar-nav .nav-link::after {
  content: "";
  display: block;
  height: 3px;
  width: auto;
  flex-grow: 1;
  background-color: #00a8e8;
  position: absolute;
  width: 100%;
  bottom: 2px;
  left: calc(50% + 8px);
  width: calc(50% - 16px);
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.navbar-light .navbar-nav .nav-link.active::after,
.navbar-light .navbar-nav .nav-link:hover::after {
  opacity: 1;
}
.navbar-light .navbar-nav .dropdown-item {
  position: relative;
}
.navbar-light .navbar-nav .dropdown-item::before {
  content: "";
  display: block;
  height: 7px;
  width: 7px;
  background-color: #00a8e8;
  position: absolute;
  bottom: 50%;
  -webkit-transform: translate(0, 50%) rotate(45deg);
  transform: translate(0, 50%) rotate(45deg);
  left: 10px;
}
.navbar-light .navbar-nav .dropdown-item.active::before {
  background-color: #fff;
}

.burger {
  width: 40px;
  height: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: none;
  border: none;
  z-index: 100;
  position: relative;
}
.burger div {
  height: 2px;
  width: 26px;
  background-color: #0e3a5a;
  position: absolute;
  transition: all 0.5s ease;
  border-radius: 10rem;
}
.burger .burger-line1 {
  top: 5px;
  left: 0;
}
.burger .burger-line2 {
  top: 10px;
  left: 0;
}
.burger .burger-line3 {
  top: 15px;
  left: 0;
}
.burger .burger-line4 {
  top: 20px;
  left: 0;
}

.burger[aria-expanded="true"] .burger-line1 {
  transform: translateY(5px) rotate(45deg);
  transition: all 0.3s ease;
}
.burger[aria-expanded="true"] .burger-line2,
.burger[aria-expanded="true"] .burger-line3 {
  opacity: 0;
  transition: all 0.1s ease;
}
.burger[aria-expanded="true"] .burger-line4 {
  transform: translateY(-10px) rotate(-45deg);
  transition: all 0.3s ease;
  width: 26px;
}

section {
  padding: 5rem 0;
  position: relative;
}

.section-about-us {
  background-color: #eeeeee;
}
.pattern-bg {
  display: block;
  position: absolute;
  top: 1rem;
  right: 1rem;
  height: 100%;
  width: 100%;
  min-width: 500px;
  max-width: 820px;
  opacity: 0.5;
  pointer-events: none;
}
.section-head {
  padding-bottom: 15px;
}
.section-head h3 {
  position: relative;
  font-weight: 400;
}

.hero-head-border,
.section-head-border {
  display: flex;
  align-items: center;
  margin-top: 15px;
  width: 50%;
}
h3 .hero-head-border,
h3 .section-head-border {
  width: 100%;
}
.hero-head-border span,
.section-head-border span {
  display: block;
  margin: 0 5px;
  height: 10px;
  width: 10px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #00a8e8;
}
.hero-head-border-white span,
.section-head-border-white span {
  background-color: #fff;
}

.hero-head-border::after,
.hero-head-border::before,
.section-head-border::after,
.section-head-border::before {
  content: "";
  display: block;
  height: 1px;
  width: auto;
  flex-grow: 1;
  background-color: #00a8e8;
}
.hero-head-border-white::after,
.hero-head-border-white::before,
.section-head-border-white::after,
.section-head-border-white::before {
  background-color: #fff;
}

.section-clients {
  /* background: #f0f0f0; */
  background: linear-gradient(
      0deg,
      rgba(49, 104, 151, 0.7),
      rgba(49, 104, 151, 0.7)
    ),
    url("../images/client/bg.jpg");
  background-size: cover;
  background-position: center;
}
.section-clients .owl-carousel {
  padding: 2em 0 0;
}
.section-clients .owl-theme .card {
  position: relative;
  margin: 5px;
  padding: 10px;
  height: 120px;
}

footer {
  padding: 25px 0;
  color: #282d32;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)),
    url("../images/footer-bg.svg");
  background-size: cover;
  background-position: top;
}

footer h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-weight: bold;
  font-size: 16px;
}

footer ul {
  padding: 0;
  list-style: none;
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 0;
}

footer ul a {
  color: inherit;
  text-decoration: none;
  opacity: 0.6;
}

footer ul a:hover {
  opacity: 0.8;
}

@media (max-width: 767px) {
  footer .item:not(.social) {
    text-align: center;
    padding-bottom: 20px;
  }
}

footer .item.text {
  margin-bottom: 36px;
}

@media (max-width: 767px) {
  footer .item.text {
    margin-bottom: 0;
  }
}

footer .item.text p {
  opacity: 0.6;
  margin-bottom: 0;
}

footer .item.social > a {
  position: relative;
  font-size: 18px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  display: inline-block;
  text-align: center;
  margin: 0 8px;
  color: #282d32;
  opacity: 0.75;
}
footer .item.social > a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
  transform: rotateZ(45deg);
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 0 1px rgba(0, 166, 232, 0.459);
}

footer .item.social > a:hover {
  opacity: 0.9;
}

footer .copyright {
  padding-top: 7px;
  opacity: 0.7;
  font-size: 13px;
  margin-bottom: 0;
}

.hero {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background: linear-gradient(
      0deg,
      rgba(49, 104, 151, 0.5),
      rgba(49, 104, 151, 0.5)
    ),
    url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
}
.about-bg {
  background: linear-gradient(
      0deg,
      rgba(49, 104, 151, 0.5),
      rgba(49, 104, 151, 0.5)
    ),
    url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
}
.human-resources-bg {
  background: linear-gradient(
      0deg,
      rgba(49, 104, 151, 0.5),
      rgba(49, 104, 151, 0.5)
    ),
    url("../images/human-resources.jpg");
  background-size: cover;
  background-position: center;
}
.clients-bg {
  background: linear-gradient(
      0deg,
      rgba(49, 104, 151, 0.5),
      rgba(49, 104, 151, 0.5)
    ),
    url("../images/clients.jpg");
  background-size: cover;
  background-position: center;
}
.hero h3 {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
}

.p-head-border {
  display: flex;
  align-items: center;
  margin-top: 15px;
  width: 50%;
}
h4 .p-head-border {
  width: 100%;
}
.p-head-border span {
  display: block;
  margin: 0 5px;
  height: 10px;
  width: 10px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #00a8e8;
}

.p-head-border::after,
.p-head-border::before {
  content: "";
  display: block;
  height: 1px;
  width: auto;
  flex-grow: 1;
  background-color: #00a8e8;
}

.resources .card {
  border: 2px solid #eaeaea;
  border-radius: 0;
  overflow: hidden;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.resources .card .card-img-top {
  padding: 30px 45px 65px 45px;
  /* background: #00a8e8; */
}
.resources .card .card-body .card-number {
  position: relative;
  width: 4rem;
  height: 4rem;
  margin-top: calc(-2.5rem - 1.25rem);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: bold;
  color: #fff;
  z-index: 0;
}
.resources .card .card-body .card-number::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: #00a8e8;
  box-shadow: 0 0 0px 10px #fff;
  z-index: -1;
  transform: rotateZ(45deg);
  transition: all 0.3s ease-in-out;
}

.resources .card .card-body {
  background-color: #00a8e8;
  color: #fff;
}
.resources .card .card-body .card-title {
  font-size: 15px;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 0;
}
.client-controls li {
  position: relative;
  cursor: pointer;
  font-size: 14px;
  width: 55px;
  height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 12px;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  font-weight: 600;
}

.client-controls li::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: #e3e4e3;
  border: 2px solid #c7deea;
  z-index: -1;
  transform: rotateZ(45deg);
  transition: all 0.3s ease-in-out;
}
.client-controls li:hover,
.client-controls li.mixitup-control-active {
  color: #fff;
}
.client-controls li:hover::before,
.client-controls li.mixitup-control-active::before {
  background: #00a8e8;
  border: 2px solid #00a8e8;
}
.client-list{
 padding-top: 80px ;
}
.owl-carousel .item,
.client-item  { 
  display: flex;
  justify-content: center;
}
.owl-carousel .card,
.client-item .card {
  width: 170px;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: transparent;
  margin-bottom: 100px;
}
.owl-carousel .card{
  width: 150px;
  height: 150px;
  margin: 45px 0;
}
.owl-carousel .card::before ,
.client-item .card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0; 
  border: 1px solid rgba(0,0,0,.125);
  z-index: -1;
  transform: rotateZ(45deg);
  transition: all 0.3s ease-in-out;
  background-color: #fff;
}
.owl-carousel .card .card-img ,
.client-item .card .card-img {
  width: 80%;
}
#map {
  height: 450px;
  width: 100%;
}

.bg-light-grey {
  background-color: #f5f6fa;
}
.border-light-grey {
  border: 2px solid #f5f6fa;
}

.form-control {
  border-radius: 0;
}

.contact-btn {
  min-width: 193px;
  height: 50px;
  border: none;
  background: #00a8e8;

  font-size: 15px;
  line-height: 1.5;
  color: #fff;
  padding: 0 25px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.contact-btn:hover {
  background: #316897;
}
.contact-btn svg {
  margin-left: 7px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.contact-btn:hover svg {
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -ms-transform: translateX(10px);
  -o-transform: translateX(10px);
  transform: translateX(10px);
}
.form-control-big {
  height: calc(1.5em + 1.5rem + 2px);
  padding: 0.5rem 1rem;
}

#infoContent {
  text-align: center;
}
#infoContent h4 {
  margin: 0;
  padding: 1rem 2rem;
  background: #21a6df;
  color: #fff;
}
.gm-style .gm-style-iw-c {
  padding: 0 !important;
  overflow: unset;
  border-radius: 0;
}
.gm-style .gm-style-iw-d {
  padding: 0 !important;
  overflow: auto !important;
}
.gm-style .gm-style-iw-t::after {
  background: linear-gradient(
    45deg,
    rgb(33 166 223) 50%,
    rgb(33 166 223) 51%,
    rgb(33 166 223) 100%
  ) !important;
}
.gm-ui-hover-effect {
  border: unset !important;
  background-color: transparent !important;
  opacity: 1;
  z-index: 0;
  top: -15px !important;
  right: -15px !important;
}
.gm-ui-hover-effect:hover {
  border: unset !important;
  background-color: transparent !important;
}

.gm-ui-hover-effect::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  transform: rotateZ(45deg);
  background-color: #00a8e8 !important;
  opacity: 1;
  border: 1px solid #0266b3 !important;
  z-index: -1;
}
.gm-ui-hover-effect:hover::before {
  background-color: #0266b3 !important;
  border: none !important;
}

.dropdown-menu {
  border: none;
  border-radius: 0;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 12px;
  padding: 0;
}
@media (max-width: 991px) {
  .dropdown-menu {
    border: 1px solid #00a8e8;
    border-bottom: none;
    text-align: center;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
  }
  .navbar-light .navbar-nav .dropdown-item {
    color: #00a8e8;
    border-bottom: 1px solid #00a8e8;
  }
  .navbar-light .navbar-nav .dropdown-item.active,
  .navbar-light .navbar-nav .dropdown-item:active {
    color: #fff;
  }
  .navbar-light .navbar-nav .dropdown-item::before {
    bottom: -4px;
    -webkit-transform: translate(-50%, 0) rotate(45deg);
    transform: translate(-50%, 0) rotate(45deg);
    left: 50%;
    z-index: 11;
  }
}
.dropdown-item {
  padding: 0.5rem 1.5rem;
}
.dropdown-item.active,
.dropdown-item:active {
  background-color: #00a8e8;
}

.to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 2rem;
  border: none;
  padding: 0.5rem 0.8rem;
  color: #fff;
  background: transparent;
  z-index: 555;
  display: none;
}
.to-top::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: #00a8e8;
  z-index: -1;
  transform: rotateZ(45deg);
  transition: all 0.3s ease-in-out;
}
.to-top:hover::before {
  background: #0266b3;
}

@media all and (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    margin-top: 0;
    display: none;
  }
  .navbar .nav-item:hover .dropdown-menu {
    display: block;
  }
}
.dropdown-toggle::after {
  display: unset;
  margin-left: unset;
  vertical-align: unset;
  content: unset;
  border: none;
}

.carousel-caption {
  /* bottom: 50%;
  transform: translateY(50%);  */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.carousel-caption h4 {
  font-size: 2rem;
  text-transform: uppercase;
  display: inline-block;
  background: #00a8e8;
  padding: 15px;
}
.carousel-caption p {
  display: inline-block;
  padding: 15px;
  background: #0266b3;
  padding: 15px;
}

.carousel-indicators li {
  width: 10px;
  height: 10px;
  transform: rotateZ(45deg);
  background-color: #fff;
  border: 1px solid #0798d1;
  margin-right: 10px;
}
#carouselHome .carousel-control-prev,
#carouselHome .carousel-control-next {
  z-index: 1000;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  bottom: unset;
  width: auto;
  opacity: 0.9;
}

#carouselHome .carousel-control-prev-icon,
#carouselHome .carousel-control-next-icon {
  height: 25px;
  width: 25px;
  background-image: none;
  margin: 0 20px 0 20px;
  color: #00a8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  position: relative;
}
@media all and (min-width: 992px) {
  #carouselHome .carousel-control-prev-icon,
  #carouselHome .carousel-control-next-icon {
    height: 40px;
    width: 40px;
    font-size: 1.2rem;
  }
}

#carouselHome .carousel-control-prev-icon::before,
#carouselHome .carousel-control-next-icon::before {
  content: "";
  background-color: #fff;
  border: 1px solid #7ad7fc;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
  transform: rotateZ(45deg);
}

.animate__delay-05s {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.card {
  border-radius: 0;
}

.btn-plus {
  position: relative;
  width: 50px;
  height: 50px;
  display: inline-flex;
  color: #fff;
  background: transparent;
  z-index: 555;
  align-items: center;
  justify-content: center;
}
.btn-plus:hover {
  color: #fff;
}
.btn-plus::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: #00a8e8;
  z-index: -1;
  transform: rotateZ(45deg);
  transition: all 0.3s ease-in-out;
}
.btn-plus:hover::before {
  background: #0266b3;
}

.ps__thumb-y {
  background: #00a8e8;
}

.ps__rail-y.ps--clicking .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y:hover > .ps__thumb-y {
  background: #0266b3;
}

/* Works on Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #00a8e8 #eeeeee;
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 12px;
}

*::-webkit-scrollbar-track {
  background: #eeeeee;
}

*::-webkit-scrollbar-thumb {
  background-color: #00a8e8;
  border-radius: 20px;
  border: 3px solid #eeeeee;
}
