/* 1. Theme default css */
@import url("https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700|Rubik:400,500,700");

body {
  font-family: "Rubik", sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #02367b;
}

.img {
  max-width: 100%;
  transition: all 0.3s ease-out 0s;
}

a,
.button {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover,
.footer -menu li a:hover {
  color: #4c80fa;
  text-decoration: none;
}

a,
button {
  color: #1696e7;
  outline: medium none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  color: #02367b;
  margin-top: 0px;
  font-style: normal;
  font-weight: 400;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 40px;
  font-weight: 500;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

ul {
  margin: 0px;
  padding: 0px;
}

li {
  list-style: disc;
  padding: 0 0 10px 0;
  margin: 0 0 0 25px;
  color: #758799;
}

p {
  font-size: 16px;
  font-weight: normal;
  line-height: 28px;
  color: #758799;
  margin-bottom: 15px;
}

hr {
  border-bottom: 1px solid #eceff8;
  border-top: 0 none;
  margin: 0;
  padding: 0;
}

.btn {
  -moz-user-select: none;
  background: #1696e7 none repeat scroll 0 0;
  border: medium none;
  border-radius: 2px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 0;
  padding: 13px 25px;
  text-align: center;
  text-transform: uppercase;
  touch-action: manipulation;
  transition: all 0.3s ease 0s;
  vertical-align: middle;
  white-space: nowrap;
}

.btn.btn-black {
  background: #303b41;
}

.btn.btn-black:hover {
  background: #1a1a1a;
}

.btn:hover {
  background: #106fab;
  color: #fff;
}

.btn.btn-large {
  padding: 10px 25px;
}

.btn-lg {
  font-weight: 700;
  padding: 13px 31px;
}

.btn.white-btn:hover {
  border-color: #ddd;
  color: #ddd;
}

.btn.btn-base.btn-link {
  background: transparent none repeat scroll 0 0;
  border: 0 none;
  color: #1696e7;
  padding: 0;
  text-decoration: none;
}

.btn.btn-base.btn-link:hover {
  color: #106fab;
}

.theme-bg {
  background: #1696e7;
}

.bg-white {
  background-color: #ffffff;
}

.breadcrumb > .active {
  color: #888;
}

.owl-carousel .owl-nav div {
  background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
  height: 40px;
  left: 20px;
  line-height: 40px;
  opacity: 0;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease 0s;
  visibility: hidden;
  width: 40px;
}

.owl-carousel .owl-nav div.owl-next {
  left: auto;
  right: 20px;
}

.owl-carousel:hover .owl-nav div {
  opacity: 1;
  visibility: visible;
}

.owl-carousel .owl-nav div:hover {
  background: #2b96cc;
  color: #fff;
}

/* header */
.header-menu ul li {
  display: inline-block;
  margin: 0 15px;
}

.header-menu {
  text-align: center;
}

.header-menu ul li a {
  color: #fff;
  position: relative;
}

.header-menu ul li a::before {
  content: "";
  width: 0;
  height: 1px;
  background: #fff;
  position: absolute;
  left: auto;
  right: 0;
  bottom: -4px;
  opacity: 0;
  transition: all 0.3s linear;
}

.header-menu ul li a:hover::before,
.header-menu ul li.active a::before {
  opacity: 1;
  width: 100%;
  left: 0;
  right: auto;
  transition: all 0.2s linear;
}

.logo {
  margin-top: 4px;
}

.logo img {
  max-width: 200px;
  max-height: 60px;
}

.header-scene {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 99;
  padding: 20px 10px;
}

.contact-link {
  margin-top: 4px;
}

.contact-link a {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  border: 1px solid transparent;
  line-height: 1;
  border-radius: 0;
  transition: 0.3s;
  background: #fff;
  padding: 16px 20px;
  text-transform: uppercase;
  font-size: 13px;
  color: #222222;
  letter-spacing: 2px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.07);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  border-radius: 5px;
}

.contact-link a:hover {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
}

.sticky-bar {
  position: fixed;
  background: #02367b;
  padding-top: 10px;
  padding-bottom: 10px;
  z-index: 9999;
  -webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

/* intro */
.page-title-scene {
  padding-top: 100px;
  padding-bottom: 100px;
  background-size: cover;
  background-position: center center;
  position: relative;
  min-height: 440px;
  background-image: linear-gradient(
      90deg,
      rgba(2, 54, 123, 0.3) 0%,
      rgba(0, 108, 165, 0.3) 50%
    ),
    url(../images/mockup-image.jpg);
}

.intro-wrapper h4 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.title-scene {
  padding: 150px 0;
}

.intro-wrapper h2 {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.4;
  padding: 0 0px;
}

.intro-wrapper p {
  margin: 0;
}

.content-wrapper > h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.content-wrapper > h4 {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.content-wrapper > h4 span {
  color: #4c80fa;
}

.intro-wrapper p {
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 35px;
}

.smoth-scroll {
  background: #fff;
  color: #222;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 20px 45px;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 5px;
}

.smoth-scroll:hover,
.smoth-scroll:focus {
  background: #02367b;
  color: #fff;
}

/* demo */
.content {
  padding: 50px 0;
}

.content-wrapper {
  margin-bottom: 60px;
}

.content-thumb {
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  position: relative;
}

.content-thumb:hover {
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.15);
}

.content-thumb > a {
  display: block;
  overflow: hidden;
  position: relative;
}

.content-thumb > a::before {
  background: #4c80fa;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 0.3s;
  z-index: 1;
}

.content-wrapper:hover .content-thumb > a::before {
  opacity: 0.9;
}

.content-wrapper:hover .content-thumb > a img {
  transform: scale(1.05);
}

.content-thumb a > img {
  width: 100%;
  transition: 0.3s;
}

.content-thumb img {
  max-width: 100%;
}

.content-thumb span {
  -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-50%);
  padding: 20px 30px;
  background: #fff;
  color: #222;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  width: 215px;
  right: 0;
  margin: auto;
  border-radius: 30px;
  z-index: 2;
}

.content-thumb:hover span {
  visibility: visible;
  opacity: 1;
}

.content-thumb h3 {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  color: #ff4646;
  transition: all 0.3s ease 0s;
  border-radius: 4px;
  font-size: 24px;
  font-weight: 600;
}

.content-title {
  margin: 10px 0 30px 0;
}

.content-title h4 {
  font-size: 20px;
  font-weight: 500;
  text-align: left;
}

/* features */
.bakix-features {
  border-radius: 5px;
  -webkit-box-shadow: 0 2px 40px rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.08);
  padding: 45px 15px;
  text-align: center;
}

.bakix-features img {
  border-radius: 5px;
  margin-bottom: 15px;
  width: 70px;
}

.bakix-features h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  text-transform: capitalize;
}

/* footer */
.footer-scene {
  background-size: cover;
  background-position: center right;
  background: #1a2658;
  padding: 50px 0;
}

.footer-text h2 {
  color: #fff;
  font-size: 50px;
  font-weight: 600;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.footer-text h2 i {
  font-family: "Playfair Display", Georgia, serif;
}

.footer-text p {
  color: #fff;
  margin-bottom: 30px;
  font-size: 20px;
}

.footer-text a {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  border: 1px solid transparent;
  line-height: 1;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  padding: 16px 20px;
  text-transform: uppercase;
  font-size: 12px;
  color: #fff;
  letter-spacing: 2px;
  border: 2px solid #fff;
  border-radius: 4px;
}

.footer-text a:hover {
  background: #4c80fa;
  color: #ffffff;
  border-color: #4c80fa;
}

#scrollUp {
  background: #02367b;
  border: 1px solid #04bade;
  height: 60px;
  width: 60px;
  right: 50px;
  bottom: 77px;
  color: #fff;
  font-size: 20px;
  text-align: center;
  border-radius: 50%;
  font-size: 20px;
  line-height: 59px;
}

#scrollUp:hover {
  background: #265299;
}

.career {
  background: #3333ab;
  background: linear-gradient(
    90deg,
    rgba(51, 51, 171, 1) 35%,
    rgba(0, 157, 255, 1) 100%
  );
  padding: 90px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

a.btn-outline {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  border: 1px solid transparent;
  line-height: 1;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  padding: 16px 20px;
  text-transform: uppercase;
  font-size: 12px;
  color: #fff;
  letter-spacing: 2px;
  border: 2px solid #fff;
  border-radius: 4px;
}

a.btn-outline:hover {
  color: #ffffff;
  border-color: #babaef;
  background: rgba(186, 186, 239, 0.2);
}
ul.lists {
  text-align: left;
}

ul.lists li {
  margin: 0 0 0 1rem;
}

.owl-theme .custom-nav {
  position: absolute;
  top: 13%;
  left: 0;
  right: 0;
}

.owl-prev,
.owl-next {
  position: absolute;
  height: 100px;
  color: inherit;
  background: none;
  border: none;
  z-index: 100;
}

.owl-prev i,
.owl-next i {
  font-size: 2.5rem;
  color: #4c80fa;
}

.owl-prev {
  left: -40px;
}

.owl-next {
  right: -40px;
}

.owl-theme a h5 {
  transition: all 0.3s ease-out 0s;
}
.owl-theme a:hover h5 {
  color: #4c80fa;
}


