@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
* {
  font-family: 'Poppins', sans-serif;
}
a {
  text-decoration: none;
  color: #0c4c8d;
}
.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #0d4a8d;
  --bs-btn-border-color: #0d4a8d;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0d4a8d;
  --bs-btn-hover-border-color: #0d4a8d;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0d4a8d;
  --bs-btn-active-border-color: #0d4c8d;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #0d4a8d;
  --bs-btn-disabled-border-color: #0d4a8d;
}
/*-------------------------------------------------------------------------------------
    Header
---------------------------------------------------------------------------------------*/
.body-header-adjust {
  margin-top: 86px;
}
#header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  padding: 10px 0;
  background: white;
  -webkit-box-shadow: 0 2px 10px #ccc;
  box-shadow: 0 2px 10px #ccc;
}

#header.sticky {
  position: fixed;
  width: 100%;
  -webkit-box-shadow: 0 2px 10px #ccc;
  box-shadow: 0 2px 10px #ccc;
  background-color: #fff;
  z-index: 999;
  padding: 14px 0;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.navbar-nav {
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.navbar-nav .nav-item .nav-link {
  font-weight: 700;
  font-size: 15px;
  padding: 0 11px;
  color: #0d4c8d;
  letter-spacing: 2px;
}

.nav-item .nav-link:hover,
.nav-item .nav-link.active,
.sticky .nav-item .nav-link {
  color: #0d4c8d;
}

.sticky .nav-item .nav-link.active,
.sticky .nav-item .nav-link:hover {
  color: #0d4a8d;
}
.sticky .buy-btn .nav-item .nav-link.active {
  color: #ffffff;
}
.navbar-nav.buy-btn .nav-link {
  background-color: #fdba36;
  color: #0d4a8d;
  padding: 10px 10px;
  border-radius: 30px;
  font-weight: 700;
}

.navbar-nav.buy-btn .nav-link:hover {
  background-color: #fdba36;
  color: #fff;
}

.sticky .navbar-nav.buy-btn a {
  background-color: #0d4a8d;
  color: #fff;
}

.sticky .navbar-nav.buy-btn .nav-link:hover {
  color: #fff;
}

.logo-scroll,
.sticky .logo {
  display: none;
}

.sticky .logo-scroll {
  display: block;
}
/* stroke */
.strokenav li a,
.strokenav li a:after,
.strokenav li a:before {
  transition: all 0.5s;
}
.strokenav .stroke li a {
  position: relative;
}
.strokenav .stroke li a:after {
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  content: '.';
  color: transparent;
  background: #0d4c8d;
  height: 2px;
}
.nav-item .nav-link.dropdown-toggle:after {
  background: none;
}
.strokenav .stroke li .dropdown-item:after {
  background: none;
}
.strokenav .stroke li a:hover:after {
  width: 100%;
}
.dropdown-item {
  font-weight: 600;
}
/*-------------------------------------------------------------------------------------
    Home Area
---------------------------------------------------------------------------------------*/

#home-area {
  background: #e8f3ff;
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: cover;
  /* height: 100vh; */
  height: 90vh;
  margin-top: 86px;
}

.caption-content {
  /* height: 100vh; */
  margin-top: 0%;
}

.caption-content h1 {
  color: #0d4c8d;
  font-weight: 800;
}

.caption-content p {
  color: #000000;
  margin: 20px 0 10px;
}

.caption-content a {
  background-color: #0c4c8d;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 5px;
  display: inline-block;
  font-weight: 600;
  margin: 40px 0 0;
}

.caption-content a:hover {
  background-color: #f39c12;
  color: #ffffff;
}

.caption-content a i {
  padding-right: 2px;
  font-size: 18px;
}

.caption-img {
  padding: 0 0 0;
}

/*-------------------------------------------------------------------------------------
    Home Slider
---------------------------------------------------------------------------------------*/

#home-area.slider {
}

.slide-single {
  height: 90vh;
}

.slide-single .caption-img img {
  max-width: 80%;

  margin: 0 auto;
  padding: 8% 0 0;
}

.home-slider .owl-dots {
  position: absolute;
  left: 35%;
  bottom: 80px;
  width: 35%;
  text-align: center;
}

.home-slider .owl-dot {
  display: inline-block;
  width: 15px;
  height: 6px;
  margin: 0 4px;
  background-color: #fff;
  border-radius: 2px;
  margin: 0 4px;
  border: 0;
  outline: 0;
}

.home-slider .owl-dot.active {
  width: 25px;
}

.owl-item.active .caption-content h1 {
  -webkit-animation: 1s 0.3s fadeInLeft both;
  animation: 1s 0.3s fadeInLeft both;
}

.owl-item.active .caption-content p {
  -webkit-animation: 1s 0.5s fadeInRight both;
  animation: 1s 0.5s fadeInRight both;
}

.owl-item.active .caption-content a {
  -webkit-animation: 1s 0.8s fadeInUp both;
  animation: 1s 0.8s fadeInUp both;
}
/*---------------------------
** Feature Area Start
---------------------------*/
.feature {
  position: relative;
}
.feature .section-title {
  margin-bottom: 47px;
}
.feature .left-feature .feature-box .icon {
  margin-left: 20px;
}
.feature .left-feature .feature-box .details {
  text-align: right;
}
.feature .right-feature .center-feature {
  text-align: center;
  justify-content: center;
}
.feature .right-feature .feature-box .icon {
  margin-right: 20px;
}
.feature .right-feature .feature-box .details {
  text-align: left;
}
.feature .feature-box {
  margin-bottom: 30px;
  background: #fff;
  display: flex;
  transition: all 0.3s ease-in;
  position: relative;
}
.feature .feature-box .icon-area {
  display: flex;
}
.feature .feature-box .icon-area .icon {
  align-self: center;
}
.feature .feature-box .icon {
  width: 70px;
  height: 70px;
  margin-right: 20px;
  text-align: center;
  line-height: 70px;
  font-size: 45px;
  border-radius: 50%;
  position: relative;
}
.feature .feature-box .icon i {
  background-image: linear-gradient(55deg, #0c4c8d 0%, #e8f3ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.feature .feature-box .details {
  flex: 1;
}
.feature .feature-box .details h4 {
  font-size: 20px;

  font-weight: 600;
  color: #242424;
}
.feature .feature-box .details .text {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 8px;
}
.feature .feature-box .feature-circle {
  opacity: 0;
  transition: all 0.3s ease-in;
  z-index: 95;
}
.feature .feature-box:hover .feature-circle {
  opacity: 1;
}
.feature .feature-box1 .feature-circle {
  position: absolute;
  right: -90px;
  top: 170px;
}
.feature .feature-box2 .feature-circle {
  position: absolute;
  right: -90px;
  top: 80px;
}
.feature .feature-box3 .feature-circle {
  position: absolute;
  right: -90px;
  top: -5px;
}
.feature .feature-box4 .feature-circle {
  position: absolute;
  left: -120px;
  right: auto;
  top: 110px;
}
.feature .feature-box5 .feature-circle {
  position: absolute;
  left: -100px;
  top: 80px;
}
.feature .feature-box6 .feature-circle {
  position: absolute;
  left: -130px;
  top: 50px;
}
/* ========general ========= */
section {
  padding: 80px 0;
}
.section-heading {
  margin: 0 0 60px;
}
.section-heading h2 {
  font-weight: 800;
}
.homeproductitems img {
  width: 90%;
}
.homeproductitems ul {
  list-style-type: none;
}

.homeproductitems ul li:before {
  content: '\2014';
  position: absolute;
  margin-left: -20px;
}
.homeproductitems .priceshow {
  font-weight: bold;
  color: #0c4c8d;
  font-size: 27px;
}
.themebtn {
  background-color: #0c4c8d;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 5px;
  display: inline-block;
  font-weight: 600;
  margin-top: 20px;
  transition: all 0.5s;
  border: none;
}
.themebtn.btn-warning {
  background-color: #e8f3ff;
  color: #000000;
}
.themebtn.btn-warning:hover {
  background-color: #c1ddf9;
  color: #000000;
}
.btn-offer .percentage {
  font-size: 30px;
}
.btn-offer .st {
  text-decoration: line-through;
  font-size: 28px;
}
.btn-offer .rp {
  font-size: 32px;
}
.themebtn:hover {
  background-color: #fdba36;
  color: #fff;
}
.greybg {
  background: #fafafa;
}
.platforms li img {
  height: 70px;
}
.platforms ul {
  display: inline-block;
}
.platforms li {
  float: left;
  margin: 20px 28px;
  list-style: none;
}
/* latest post */

.latest-project .owl-item div {
  position: relative;

  /* box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 1); */
}
.latest-project {
  height: 350px;
}

.latest-project .card img {
  max-height: 280px;
  margin-bottom: 10px;
}
.latest-project .card-body {
  box-shadow: var(--bs-box-shadow-sm) !important;
  text-align: center;
}
.latest-project a {
  color: #000000;
}

/*-------------------------------------------------------------------------------------
    Call to action
---------------------------------------------------------------------------------------*/
#call-to-action {
  padding: 100px 0;
  background-color: #e8f3ff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  /* color: white; */
  background-attachment: fixed;
}
/*-------------------------------------------------------------------------------------
    Testimonial Area
---------------------------------------------------------------------------------------*/

#testimonial-area {
  padding: 90px 0 135px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#testimonial-area .section-heading h2 {
}

.client-info img {
  max-width: 80px;
  border-radius: 50%;
  margin: 0 auto 10px;
}

.client-info h4 {
  font-weight: 600;
  margin: 0;
}

#testimonial-area .section-heading p,
.client-info p {
}

.client-comment p {
  font-style: italic;
}

.client-comment i {
  color: #f39c12;
}

.testimonial-carousel .owl-dots {
  position: absolute;
  left: 0;
  bottom: -40px;
  width: 100%;
  text-align: center;
}

.testimonial-carousel .owl-dot {
  display: inline-block;
  width: 15px;
  height: 6px;
  margin: 0 4px;
  background-color: #0c4c8d;
  border-radius: 2px;
  margin: 0 4px;
  border: 0;
  outline: 0;
}

.testimonial-carousel .owl-dot.active {
  width: 25px;
}
#specifications-area {
  padding: 90px 0 65px;
}

#for-business {
  padding: 90px 0 85px;
}
footer {
  background: #0c4c8d;
  text-align: center;
}
footer .footer-social-icons ul li {
  display: inline-block;
}

footer .footer-social-icons ul li a {
  display: block;
  background-color: #0d4a8d;
  color: #fff;
  font-size: 30px;
  line-height: 45px;
  margin: 0 10px;
}

footer .footer-social-icons ul li a:hover {
  color: #fdba36;
}
.contactfooter {
  color: #ffffff;
}
.contactfooter i {
  font-size: 20px;
  margin-right: 10px;
}
.footerbottom {
  background: #e8f3ff;
  padding: 16px 0 1px;
  margin-top: 30px;
}
.currencyBtn {
  top: -6px;
}
.tech-specs-row .tech-spec {
  padding: 25px 15px;
  border-top: 1px solid;
  min-height: 150px;
}
.tech-specs-row .tech-spec {
  border-top-color: #ededed;
}

/*-------------------------------------------------------------------------------------
    Product Area
---------------------------------------------------------------------------------------*/
.product-carousel .owl-dots {
  position: absolute;
  left: 0;
  bottom: -40px;
  width: 100%;
  text-align: center;
}

.product-carousel .owl-dot {
  display: inline-block;
  width: 15px;
  height: 6px;
  margin: 0 4px;
  background-color: #fff;
  border-radius: 2px;
  margin: 0 4px;
  border: 0;
  outline: 0;
}

.product-carousel .owl-dot.active {
  width: 25px;
}
.buysource {
  display: inline-block;
}
.buysource li {
  float: left;
  margin-right: 15px;
  margin-bottom: 15px;
  list-style: none;
}
.buysource li::before {
  content: '' !important;
}
.buysource li img {
  height: 36px;
}

.platforms ul {
  display: inline-block;
}
.platforms li {
  float: left;
  margin: 20px 28px;
}
.platforms li img {
  height: 70px;
}
/*-------------------------------------------------------------------------------------
    Core Feature Area
---------------------------------------------------------------------------------------*/

#core-feature-area {
  padding: 90px 0 70px;
}

.core-feat-content {
  padding-top: 20px;
}

.core-feat-single {
  background-color: #fff;
  padding: 20px 20px 8px;
  border-radius: 10px;
  border: 1px solid #eff0f1;
  margin: 0 0 30px;
  -webkit-box-shadow: 0 5px 15px #e6f0fa;
  box-shadow: 0 5px 15px #e6f0fa;
}

.core-feat-single i {
  color: #0d4a8d;
  font-size: 20px;
  display: inline-block;
}

.core-feat-single h4 {
  font-weight: 600;
  margin-bottom: 5px;
}

.core-feat-img {
  background-image: url(../images/circle.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: center;
}

.core-feat-img img {
  max-width: 300px;
}
/* cart starts here */
.totalprice,
.totalprice a {
  font-size: 30px;
}
#promoMsg {
  color: #c78e1e;
}
.cardSelector {
  padding: 10px 10px;
  margin: 10px 0;
  background: #eeeeee;
  border-radius: 5px;
}
.cardSelector.form-check .form-check-input {
  margin-left: 0px;
}
.cardSelector.form-check label {
  display: block;
  margin-left: 30px;
}
#qrMainContainer {
  position: relative;
  /* top: -130px; */
  z-index: 99;
}

/* cart ends here */
.currencySwitcherBtn {
  margin-top: -6px;
}
.currencySwitcherBtn select {
  border: none;
  color: #0c4c8d;
  font-weight: bold;
}
.buynowheader {
  background: #fafafa;
  padding: 136px 0px 66px;
  background: url('../images/buynowbanner.jpg') no-repeat center center;
}
.earlybird {
  position: relative;
}

/* common */
.ribbon {
  width: 150px;
  height: 150px;
  overflow: hidden;
  position: absolute;
}

.ribbon::before,
.ribbon::after {
  position: absolute;
  content: '';
  display: block;
  border: 5px solid #a97a37;
}

.ribbon span {
  position: absolute;
  display: block;
  width: 252px;
  padding: 8px 0;
  background: linear-gradient(#f0ad4e 0%, #ec971f 100%);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  color: #fff;
  font: 700 13px/1 'Lato', sans-serif;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  text-align: center;
}

/* top left*/
.ribbon-top-left {
  top: -10px;
  left: -10px;
}

.ribbon-top-left::before,
.ribbon-top-left::after {
  border-top-color: transparent;
  border-left-color: transparent;
}

.ribbon-top-left::before {
  top: 0;
  right: 10px;
}

.ribbon-top-left::after {
  bottom: 10px;
  left: 0;
}

.ribbon-top-left span {
  right: -28px;
  top: 37px;
  transform: rotate(-45deg);
}
.ribbon-top-left span small {
  font-size: 10.4px;
}
.highlightmenu {
  background: #fdba36;
  padding: 5px;
  border-radius: 5px;
  margin-top: -5px;
  margin-right: 5px;
}
/*-------------------------------------------------------------------------------------
   Contact Area
---------------------------------------------------------------------------------------*/

#contact-area {
  padding: 90px 0 85px;
  background-image: url(../images/map.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #fafafa;
}

.contact-info {
  padding: 0 0 0 5%;
}

.contact-info-single {
  margin: 0 0 30px;
  overflow: hidden;
}

.contact-info-single .icon {
  width: 25%;
  float: left;
  margin-right: 10px;
  text-align: center;
}

.contact-info-single .content {
  width: 70%;
  float: left;
}

.contact-info-single i {
  font-size: 30px;
  color: #0d4a8d;
  border: 1.2px solid #0d4a8d;
  border-radius: 4px;
  width: 55px;
  height: 55px;
  display: inline-block;
  line-height: 55px;
}

.contact-info-single p {
  font-size: 15px;
  color: #555;
}

.contact-form input,
.contact-form select {
  height: 50px;
  border: 1px solid #e6f0fa;
  font-size: 16px;
}

.contact-form textarea {
  border: 1px solid #e6f0fa;
  padding-top: 12px;
  font-size: 16px;
}

.contact-form button {
  background-color: #0d4a8d;
  border: 0;
  color: #fff;
  padding: 10px 30px;
  border-radius: 4px;
  outline: 0;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #fdba36;
}

.help-block.with-errors li {
  color: #ff0000;
  margin: 4px 0 0;
}

.messages {
  margin: 15px 0 0;
}

.messages button {
  color: #000;
  padding: 0;
  background-color: transparent;
}

.messages button:hover {
  background-color: transparent;
}
.homeproductitems ul li.nobeforeli:before {
  content: none;
}
@media (min-width: 1140px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 1140px;
  }
}
@media (min-width: 1320px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1320px;
  }
}
.bannerheading {
  color: #0d4c8d;
  font-weight: 800;
}
.whitebgtext {
  background-color: #ffffff !important;
  color: #0d4c8d !important;
}
.cta-banner {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-banner h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}
.cta-banner h3 {
  color: #0c4c8d;
}
.cta-banner p {
  font-size: 18px;
  margin-bottom: 25px;
}

.cta-banner .cta-button {
  background-color: #3b82f6;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-banner .cta-button:hover {
  background-color: #2563eb;
}
