/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@property --progress {
  syntax: '<integer>';
  inherits: true;
  initial-value: 0;
}
@keyframes load {
  to {
    --progress: var(--value)
  }
}
@keyframes background_animation {
  from {
    background-size: 100%;
  }
  to {
    background-size: 110%;
  }
}
@keyframes ripple {
  from {
    opacity: 1;
    transform: scale3d(1, 1, 1);
    transform-origin: center;
    border-width: 0px;
  }
  to {
    opacity: 0;
    transform: scale3d(1.7, 1.7, 1.8);
    transform-origin: center;
    border-width: 13px;
  }
}
:root {
  --dark-color: #102535;
  --light-color: #fff;
  --secondary-color: #151515;
  --text-color: #000000;
  --gray-color: #adadad;
  --accent-color: #006AB8;
  --font-1: "Raleway", sans-serif;
  --font-2: "Poppins", sans-serif;
  --font-3: "Montserrat", serif;
}
.theme-btn {
  font-family: var(--font-1);
  padding: 13px 60px;
  background: #ffffff;
  color: #102535;
  border-radius: 0px;
  border: none;
  line-height: 1;
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  text-align: center;
  display: inline-block;
}
.theme-btn:hover {
  background-color: #102535;
  color: #fff;
  text-decoration: none;
}
body {
  font-family: var(--font-2);
  color: var(--text-color);
  font-size: 14px;
  background: #ffffff;
  line-height: 1;
  font-weight: normal;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-3);
}
h1 {
  font-size: 50px;
}
h2 {
  font-size: 44px;
}
h3 {
  font-size: 30px
}
h4 {
  font-size: 24px;
}
h5 {
  font-size: 18px;
}
h6 {
  font-size: 16px;
}
span, button, a {
  font-size: 14px;
}
p {
  font-family: var(--font-2);
  font-size: 14px;
  font-weight: normal;
  line-height: normal;
}
ul {
  list-style: none;
}
ul li.col {
  display: flex;
  align-items: center;
}
ul li a {
  font-size: 15px;
}
button {
  padding-inline: 1rem;
  padding-block: 0.5rem;
  text-decoration: none;
  transition: all 0.5s;
}
.hover-transform:hover {
  transform: translateY(-10px);
}
button:hover {
  color: black;
}
a {
  text-decoration: none;
}
.w-max-content {
  width: max-content !important;
}
.banner-heading {
  font-size: 5.5rem;
}
.font-1 {
  font-family: var(--font-1);
}
.font-2 {
  font-family: var(--font-2);
}
.font-3 {
  font-family: var(--font-3);
}
.ls-2 {
  letter-spacing: 2px;
}
.fs-7 {
  font-size: 0.8rem !important;
}
.fw-black {
  font-weight: 900 !important;
}
.video-e119 {
  width: 60%;
  margin-bottom: -3rem;
  margin-left: -3rem;
}
.form-group {
  margin-bottom: 1rem;
}
.form button[type="submit"] {
  background: #006AB8;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  outline: none;
  border: none;
  border-radius: 0;
  text-transform: none;
  display: block;
  height: 40px;
}
.form button[type="submit"]:hover {
  background: #102535;
  border: none;
}
.form input, .form textarea, .form select {
  background-color: transparent;
  padding: 1em;
  border-color: black;
  border-radius: 4px;
  color: black;
  font-size: small;
  appearance: auto;
}
.form input:focus, .form textarea:focus, .form select:focus {
  box-shadow: none;
  border: solid 1px var(--accent-color);
  background-color: transparent;
  color: black;
}
.form input::placeholder, .form textarea::placeholder {
  color: var(--gray-color);
  font-family: var(--font-2);
  font-size: small;
}
.form .form-select {
  color: #131313;
}
.form-check-input:checked[type=checkbox] {
  --bs-form-check-bg-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="blue" class="bi bi-check-lg" viewBox="0 0 16 16"><path d="M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425a.247.247 0 0 1 .02-.022Z"/></svg>');
}
.form input.form-check-input {
  background-color: transparent;
  border: 1px solid gray;
}
.form input.form-check-input:checked {
  border: 1px solid blue;
  color: blue;
}
.form-control.bg-light {
  color: #3a3a3a;
}
.form-control:focus {
  box-shadow: none;
}
.submit_form-subscribe {
  padding-inline: 2rem;
  padding-block: 0.7rem;
  text-decoration: none;
  transition: all 0.5s;
  color: white;
  background-color: var(--accent-color-1);
  border-radius: 5px;
}
.submit_form-subscribe:hover {
  background-color: var(--dark-bg);
  color: white;
  filter: none;
}
.maps {
  width: 100%;
  height: 480px;
  transition: filter 0.5s;
  display: block;
  filter: grayscale();
}
.maps:hover {
  filter: none;
}
.header {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 99;
}
.header .navbar {
  background: #fff;
  margin: 30px auto;
  border-radius: 50px;
  max-width: 1240px;
  padding: 15px 30px;
}
.header .navbar .theme-btn {
  margin: 0px;
  background-color: #257ec0;
  padding: 10px 40px;
  color: #fff;
  border-radius: 50px;
  margin-left: 2rem;
}
.header .navbar .theme-btn:hover {
  background-color: #102535;
}
header.sticky .navbar {
  margin: 0 auto;
  border-radius: 0px;
}
header.sticky {
  position: fixed;
  width: 100%;
  z-index: 10;
  background: #fff;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
}
.head-phn {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  margin-left: 30px;
  line-height: 1.3;
  border-left: 2px solid #ddd;
  padding-left: 15px;
}
.head-phn i {
  display: inline-block;
  font-size: 30px;
  font-weight: 600;
  vertical-align: top;
  margin-right: 10px;
}
/* Hero style */
.hero {
      position: relative;
      height: 100vh;
      width: 100%;
      overflow: hidden;
    }

    .hero video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      z-index: -1;
      transform: translate(-50%, -50%);
      object-fit: cover;
    }

    .hero-content {
      position: absolute;
      top: 40%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: white;
      z-index: 1;
    }


    
/*.hero {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  height: 100vh;
  z-index: 1;
}*/
.hero .caption {
  padding-top: 5rem;
}
.hero .caption h1 {
  font-family: var(--font-3);
  font-weight: 700;
  font-size: 48px;
  color: var(--accent-color);
  text-transform: uppercase;
  line-height: 1;
}
.hero .caption h3 {
  font-weight: 400;
  color: var(--text-color);
  line-height: 1;
}
.hero .caption p {
  color: var(--text-color);
  font-size: 16px;
  font-weight: 400;
}
/* Sub banner */
.sub-banner {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 400px;
  z-index: 1;
}
.sub-banner .caption {
  padding-top: 20%;
}
.sub-banner .caption h3 {
  font-weight: 600;
  text-transform: uppercase;
  color: var(--light-color);
  line-height: 1;
}
.sub-banner-2 {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 270px;
  z-index: 1;
}
.sub-banner-2 .caption {
  padding-top: 15%;
}
.sub-banner-2 .caption h3 {
  font-weight: 600;
  text-transform: uppercase;
  color: var(--light-color);
  line-height: 1;
}
.sub-banner-3 {
  position: relative;
  overflow: hidden;
  background-color: #102535;
  width: 100%;
  height: 132px;
  z-index: 1;
}
/* Intro style */
.homeabout-sec {
  position: relative;
}
.homeabout-sec .heading-title h3, .offer-sec .heading-title h3 {
  text-transform: uppercase;
  margin: 0;
}
.homeabout-sec .theme-btn {
  background: #102535;
  color: #fff;
	margin-top: 30px;
}
.homeabout-sec .theme-btn:hover {
  background: #257ec0;
}
/* Offering style */
.offer-sec {
  background-color: #f6f6f6;
}
.navbar-nav {
  text-align: center;
}
.navbar-nav .nav-link {
  border-bottom: 2px solid transparent;
  font-size: 1rem;
  font-family: var(--font-2);
  padding-block: 1.2rem;
  color: #000000;
  font-weight: 500;
}
.navbar-nav .nav-link:hover {
  color: #006ab8;
}
.navbar-nav .nav-link.active {
  color: #006ab8;
}
.navbar-nav .nav-link:focus {
  color: #006ab8;
}
.navbar-nav .nav-link {
  position: relative;
}
.navbar-nav .nav-link.active::after {
  opacity: 1;
  content: "";
  width: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  height: 2px;
  background: #29abe2;
  position: absolute;
  bottom: 10px;
}
.navbar-toggler {
  border: none;
  color: var(--accent-color);
}
.navbar-toggler:focus {
  box-shadow: none;
  background-color: transparent;
  color: var(--accent-color);
}
.dropdown-menu {
  background-color: white;
  border-radius: 0;
  border: none;
  padding: 0;
  width: 200px;
  -webkit-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.3);
  text-align: center;
}
.dropdown-item {
  padding-block: 0.75rem;
  color: var(--dark-color);
  font-family: var(--font-2);
  font-size: 1rem;
  font-weight: 500;
  padding-inline: 0.75rem;
}
.dropdown-item.active {
  color: var(--accent-color);
  background-color: white;
}
.dropdown-item:hover {
  background-color: var(--accent-color);
  color: white;
}
.dropdown-item:focus {
  color: var(--accent-color);
}
.dropdown-toggle::after {
  border-top: 0.3em solid var(--accent-color);
  vertical-align: 0.1em;
}
.section {
  padding: 3em 0em;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.heading-title {
  margin-bottom: 1rem;
}
.heading-title h1, .heading-title h2, .heading-title h3, .heading-title h4, .heading-title h5, .heading-title h6 {
  color: var(--accent-color);
  font-weight: 700;
}
/*.r-container {
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
}*/
.container {
  max-width: 1240px;
}
.bg-dark-color {
  background-color: var(--dark-color);
}
.bg-light-color {
  background-color: var(--light-color);
}
.bg-secondary-color {
  background-color: var(--secondary-color);
}
.bg-accent-color {
  background-color: var(--accent-color);
}
.image-overlay {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: #102535;
  opacity: 0.7;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
  z-index: -1;
}
.image-overlay-gradient {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: transparent;
  background-image: linear-gradient(0deg, var(--accent-color) 2%, #00000027 69%);
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
  opacity: 0.655;
}
.overlay {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: #0b1f23;
  opacity: 0.5;
  z-index: -1;
}
.social-container {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.social-item {
  font-size: 24px;
  color: #fff;
  display: inline-block;
}
.social-item:hover {
  text-decoration: underline;
  color: #257ec0;
}
/* product */
.product-sec {
  position: relative;
}
.grid-product-sec {
  position: relative;
}
.grid-product-sec .heading-title h3 {
  text-transform: uppercase;
}
.grid-product-sec .heading-title hr {
  border-width: 1px;
  border-color: #dbdbdb;
  opacity: 1;
}
.grid-product-sec .card {
  background: #ffffff;
  padding: 15px;
  display: block;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
  border: none;
}
.grid-product-sec .card img {
  height: 130px;
    object-fit: cover;
    max-height: 130px;
    margin: 0 auto;
    max-width: 260px;
    width: 100%;
}
.grid-product-sec .card h4 {
font-weight: 600;
    font-size: 18px;
    color: var(--accent-color);
    line-height: initial;
    margin: 15px 0;
    height: 44px;
    overflow: hidden;
}
.grid-product-sec .card p {
  margin-bottom: 0px;
	font-size: 12px;
    margin-top: 15px;
    overflow: hidden;
    height: 54px;
}
.grid-product-sec .card .theme-btn {
  background-color: #006AB8;
  border-radius: 50px;
  font-size: 10px;
  color: #ffffff;
  padding: 10px 45px;
  display: inline-block;
  margin: 20px auto;
}
.grid-product-sec .card .theme-btn:hover {
  background-color: #102535;
}
.grid-product-sec .card .bottom-block {
  display: flex;
  justify-content: space-between;
  border-top: 1px #DBDBDB solid;
  padding-top: 15px;
  margin-top: 3rem;
}
.grid-product-sec .card .bottom-block .know-more {
  font-size: 14px;
  color: #102535;
  text-decoration: underline;
  font-weight: 700;
}
.grid-product-sec .card .bottom-block .book-mark {
  font-size: 16px;
  color: #102535;
  font-weight: 400;
}
.grid-product-sec .card .bottom-block .know-more:hover, .grid-product-sec .card .bottom-block .book-mark:hover {
  color: #006AB8;
  text-decoration: none;
}
.tablink-wrap {
  background-color: #257ec0;
  padding: 30px 0px;
}
.tablink-wrap .heading-title h3 {
  color: #fff;
  text-transform: uppercase;
}
.tabcon-wrap {
  background-color: #102535;
  padding: 50px 0px;
}
.tabcon-wrap .con-block {}
.tabcon-wrap .con-block p {
  color: var(--light-color);
}
.tabcon-wrap .con-block .theme-btn {
  border: 2px #fff solid;
  color: #fff;
  background-color: transparent;
  padding: 7px 40px;
}
.tabcon-wrap .con-block .theme-btn:hover {
  background-color: #257ec0;
  border-color: #257ec0;
}
.tabcon-wrap .intro-block {
  margin-bottom: 40px;
  text-align: center;
}
.tabcon-wrap .intro-block p {
  color: var(--light-color);
}
.product-item {
  height: calc(100% - 30px);
  margin-bottom: 30px;
}
.product-featured-image {
  margin-bottom: 20px;
}
.product-featured-image img {
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}
.product-item-body {}
.product-item-content {
  margin-bottom: 15px;
}
.product-item-content h2 {
  color: var(--light-color);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4em;
}
.product-item-content p {
  color: var(--light-color);
}
.product-item-btn {}
.product-item-btn .theme-btn {
  background-color: transparent;
  border: 2px #fff solid;
  color: var(--light-color);
}
.product-item-btn .theme-btn:hover {
  background-color: #006AB8;
  border: 2px #006AB8 solid;
}
.viewall-btn {
  display: flex;
  justify-content: center;
  padding: 15%;
  cursor: pointer;
}
.viewall-btn img {
  -webkit-transition: transform 0.5s ease-in-out, filter 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, filter 0.5s ease-in-out;
}
.viewall-btn:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.user-wrap {
  display: flex;
  margin-left: 50px;
}
.user-wrap .user-name a {
  font-weight: 600;
  line-height: initial;
}
.user-wrap .user-thum {
  margin-left: 10px;
}
/* Our Work */
.our-work {
  padding: 3em 0em;
  position: relative;
  z-index: 1;
}
.our-work {
  /*position: relative;
  padding: 0 !important;
  background-color: #eaeaea;
  z-index: 1;
  margin: 6em 0;*/
}
/*.our-work:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 24%;
  height: 700px;
  background: #f6f6f6;
  z-index: -1;
}*/
.work-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px #ddd solid;
  padding-bottom: 30px;
}
.work-head .heading-title, .work-head .heading-title p {
  margin: 0;
}
.work-head .heading-title h3 {
  margin: 0;
  font-weight: 600;
}
.search-field {
  width: 590px;
  display: flex;
  height: 48px;
}
.search-field input {
  border-color: #000000;
  border-radius: 0px 0px 0px 0px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.b-icon {
  display: block;
  width: 48px;
  height: 48px;
  padding: 0 17px;
  border-radius: 4px;
  border: 1px #000 solid;
  color: #006AB8;
  font-size: 18px;
  text-align: center;
  justify-content: center;
  margin-right: 10px;
}
.b-icon i {
  line-height: 48px;
}
.search-field .submit-btn {
  line-height: 38px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 0px 30px;
  border-radius: 0;
  background: #006AB8;
  text-align: center;
  border: 1px solid #006AB8;
  text-transform: capitalize;
}
.search-field .submit-btn:hover {
  background: #102535;
  -webkit-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease;
  transition: all 700ms ease;
}
.search-filter {
  background: #f6f6f6;
  padding: 30px;
  margin-top: 30px;
}
.search-filter select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("../image/arrow-down.svg");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 16px 12px;
  padding: 15px 30px 15px 15px;
}

.side-nav {}
.side-nav ul {
  display: flex;
  flex-direction: column;
  gap: .10rem;
  margin: 0;
  padding: 0;
  background: #f5f5f5;
  border-bottom: 2px #ddd solid;
}
.side-nav ul li {
  display: block;
}
.side-nav ul li a {
  color: #102535;
  font-weight: 500;
  display: block;
  padding: 15px;
  font-size: 13px;
}
.side-nav input[type="checkbox"] {
  margin-right: 5px;
  width: 14px;
  height: 14px;
  border-radius: 0px;
  vertical-align: middle;
}
.side-nav ul li a i {
  margin-right: 15px;
  font-size: 24px;
  vertical-align: middle;
}
/*.side-nav ul li a:hover,*/ .side-nav ul li a.active {
      background: #102535;
    margin-left: 0px;
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
}


/* Tab */
.nav-tabs {
  border-bottom: none;
  gap: 50px;
}
.nav-tabs .nav-link {
  background-color: transparent;
  color: #ffffff;
  border: none;
  position: relative;
}
.nav-tabs .nav-link:hover {
  border: none;
  color: white;
}
.nav-tabs .nav-link.active {
  background-color: transparent;
  border: none;
  color: #fff;
  font-weight: 600;
}
.nav-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
}
/* Home blog*/
.homeblog-sec {
  position: relative;
  padding: 0 !important;
  background-color: #f6f6f6;
  z-index: 1;
  margin-bottom: 6em;
}
.homeblog-sec:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 43.6%;
  height: 100%;
  /*background: #102535;*/
  background-image: url("https://ambimentmarketplace.com/wp-content/uploads/2025/08/blog-bg.jpg");
	background-size: cover;
  z-index: -1;
}
.blog-area {
      padding: 3em;
    margin-top: 15%;
    background: #257ec0;
}
.blog-area h3 {
  font-weight: 500;
  color: var(--light-color);
  text-transform: capitalize;
  line-height: 1;
}
.blog-area p {
  color: var(--light-color);
}
.blog-area a {
  color: var(--light-color);
  text-decoration: underline;
}
.blog-area a:hover {
  text-decoration: none;
}
.faq-block {
  padding: 40px 30px 30px;
}
.blog-thumb{
	
    margin-bottom: 10px;
    padding: 10px;
}
.blog-thumb p{
	margin-bottom:0;
}
.blog-thumb a{color:#000;}
.blog-thumb a:hover{color:#0a58ca;}
/* About */
.about-sec {
  position: relative;
  padding: 0 !important;
  background-color: #eaeaea;
  z-index: 1;
  margin: 6em 0;
}
.about-sec:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: #f6f6f6;
  z-index: -1;
}
.about-block {
  padding: 30px;
}
.pad-l {
  padding-left: 40px !important;
}
.pad-r {
  padding-right: 40px !important;
}
.about-block h3 {
  font-weight: 600;
  font-size: 24px;
  color: var(--accent-color);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1rem;
}
.about-block p {
  color: var(--dark-color);
}
/* Contact */
.contact-sec {
  position: relative;
  padding: 0 !important;
  background-color: #ffffff;
  z-index: 1;
  margin: 6em 0;
}
.contact-sec:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 46%;
  height: 100%;
  background: #f6f6f6;
  z-index: -1;
}
.contact-block {
  padding: 70px 0px;
}
.contact-block h3 {
  font-weight: 700;
  font-size: 24px;
  color: var(--accent-color);
  text-transform: uppercase;
  line-height: 1;
}
.contact-block p {
  color: var(--dark-color);
}
.contact-block .info-block {
  margin-top: 30px;
}
.contact-block .info-block .icon {
  width: 48px;
  height: 48px;
  background: #102535;
  border-radius: 4px;
  margin-right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.form input, .form select, .form textarea {
  background-color: #fff;
  padding: 1em;
  border-color: gray;
  border-radius: 4px;
  color: #000;
}
.contact-block input[type="submit"] {
  font-family: var(--font-1);
  padding: 15px 60px;
  background: #257ec0;
  color: #ffffff;
  border-radius: 4px;
  border: none;
  line-height: 1;
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  text-align: center;
  display: inline-block;
}
.contact-block input[type="submit"]:hover {
  background: #102535;
}
/*  Our Core Streams */
.core-streams {
  background-color: #102535;
}
.core-streams .heading-title h3 {
  color: var(--light-color);
  text-transform: uppercase;
}
.core-streams .core-block {
  position: relative;
  padding: 30px 30px;
  border: 2px #ffffff solid;
  min-height: 300px;
  margin-top: 60px;
}
.core-streams .core-block .num {
  width: 48px;
  height: 48px;
  font-size: 16px;
  border: 2px #fff solid;
  position: absolute;
  left: 30px;
  top: -24px;
  text-align: center;
  line-height: 43px;
  font-weight: 500;
  color: #fff;
  background: #102535;
  border-radius: 50px;
}
.core-streams .core-block .icon {
  width: 40px;
  height: 40px;
  display: block;
  margin: 0 auto 30px;
}
.core-streams .core-block .icon img {}
.core-streams .core-block h4 {
  font-weight: 700;
  font-size: 20px;
  color: var(--accent-color);
  text-transform: capitalize;
  line-height: 1;
  margin-bottom: 1rem;
}
.core-streams .core-block p {
  color: var(--light-color);
  margin: 0;
}
/* mission-sec  */
.mission-sec {
  position: relative;
  background-color: #f6f6f6;
  padding: 30px 0;
  margin: 6em 0;
}
.mission-sec h3 {
  margin: 0;
  color: #257ec0;
  font-weight: 700;
  padding-right: 30px;
  border-right: 2px #257ec0 solid;
  margin-right: 30px;
}
.mission-sec p {
  margin: 0;
}
.product-detail {
  padding: 3rem 0;
}
.product-detail ul {
  padding-left: 1rem;
}
.product-detail ul li {
  list-style: disc;
  font-family: var(--font-2);
  font-size: 14px;
  font-weight: normal;
  line-height: normal;
}
.sub-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  background: #257EC0;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}
.sub-head .heading-title{
	margin: 0;
    padding-top: 25px;
}
.sub-head .heading-title h4, .sub-head .heading-title p{
	color:#fff;
}


.sub-head .head-img {
    max-width: 100px;
}
.sub-head .head-img img {
        min-height: 100px;
    object-fit: cover;  
}
.tag-btn {
  justify-content: start;
  display: flex;
  gap: 40px;
  margin: 15px;
}
.heading-title {
  margin-bottom: 1rem;
}
.heading-title p {
  margin-bottom: 0;
}
.heading-title .theme-btn {
  margin-bottom: 0;
  border-radius: 50px;
  background-color: transparent;
  border: 1px #0a58ca solid;
}
.heading-title .theme-btn:hover {
  background-color: #0a58ca;
  border: 1px #0a58ca solid;
}
.buton-block {
      padding-top: 27px;
    margin-left: 300px;
}
.buton-block .theme-btn-stroke {
  border: 1px #102535 solid;
  border-radius: 4px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #102535;
  margin-right: 20px;
}
.buton-block .theme-btn-stroke:hover {
  background: #102535;
  border: 1px #102535 solid;
  color: #ffffff;
}
.buton-block .theme-btn-stroke i {
  margin-right: 10px;
}
.buton-block .theme-btn {
  background: #102535;
  color: #ffffff;
  border: 1px #102535 solid;
  border-radius: 4px;
  padding: 15px 50px;
  font-size: 14px;
  font-weight: 700;
}
.buton-block .theme-btn:hover {
  background-color: transparent;
    color: #fff;
    border: 1px #fff solid;
}
.final-product {
  padding: 3rem;
  margin: 30px 0px;
}
.modal-content{
	
}
.modal-content .btn-close {
    position: absolute;
    right: 10px;
    top: 10px;
}
.popup-form{
	padding: 30px;
}
.popup-form textarea {
  height:127px;
}
.popup-form .form-group {
    margin-bottom: 2rem;
}
.popup-form button[type="submit"] {
    margin: auto;
}
.popup-form h1{
	font-size: 36px;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    text-align: left;
    border-bottom: 2px #257EC0 solid;
    padding-bottom: 15px;
    margin-bottom: 40px;
}
.popup-form input[type="submit"] {
  font-family: var(--font-1);
  padding: 15px 60px;
  background: #257ec0;
  color: #ffffff;
  border-radius: 4px;
  border: none;
  line-height: 1;
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  text-align: center;
  display: inline-block;
	    float: right;
}
.popup-form input[type="submit"]:hover {
  background: #102535;
}
/* Form validation */
.wpcf7-not-valid-tip, .wpcf7 form .wpcf7-response-output{
color: #dc3232;
font-size: 0.7rem;
text-align: left;
}
.wpcf7 form .wpcf7-response-output {
    margin: 0 !important;
    padding: 0.5rem !important;
    border: 1px solid #dc3232 !important;
    text-align:center;
}
.wpcf7 form.sent .wpcf7-response-output {
border-color: #46b450 !important;
background-color:#46b450;
color:#fff !important;
}
.key-feature{}
.key-wrap{
	margin-top: 0px;
}
.key-block{
	border-left:5px #257EC0 solid;
	background:#f6f6f6;
	padding:30px 30px;
	display:block;
	margin-top:30px;
}
.key-block .icon{
	width: 40px;
    height: 40px;
    overflow: hidden;
    display: block;
    margin-bottom: 30px;
}
.key-block h5{
	font-size:16px;
	color:#000000;
	font-weight:700;
}
.key-block p{
	color:#000000;
}
.key-benefit{
	border-top: 5px #257EC0 solid;
    background: #f6f6f6;
    padding: 30px 30px;
    display: block;
    margin-top: 30px;
    border-radius: 12px;
}
.key-benefit h5{
	font-size:16px;
	color:#000000;
	font-weight:700;
}
.key-benefit p{
	color:#000000;
}

.gallery-block{
	padding:0;
}
.gallery-block .heading-title h3, .key-feature .heading-title h3, .key-benefit .heading-title h3 {
   color: #102535;
}
   .swiper-container {
        width: 100%;
        height: 100%;
    padding: 50px 100px;
    }
    .swiper-slide {
        text-align: center;
        font-size: 18px;
        background: #fff;
        
        /* Center slide text vertically */
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
    }
    .swiper-slide img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }
.swiper-button-next, .swiper-button-prev{
	background:#eaeaea;
	height:100%;
	width:50px;
}
.swiper-button-next:hover, .swiper-button-prev:hover{
	background:#ddd;
}
.swiper-button-next{
	top:20px;
	right:0;
}
.swiper-button-prev{
	top:20px;
	left:0;
}
.swiper-button-prev:after, .swiper-button-next:after{
	font-size:24px;
	color:#848484;
}

 
/* Contact */
/* breadcrumb */
.breadcrumb {
  align-items: center;
}
.breadcrumb > a {
  color: #102535;
  font-size: 12px;
  font-weight: 500;
}
.breadcrumb > a:hover {
  color: #006AB8;
}
/* accordion */
.accordion .accordion-item {
  border: none;
  background-color: transparent;
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-item:first-of-type, .accordion-item:first-of-type .accordion-button {
  border-radius: 0px;
}
.accordion .accordion-button {
  background-color: white;
  /* box-shadow: 0px 0px 10px -7px rgba(0, 0, 0, 1);
    -webkit-box-shadow: 0px 0px 10px -7px rgba(0, 0, 0, 1);
    -moz-box-shadow: 0px 0px 10px -7px rgba(0, 0, 0, 1); */
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1.5rem;
  color: var(--text-color);
  border-bottom: solid 1px var(--accent-color);
  font-family: var(--font-1);
}
.accordion.accordion-bg-accent .accordion-button {
  background-color: var(--accent-color);
  font-size: 15px;
  border: none;
}
.accordion-item:last-of-type .accordion-button.collapsed {
  border-radius: 0px;
}
.accordion .accordion-button::after {
  color: white;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-caret-down-fill" viewBox="0 0 20 20"><path d="M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z"/></svg>');
}
.accordion.accordion-bg-accent .accordion-button::after {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" width="512px" height="512px" viewBox="0 0 512 512" enable-background="new 0 0 512 512" xml:space="preserve"><g><path d="M456.843,364.514L264.951,170.918c-1.402-1.415-3.311-2.214-5.303-2.221c-0.008,0-0.016,0-0.024,0 c-1.984,0-3.887,0.786-5.293,2.187l-54.923,54.71c-2.935,2.923-2.944,7.672-0.021,10.606c2.923,2.934,7.672,2.943,10.606,0.021 l49.596-49.403l186.599,188.257c1.466,1.479,3.396,2.22,5.327,2.22c1.908,0,3.817-0.724,5.28-2.173 C459.738,372.205,459.759,367.456,456.843,364.514z"/><path d="M153.646,271.407L61.579,363.92c-2.922,2.936-2.911,7.685,0.025,10.606c1.463,1.456,3.377,2.184,5.291,2.184 c1.925,0,3.851-0.737,5.316-2.21l92.066-92.513c2.922-2.936,2.911-7.685-0.025-10.606 C161.316,268.46,156.567,268.471,153.646,271.407z"/><path d="M179.063,245.939l-5.095,5.095c-2.928,2.93-2.928,7.679,0.001,10.606c1.465,1.465,3.384,2.196,5.303,2.196 c1.919,0,3.839-0.732,5.304-2.197l5.091-5.093c2.93-2.928,2.93-7.677,0.002-10.606 C186.741,243.012,181.993,243.011,179.063,245.939z"/></g></svg>');
}
.accordion-button:not(.collapsed) {
  /* box-shadow: 0px 0px 10px -7px rgba(0, 0, 0, 1);
    -webkit-box-shadow: 0px 0px 10px -7px rgba(0, 0, 0, 1);
    -moz-box-shadow: 0px 0px 10px -7px rgba(0, 0, 0, 1); */
  color: var(--accent-color);
}
.accordion.accordion-bg-accent .accordion-button:not(.collapsed) {
  color: blue;
}
.accordion .accordion-body {
  background-color: transparent;
  font-size: 14px;
  color: var(--gray-color);
}
/* footer */
.footer {
  background-color: #102535;
  padding: 6em 0em 1em;
}
.logo-flex {
  display: flex;
  justify-content: space-between;
  align-items: anchor-center;
}
.f-logo {
  display: block;
}
.footer p {
  color: #ffffff;
}
.footer-links {
  text-align: center;
}
.footer-links h5 {
  font-family: var(--font-2);
  color: #ffffff;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 1rem;
}
.footer-links ul {
  padding: 0;
  margin: 0 0 70px;
}
.footer-links ul li {
  display: inline-flex;
  padding: 0 30px;
}
.footer-links ul li a {
  font-size: 16px;
  color: #ffffff;
  line-height: 36px;
}
.footer-links ul li a:hover {
  text-decoration: underline;
}
.copyright {
  border-top: 1px #fff solid;
  text-align: center;
  padding-top: 15px;
  margin-top: 30px;
}
.contact-pop {
  position: fixed;
  right: 30px;
  bottom: 40px;
  width: 100px;
  z-index: 999;
  transition: all 0.3s;
}
@media only screen and (max-width:993px) {
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 24px;
  }
  h4 {
    font-size: 18px;
  }
  h5 {
    font-size: 16px;
  }
  h6 {
    font-size: 14px;
  }
  p, .product-detail ul li {
    font-size: 12px;
    line-height: initial;
  }
  span, button, a {
    font-size: 13px;
  }
  .section {
    padding: 2em 0;
  }
  .fs-very-large {
    font-size: 3.125rem;
  }
  .image-absolute-1 {
    left: 45%;
    top: 35%;
  }
  .image-infinite-bg {
    background-size: cover !important;
  }
  .nav-link {
    padding-block: 0.7rem;
    width: -webkit-fill-available;
  }
  .navbar-nav .nav-link {
    padding-block: 0.8rem;
    font-size: 0.8rem;
  }
  .header .navbar {
    margin: 0px auto;
    border-radius: 0px;
    max-width: 100%;
    padding: 15px;
  }
  .hero .caption {
    padding-top:0rem;
    text-align: center;
  }
  .hero .caption h3 {
    font-size: 24px;
  }
  .hero .caption h1 {
    font-size: 36px;
  }
  .hero .caption p {
    font-size: 12px;
    line-height: initial;
  }
  .banner-image {
    margin: 0;
    transform: none;
  }
  .navbar-nav .nav-link.active::after {
    height: 1px;
    bottom: 0;
  }
  .dropdown-menu {
    width: 100%;
    box-shadow: none;
  }
  .nav-item.dropdown .dropdown-menu {
    background-color: var(--dark-color);
  }
  .nav-item.dropdown .dropdown-menu .dropdown-item {
    color: white;
    text-align: start;
  }
  .dropdown-item {
    padding-block: 0.35rem;
  }
  .list-flush-horizontal {
    flex-direction: column;
  }
  .list-flush-horizontal .list-item:first-child, .list-flush-horizontal .list-item {
    border-right: none;
    border-bottom: 1px solid #d1d1d1;
  }
  .list-flush-horizontal .list-item:last-child {
    border-left: none;
    border-bottom: none;
    border-top: 1px solid #d1d1d1;
  }
  .position-lg-absolute {
    position: static;
  }
  .banner-heading {
    font-size: 2.5rem;
  }
  .text-title {
    font-size: 4rem;
  }
  .floating-left-custom {
    bottom: 1.8rem;
  }
  .floating-right-custom {
    top: 1.6rem;
  }
  .theme-btn {
    padding: 10px 30px;
    font-size: 14px;
  }
  .logo-flex {
    display: block;
    text-align: center;
    margin-bottom: 2rem;
  }
  .f-logo {
    margin-bottom: 2rem;
  }
  .f-logo img {
    height: 100px;
  }
  .logo-flex img {
    max-height: 170px;
  }
  .footer-links ul {
    margin: 0 0 30px;
  }
  .footer-links ul li {
    display: block;
    padding: 0;
    border-bottom: 1px #19384f solid;
  }
  .footer-links ul li a {
    font-size: 14px;
    line-height: 30px;
  }
  .contact-pop {
    right: 10px;
    bottom: 50px;
    width: 60px;
  }
  .offer-sec .heading-title {
    margin: 1rem 0;
  }
  .nav-tabs {
    display: block;
  }
  .tabcon-wrap .con-block {
    padding-top: 1rem;
    text-align: center;
  }
  .blog-area {
    padding: 3em 0;
    text-align: center;
  }
  .homeblog-sec {
    margin-bottom: 0;
  }
  .homeblog-sec:before {
    width: 100%;
    height: 25%;
  }
  .faq-block {
    padding: 30px 0px;
  }
  .sub-banner {
    height: 270px;
  }
  .sub-banner .caption, .sub-banner-2 .caption {
    padding: 45% 0 0;
  }
  .about-sec {
    margin: 0;
    background-color: #f6f6f6;
  }
  .about-sec:before {
    background: #f6f6f6;
  }
  .about-block {
    padding: 30px 30px 0px 30px;
    text-align: left !important;
  }
  .about-block h3 {
    font-size: 20px;
    line-height: initial;
  }
  .core-streams .core-block {
    min-height: auto;
  }
  .mission-sec {
    margin: 3em 0;
  }
  .mission-sec .d-flex {
    display: block !important;
  }
  .mission-sec h3 {
    padding-bottom: 1rem;
    border-bottom: 2px #257ec0 solid;
    margin-right: 0;
    margin-bottom: 1rem;
    border-right: none;
    padding-right: 0;
  }
  .contact-sec {
    padding: 2em 0;
    margin: 0;
  }
  .contact-sec:before {
    background: #fff;
  }
  .contact-block {
    padding: 40px 0px 0px;
  }
  .contact-block .info-block {
    border-bottom: 1px #ddd solid;
    padding-bottom: 30px;
  }
  .head-phn {
    font-size: 20px;
    margin-left: 0;
    border-left: 0;
    padding-left: 0;
    display: block;
  }
  .head-phn i {
    font-size: 24px;
  }
  .side-nav {
    margin-bottom: 30px;
  }
  .side-nav ul li a {
    padding: 10px;
    font-size: 12px;
  }
  .side-nav .mt-5 {
    margin-top: 1rem !important;
  }
  .work-head {
    display: block;
  }
  .work-head .heading-title {
    margin-bottom: 1rem;
  }
  .search-field {
    width: 100%;
    height: auto;
  }
  .search-field input {
    font-size: 12px;
  }
  .grid-product-sec .card {
    text-align: center;
  }
  .grid-product-sec .card .bottom-block {
    display: block;
    margin-top: 1em;
  }
  .final-product {
    padding: 1rem;
  }
  .contact-block input[type="submit"] {
    display: block;
    margin: auto;
  }
}