* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
}

*::-moz-selection {
  background-color: #000;
  color: #fff;
}

*::selection {
  background-color: #000;
  color: #fff;
}

*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background-color: #ccc;
}

*::-webkit-scrollbar-thumb {
  background: #00138E;
  border-radius: 8px;
}

*::-webkit-scrollbar-thumb:hover {
  background: #00138E;
}

/***************************** Global Style *****************************/
body {
  font-family: 'Nunito', sans-serif;
}

h1, h2, h3 {
  margin-bottom: 0;
}

h4, h5, h6 {
  margin-bottom: 0;
}

p {
  margin-bottom: 0;
}

a {
  color: #000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

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

a:focus {
  outline: 0;
}

ul {
  list-style-type: none;
  padding: 0;
}

button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

form .form-control:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 1px solid #000;
}

.scroll-top-btn {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: #00138E;
  color: #fff;
  text-align: center;
  line-height: 50px;
  position: fixed;
  bottom: 30px;
  right: 10px;
  z-index: 1000;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.scroll-top-btn:hover {
  background-color: #00138E;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  color: #fff;
}

.scroll-top-btn:hover i {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.scroll-top-btn i {
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

/***************************** start section header & navbar *****************************/
.navbar .navbar-brand {
  color: #fff;
  text-transform: capitalize;
  font-weight: 700;
  font-size: 30px;
}

.navbar .navbar-brand:hover {
  color: #fff;
}

.navbar .collapse .navbar-nav .nav-item .nav-link {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  padding: 0 0 0 50px;
}

.navbar .navbar-toggler {
  width: 20px;
  height: 20px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  position: relative;
}

.navbar .navbar-toggler.active .navbar-toggler-icon {
  -webkit-box-shadow: 0px 0px 0px grey;
          box-shadow: 0px 0px 0px grey;
  background: rgba(0, 0, 0, 0);
}

.navbar .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navbar .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.navbar .navbar-toggler .navbar-toggler-icon {
  width: 15px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navbar .navbar-toggler .navbar-toggler-icon::after, .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 2px;
  background: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -5px;
  right: 0px;
}

.navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 5px;
  right: 0px;
}

header {
  background: url(../images/header.png);
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

header .header-content .info {
  padding: 250px 0 50px 0;
}

header .header-content .info .type {
  text-transform: capitalize;
  font-weight: 400;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.5);
}

header .header-content .info .title {
  font-weight: 700;
  color: #fff;
  font-size: 48px;
  padding: 10px 0;
}

header .header-content .info .line {
  display: block;
  width: 125px;
  height: 2px;
  background-color: #ffffff;
  margin: 10px 0 20px 0;
}

header .header-content .info .text {
  font-weight: 400;
  font-size: 16px;
  color: #fff;
}

header .header-content .info .get {
  background-color: #00138E;
  border-radius: 8px;
  font-weight: 400;
  font-size: 16px;
  padding: 15px 25px;
  margin: 60px 0;
}

/***************************** end section header & navbar *****************************/
/***************************** start section best *****************************/
.best {
  padding: 100px 0;
}

.best .heading {
  text-align: center;
}

.best .heading .type {
  font-weight: 400;
  font-size: 20px;
  color: #00138E;
}

.best .heading .title {
  color: #000000;
  font-weight: 700;
  font-size: 35px;
}

.best .best-content {
  padding: 60px 0;
}

.best .best-content .info {
  text-align: center;
}

.best .best-content .info .images img {
  width: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.best .best-content .info .images img:hover {
  -webkit-animation: besticon 1.5s ease-in-out infinite both;
          animation: besticon 1.5s ease-in-out infinite both;
}

.best .best-content .info .title {
  font-weight: 700;
  font-size: 18px;
  text-transform: capitalize;
}

.best .best-content .info .text {
  font-weight: 400;
  font-size: 16px;
  padding: 20px 0;
  line-height: 1.4;
}

/***************************** end section best *****************************/
/***************************** start section package *****************************/
.package {
  padding: 20px 0 50px 0;
}

.package .package-content .images img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 1s linear;
  transition: all 1s linear;
}

.package .package-content .images img:hover {
  -webkit-transform: rotate(-7deg) scale(1.1);
          transform: rotate(-7deg) scale(1.1);
}

.package .package-content .title {
  font-weight: 700;
  font-size: 45px;
  color: #000;
}

.package .package-content .line {
  display: block;
  width: 100px;
  height: 3px;
  background-color: #00138E;
  margin: 30px 0;
}

.package .package-content .text {
  font-weight: 400;
  color: #444444;
  font-size: 17px;
  padding: 0 0 30px 0;
}

.package .package-content .notes p {
  font-weight: 400;
  font-size: 17px;
  color: #444444;
  padding-bottom: 20px;
}

.package .package-content .get {
  background-color: #00138E;
  border-radius: 8px;
  font-weight: 400;
  font-size: 16px;
  padding: 15px 26px;
  margin: 10px 0;
}

.package .package-content .get:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/***************************** end section package *****************************/
/***************************** start section work *****************************/
.work {
  background-color: #0C66DF;
  padding: 70px 0;
}

.work .work-heading {
  text-align: center;
}

.work .work-heading .type {
  color: #fff;
  font-weight: 400;
  font-size: 20px;
}

.work .work-heading .title {
  font-weight: 700;
  font-size: 35px;
  color: #fff;
}

.work .working-content {
  text-align: center;
  padding: 40px 90px 0 90px;
}

.work .working-content .info-arrow::after {
  position: absolute;
  content: "";
  background: url(../images/arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  height: 100%;
  width: 44%;
  right: -23%;
  top: 30%;
}

.work .working-content .info {
  position: relative;
}

.work .working-content .info .working-images {
  margin: auto;
  display: block;
  width: 120px;
  height: 120px;
  border-radius: 100%;
  background-color: rgba(33, 69, 211, 0.51);
  line-height: 120px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.work .working-content .info .working-images img {
  width: 50%;
}

.work .working-content .info .working-title {
  color: #fff;
  font-weight: 400;
  font-size: 21px;
  padding: 35px 0 0 0;
}

/***************************** end section work *****************************/
/***************************** start section pricing *****************************/
.pricing {
  background-color: #FAFAFA;
  padding: 70px 0;
  overflow: hidden;
}

.pricing .pricing-heading {
  text-align: center;
  padding-bottom: 70px;
}

.pricing .pricing-heading .type {
  color: #00138E;
  font-weight: 400;
  font-size: 18px;
}

.pricing .pricing-heading .title {
  color: #000;
  font-weight: 700;
  font-size: 35px;
  text-transform: capitalize;
}

.pricing .pricing-content {
  padding: 40px 0;
}

.pricing .pricing-content .card {
  width: 19rem !important;
  border: 0;
  border-radius: 4px;
  text-align: center;
  -webkit-transition: all 0.7s linear 0s;
  transition: all 0.7s linear 0s;
  padding: 17px 0;
}

.pricing .pricing-content .card:hover {
  -webkit-transform: translate(0px, -45px);
          transform: translate(0px, -45px);
  background-color: #0C57D5;
}

.pricing .pricing-content .card:hover .card-images {
  background-color: #fff;
  color: #0C57D5;
  border: 6px solid #0C57D5;
  line-height: 70px;
}

.pricing .pricing-content .card:hover .card-body .card-title {
  color: #fff;
}

.pricing .pricing-content .card:hover .card-body .info p {
  color: #fff;
}

.pricing .pricing-content .card:hover .card-body .buy {
  background-color: #fff;
  color: #00138E;
}

.pricing .pricing-content .card .card-images {
  background-color: #0C57D5;
  border-radius: 100%;
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  margin: auto;
  position: absolute;
  left: 50%;
  top: -20%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
}

.pricing .pricing-content .card .card-body .card-title {
  padding: 40px 0;
  color: #000000;
  font-weight: 700;
  font-size: 25px;
  margin-bottom: 0 !important;
  text-transform: capitalize;
}

.pricing .pricing-content .card .card-body .info {
  padding-bottom: 40px;
}

.pricing .pricing-content .card .card-body .info p {
  color: #444444;
  font-weight: 400;
  font-size: 15px;
}

.pricing .pricing-content .card .card-body .buy {
  background-color: #00138E;
  border-radius: 8px;
  font-weight: 700;
  padding: 12px 33px;
}

.pricing .pricing-content .card .card-body .buy:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/***************************** end section pricing *****************************/
/***************************** start section clients *****************************/
.clients {
  overflow: hidden;
  padding: 100px 0;
}

.clients .clients-content {
  text-align: center;
}

.clients .clients-content .type {
  color: #00138E;
  font-weight: 400;
  font-size: 18px;
}

.clients .clients-content .title {
  color: #000;
  font-weight: 700;
  font-size: 35px;
  text-transform: capitalize;
  padding: 7px 0 20px 0;
}

.clients .clients-content .text {
  color: #444444;
  font-weight: 400;
  width: 65%;
  margin: auto;
  padding: 20px 0;
}

.clients .clients-content .line {
  display: block;
  width: 170px;
  height: 1px;
  background-color: #C9C9C9;
  margin: auto;
}

.clients .clients-content .swiper-pagination {
  display: none;
}

.clients .clients-content .swiper-container {
  width: 100%;
  height: 100%;
  padding: 30px 0;
}

.clients .clients-content .swiper-wrapper {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.clients .clients-content .swiper-slide-active {
  opacity: 1 !important;
}

.clients .clients-content .swiper-slide {
  text-align: center;
  font-size: 18px;
  width: 36% !important;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: .3;
}

.clients .clients-content .swiper-slide .text-swip {
  text-align: left;
  padding: 0 10px;
}

.clients .clients-content .swiper-slide .text-swip .title {
  font-weight: 700;
  font-size: 17px;
  color: #00138E;
  text-transform: capitalize;
  padding: 0;
}

.clients .clients-content .swiper-slide .text-swip .type {
  color: #9E9E9E;
  font-weight: 400;
  font-size: 12px;
}

/***************************** end section clients *****************************/
/***************************** start section footer *****************************/
footer {
  background-color: #000A4B;
}

footer .footer-heading {
  padding: 30px 0;
}

footer .footer-heading a {
  color: #fff;
  text-transform: capitalize;
  font-weight: 700;
  font-size: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer .footer-heading a h5 {
  margin: auto 0;
}

footer .footer-heading .links-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  float: right;
}

footer .footer-heading .links-icon .icon {
  margin-left: 30px;
  text-align: center;
  width: 35px;
  height: 35px;
  font-size: 12px;
  line-height: 35px;
  border-radius: 100%;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: #fff;
}

footer .footer-heading .links-icon .icon:hover {
  background-color: #fff;
  color: #000A4B;
}

footer hr {
  background-color: rgba(255, 255, 255, 0.3);
  margin-top: 0;
  margin-bottom: 0;
}

footer .footer-content {
  padding: 70px 0 0 0;
}

footer .info {
  color: #fff;
}

footer .title {
  color: #fff;
  font-weight: 700;
  font-size: 26px;
}

footer .text-title {
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  padding: 15px 0 20px 0;
}

footer .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
}

footer .info .text p {
  font-weight: 400;
  padding: 0 30px;
  font-size: 14px;
}

footer .info-2 {
  padding: 0px 0 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
}

footer .info-2 .text p {
  padding: 0 10px;
  font-size: 14px;
}

footer .content {
  padding: 47px 0;
}

footer .content h5 {
  font-weight: 700;
  color: #fff;
  font-size: 23px;
  padding-bottom: 20px;
}

footer .content .links a {
  padding: 0px 0 20px 0;
  color: #fff;
  display: block;
  position: relative;
}

footer .content .links a h5 {
  font-weight: 700;
  font-size: 16px;
  padding: 0 20px;
}

footer .content .links a::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 100%;
  left: 0;
  top: 10px;
  background-color: #fff;
}

footer .content-email {
  padding: 47px 0;
}

footer .content-email h5 {
  font-weight: 700;
  color: #fff;
  font-size: 23px;
  padding-bottom: 20px;
}

footer .content-email .email {
  background-color: #000838;
  border: 0;
}

footer .content-email .email::-webkit-input-placeholder {
  color: #949494;
}

footer .content-email .email:-ms-input-placeholder {
  color: #949494;
}

footer .content-email .email::-ms-input-placeholder {
  color: #949494;
}

footer .content-email .email::placeholder {
  color: #949494;
}

footer .content-email .email:focus {
  border: 1px solid #fff;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

footer .content-email .text {
  background-color: #000838;
  border: 0;
  padding: 19px 0 80px 19px;
  margin: 15px 0;
}

footer .content-email .text::-webkit-input-placeholder {
  color: #949494;
}

footer .content-email .text:-ms-input-placeholder {
  color: #949494;
}

footer .content-email .text::-ms-input-placeholder {
  color: #949494;
}

footer .content-email .text::placeholder {
  color: #949494;
}

footer .content-email .text:focus {
  border: 1px solid #fff;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

footer .content-email .btn-primary:not(:disabled):not(.disabled):active {
  background-color: transparent;
  border: 1px solid #fff;
}

footer .content-email .btn {
  border-radius: 5.5px;
  background: transparent;
  border: 1px solid #fff;
  width: 100%;
  padding: 9px 0;
  margin: 7px 0 0 0 !important;
}

footer .content-email .btn:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

footer .copy {
  text-align: center;
  padding: 30px 0;
}

footer .copy .copy-text {
  color: #fff;
}

/***************************** end section footer *****************************/
@-webkit-keyframes besticon {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  28% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  70% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes besticon {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  28% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  70% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/*# sourceMappingURL=style.css.map */