@import url('https://fonts.googleapis.com/css2?family=Commissioner:wght@100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

:root {
	--white: #ffffff;
	--light-gray: #e5e5e5;
	--gray: #5F5F5F;
	--gray-dark: #4F4C58;
	--primary: #3614B2;
	--secondary: #b22133;
	--success: #00A827;
	--info: #36b9cc;
	--warning: #f6c23e;
	--danger: #EA0000;
	--light: #f8f9fc;
	--dark: #2A2A2B;
	--form-border-color: #FFE3C9; 
	--bg-light: #F8F7F7;
	--bg-color: #fff;
	--table-border: #F5F5F5;
	--light-primary: #FFD5B8;
	--border-color: #ECECEC;
	--purple: #9B2B8B;
	--darkblue: #2B449B;
}
* {
  padding: 0;
  margin: 0;
  box-shadow: none;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
	font-family: "Commissioner", serif !important;
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent
}
body {
  position: relative;
  min-height: 100%;
  font-family: "Commissioner", serif !important;
  color: var(--gray-dark);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, p {
  color: var(--dark);
}
h5 {
  line-height: 1.5 !important;
}

a {
    color: var(--primary) !important;
    text-decoration: none !important;
    font-size: 1rem;
}
p {
  font-size: 1.125rem;
  color: var(--gray);
  font-weight: 300;
}
p strong {color: var(--dark) !important; font-weight: 600;}

.fw-100 {font-weight: 100;}
.fw-200 {font-weight: 200 !important;}
.fw-300 {font-weight: 300 !important;}
.fw-400 {font-weight: 400;}
.fw-500 {font-weight: 500;}
.fw-600 {font-weight: 600;}

.gray {
  color: var(--gray);
}
.white {color: var(--white) !important;}
.primary {
  color: var(--primary) !important;
}
.secondary {
  color: var(--secondary) !important;
}
.bg-primary {
  background: var(--primary);
}
input.form-control {
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid var(--dark);
}
.form-floating>label {font-size: 1.25rem; font-weight: 300;}
.form-floating>.form-control:focus~label, .form-floating>.form-control:not(:placeholder-shown)~label, .form-floating>.form-select~label {
  opacity: .65;
  transform: scale(.85) translateY(-1rem) translateX(.15rem) !important;
}
.form-control:focus {
  background: none;
  color: var(--gray-dark);
  box-shadow: none !important;
}
textarea.form-control {
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--dark);
}
.btn-primary {
  color: var(--white) !important;
  background: var(--secondary) !important;
  border: 2px solid var(--secondary) !important;
  padding: .5rem 1rem !important;
  transition: 0.3s;
}
.btn-primary:hover {
  color: var(--secondary) !important;
  transition: 0.3s;
  background: var(--white) !important;
  border: 2px solid var(--dark);
}
.card {
  border-radius: 20px !important;
  border: 0 !important;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
}
.overflow-x-hidden {overflow-x: hidden;}
.overflow-y-hidden {overflow-y: hidden;}

/* basic-style-end */

/* btn-sec */
a.btn-outline p {
  margin-bottom: 0;
  color: var(--primary);
  display: inline-block;
  font-weight: 500;
  font-size: 1.125rem;
}
a.btn-outline {
  color: var(--primary) !important;
  text-decoration: none;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s ease all;
}
a.btn-outline:hover p {
  color: var(--white) !important;
  z-index: 9;
  position: relative;
}
a.btn-outline:focus {
  border: 2px solid var(--primary) !important;
}
a.btn-outline:focus p {
  color: var(--white) !important;
  z-index: 9;
  position: relative;
}
a.btn-outline {
  font-size: 16px;
  display: inline-block;
  text-align: center;
  max-width: 230px;
  font-weight: bold;
  padding: 10px 20px;
  border: 2px solid var(--primary);
  border-radius: 30px;
  position: relative;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1); */
}
a.btn-outline:before {
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  position: absolute;
  border-radius: 30px;
  padding: 10px 0;
  top: 0;
  left: 50%;
  right: 50%;
  bottom: 0;
  opacity: 0;
  content: "";
  background-color: var(--primary);
  z-index: 0;
  border: 3px solid var(--primary);
}
a.btn-outline:hover:before {
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  right: -2px;
  left: -2px;
  opacity: 1;
}
a.btn-outline:focus:before {
  transition: 0.5s all ease;
  right: -2px;
  left: -2px;
  opacity: 1;
}
.btn-outline-white {
  color: var(--white) !important;
  border: 2px solid var(--white) !important;
}
.btn-outline-white p {
  color: var(--white) !important;
}
.btn-outline-white:hover{
  border: 2px solid var(--primary) !important;
}

/* btn-sec */

.top-bar {
    padding: 10px 0;
    background: var(--primary);
}
.top-bar a.link { 
    color: var(--white) !important;
    font-weight: 300;
 }
img.main-logo {
    width: 300px;
}
.top-social-icons a.link {
    font-size: 1.125rem;
    margin: 0 0 0 15px;
}
.top-social-icons a.link:last-child{
    font-size: 1rem;
}
ul.navbar-nav.menu-bar li.nav-item a.nav-link {
  text-transform: uppercase;
  margin-left: 20px;
  color: #333 !important;
  font-size: 1.125rem;
  font-weight: 500;
}
ul.navbar-nav.menu-bar li.nav-item a.nav-link.active {color: var(--primary) !important;}
.carousel-caption {
  left: 50% !important;
  right: auto !important;
  top: 50% !important;
  bottom: auto !important;
  transform: translate(-50%, -50%);
  background: rgba(255 255 255 / 71%);
  border-radius: 20px;
  padding: 30px 50px !important;
}

img.banner-img {
  max-height: 800px;
  object-fit: cover;

}
.banner-content h1 {
  font-size: 60px;
  font-weight: 600;
  margin: 0 auto;
  line-height: 85px;
  margin-bottom: 10px;
}
.banner-content h4 {
  font-size: 40px;
  color: var(--dark);
  font-weight: 400;
}
.banner-content img {
  width: 100%;
  display: block;
  margin: 0 auto;
  max-width: 700px;
  margin-top: 10px;
}
h2.sec-head {
  font-size: 55px;
  font-weight: 600;
}
h6.sec-sub-head {
  font-size: 25px;
  color: #333;
  font-weight: 300;
  margin-bottom: 10px;
}
.solution-inn {
  padding: 30px;
  border-radius: 25px;
  background: url(../img/about.jpg) no-repeat;
  background-position: left;
  background-size: cover;
  min-height: 440px;
  position: relative;
  overflow: hidden;
}
.solution-inn {color: var(--white);}
.solution-inn h3 {
  color: var(--white);
  font-size: 45px;
  margin-bottom: 30px;
  font-weight: 200;
  width: 80%;
}
.solution-inn h4 {
  color: var(--white);
  font-size: 27px;
  margin-bottom: 15px;
  font-weight: 400;
}
.solution-inn p {
    color: var(--white);
    font-size: 15px;
    line-height: 30px;
}
.product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 50px;
  border-radius: 25px;
  margin-bottom: 30px ;
  position: relative;
  overflow: hidden;
}
.product-card::before {
      content: '';
      background: #00000080;
      width: 100%;
      height: 100%;
      position: absolute;
      left: 0;
      top: 0;
}
.product-card.home-product-1 {
  background: url(../img/sevices/Img01.jpg) no-repeat;
  background-size: cover;
  background-position: top;
  height: 500px;
  width: 100%;
}
.product-card.home-product-2 {
   background: url(../img/sevices/Img02.jpg) no-repeat;
  background-size: cover;
  background-position: top;
  height: 500px;
  width: 100%;
}
.product-card.home-product-3 {
  background: url(../img/sevices/Img03.jpg) no-repeat;
  background-size: cover;
  background-position: top;
  height: 500px;
  width: 100%;
}
.product-card.home-product-4 {
  background: url(../img/sevices/Img04.jpg) no-repeat;
  background-size: cover;
  background-position: top;
  width: 100%;
  height: 500px;
}
.product-card.home-product-5 {
  background: url(../img/sevices/Img05.jpg) no-repeat;
  background-size: cover;
  background-position: top;
  width: 100%;
  height: 500px;
}
.product-card h3 {
    font-size: 35px;
    font-weight: 600;
    color: var(--white);
    line-height: 35px;
    width: 100%;
}
.product-card p {
  color: var(--white);
  max-width: 70%;
}
.industry-cards .card {
  text-align: center;
  display: flex;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 20px;
  border-radius: 20px;
  border: 2px solid var(--primary);
}
.industry-cards .card img {
  width: 60px !important;
  margin-bottom: 15px;
  height: 60px;
  object-fit: contain;
}
.industry-cards .card h5 {
    font-size: 30px;
    font-weight: 700;
}
.industry-cards .card span {
    font-size: 70px;
    color: var(--primary);
}
img.why-choose-img {
  border-radius: 25px;
  height: 100%;
  object-fit: cover;
}
.why-choose-icon {
  width: 60px;
  height: fit-content;
  margin-right: 15px;
}
footer {
  background: var(--bg-light);
  padding: 40px 0  20px 0;
}
footer h4 {
  margin-bottom: 20px;
  font-size: 30px;
}
footer ul {
  padding-left: 0;
  list-style: none;
}
footer ul li {
  margin-bottom: 10px;
}
footer ul li a {
  color: var(--dark) !important;
  font-weight: 400;
}
footer .top-social-icons a.link {
  margin-left: 0;
  margin-right: 15px;
  color: var(--dark) !important;
}
footer a.btn.btn-primary {
  padding: 10px 25px !important;
  font-size: 20px;
}
section.index-about {
  position: relative;
}
/* section.index-about::before {
  position: absolute;
  background: url(../img/index-about-icon1.png);
  content: '';
  width: 350px;
  height: 350px;
  top: 0;
  left: 0;
}
section.index-about::after {
  position: absolute;
  background: url(../img/index-about-icon2.png);
  content: '';
  width: 900px;
  height: 900px;
  top: 0;
  right: 10px;
  z-index: -1;
} */
.index-99 {z-index: 99;}
img.about-img {
  width: 100%;
  object-fit: cover;
  height: 100%;
  min-height: 350px;
}
.about-us h3 {
  font-weight: 100;
  font-size: 30px !important;
}
section.industry-cards.about-card-sec {
  background: #6C7B88;
  position: relative;
}
.about-cards .card {
  border: 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.about-cards {
  margin-top: -120px;
  margin-bottom: 20px;
}
.indus-exprts-dtls h5 {
  font-size: 25px;
  line-height: 30px !important;
  font-weight: 400;
}
.about-cards {
  margin-top: -100px !important;
}
.about-cards-sub img.img-2 {
  width: 80px !important;
  height: auto;
}
.indus-exprts-dtls i {
  font-size: 25px;
  padding-top: 4px;
}
.about-cards-sub .card {
  border: 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.img-card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 15px;
}
section.about-us {position: relative;}
/* section.about-us::before {
  content: '';
  background: url(../img/index-about-icon1.png) no-repeat;
  position: absolute;
  right: 0;
  top: -30px;
  width: 350px;
  height: 350px;
  z-index: 99;
  background-position: center;
  background-size: contain;
  opacity: .4;
}
section.industry-cards.about-card-sec .container::before {
  content: '';
  background: url(../img/index-about-icon3.png) no-repeat;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 600px;
  height: 600px;
  z-index: 99;
  background-position: center;
  background-size: contain;
} */
.contact-us {
  background: url(../img/contact-bg.jpg) no-repeat;
  background-size: cover;
  background-position: top;
  height: 100%;
  width: 100%;
  min-height: 100%;
  padding: 50px;
}
section.contact-us .card {
  height: 100%;
}
section.contact-us .card-body {
  padding: 50px !important;
}
.contact-dtls {
  display: flex;
}
.contact-dtls span {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 24px;
  margin-right: 15px;
}
.contact-dtls p{
  font-size: 1rem;
}
img.contact-img {
  width: 100%;
  max-width: 270px;
  object-fit: contain;
}
.contact-social-icons {
  padding-left: 20px;
}
.contact-social-icons a {
	font-size: 16px !important;
	color: var(--primary) !important;
	margin-right: 0px !important;
}
section.contact-us textarea.form-control {
  min-height: 200px;
}
.solution-inn::before {
    content: '';
    background: #00000080;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

/* slider */
.logo-slider img {
    margin: auto;
    width: 180px;
    object-fit: contain;
}
    .slick-slide {
      text-align: center;
      background: #fff;
      box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
      margin: 5px 10px;
      border-radius: 10px;
    }
   
.why-choose-icon span {
    font-size: 70px;
    color: var(--primary);
}
p.about-p {
    font-size: 24px;
}
.industries-lst .card {
	overflow: hidden;
	height: 100%;
}
.img-sec .overlap-txt {
	position: absolute;
	z-index: 9;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	color: #fff;
}
.img-sec .overlap-txt span {
  font-size: 80px;
}
.img-sec .overlap-txt h3 {
	color: #fff;
	height: 25px;
	text-transform: uppercase;
}
.img-sec::before {
	content: '';
	position: absolute;
	background: #00000073;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.industries-lst .card-body {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
}
.img-sec img {
	height: 350px;
	object-fit: cover;
}
.industries-page img {
	height: 500px;
	object-fit: cover;
	border-radius: 30px;
  width: 100%;
}
.industries-card {
	margin-left: -100px;
	margin-top: 40px !important;
}
.industries-card .card-body {
  padding: 40px;
}
.sevices-ul {
	list-style: none;
	padding-left: 10px;
}
.sevices-ul li {
	display: flex;
	align-items: start;
	margin-bottom: 10px;
	line-height: normal;
}
.sevices-ul li span {
	margin-top: 1px;
	color: var(--primary);
}
.about-us.inner-pages {
	padding: 40px 0;
	margin-bottom: 100px;
	background-image: url(../img/inner-banner.jpg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.about-us.inner-pages::before {
	content: '';
	background: #00000070;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}
.about-us.inner-pages .banner-content h1 {
	line-height: normal !important;
  color: #fff;
}
.about-us.inner-pages .breadcrumb {
	display: inline-flex;
	background: #fff;
	padding: 0 20px 5px 20px;
	border-radius: 20px;
}
/* responsive-sec */

@media (min-width: 1600px) {
 .container {max-width: 1700px !important;}
}

@media (max-width: 991px) {
  .container, .container-md, .container-sm {
      max-width: 900px !important; 
  }
}


/* X-Large devices (large desktops, less than 1400px) */
@media (max-width: 1599.98px) { 
  .banner-content h1{font-size: 50px; line-height: 70px;}
  .banner-content h4 {font-size: 35px;}
}
/* X-Large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) { 
  .carousel-caption {padding: 30px !important;}
  .logo-slider img {width: 150px;}
}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) { 
  img.main-logo {width: 250px;}
  ul.navbar-nav.menu-bar li.nav-item a.nav-link {font-size: 1rem; margin-left: 10px;}
  .banner-content h1{font-size: 60px; line-height: 60px;}
  footer h4 {margin-bottom: 15px; font-size: 24px;}
  .banner-content img {max-width: 500px;}
  .home-banner {min-height: 100%;}
  .product-card {padding: 30px;}
  .product-card h3, .product-card p {width: 100%;}
 }

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) { 
  .product-card {padding: 30px;}
  .product-card.home-product-3, .product-card.home-product-4, .product-card.home-product-5 { min-height: auto !important; max-height: 350px !important;}
  .product-card a.btn-outline {width: 100%;}
  .product-card.home-product-1, .product-card.home-product-2, .product-card.home-product-3, .product-card.home-product-4, .product-card.home-product-5 {min-height: 450px !important; height: 100%; margin-bottom: 0; background-position: center;}
  h2.sec-head {font-size: 40px;}
  .product-card h3 { width: 100%; font-size: 35px; line-height: 40px;}
  .product-card p {max-width: 100%;}
  a.btn-outline p {font-size: 1rem;}
  .product-card::before{background: rgba(51, 51, 51, 0.5); position: absolute; left: 0; top: 0; content: ''; width: 100%; height: 100%;}
  section.index-about::after, section.index-about::before {display: none;}
  img.why-choose-icon{width: 50px;}
  .banner-content h1 {font-size: 40px; line-height: 50px;}
  .banner-content h4 {font-size: 25px;}
  .solution-inn::before {background: rgba(51, 51, 51, 0.5); position: absolute; left: 0; top: 0; content: ''; width: 100%; height: 100%;}
  section.contact-us textarea.form-control {min-height: 100px;}
  .carousel-caption {padding: 20px !important;}
  .about-us h3 {font-size: 20px !important;}
  .about-us.inner-pages{margin-bottom: 50px;}
 }

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    p {font-size: 1rem;} 
    .solution-inn h3 {font-size: 35px; width: 100%;}
    .product-card {padding: 20px;}
    .solution-inn {padding: 20px;}
    h2.sec-head {font-size: 35px;}
    .img-card img {height: 300px;}
    .form-floating>label {font-size: 1rem;}
    .contact-us {padding: 20px;}
    .contact-dtls h5 {font-size: 1rem;}
    .carousel-caption {min-width: 400px !important;}
    p.about-p {font-size: 1rem;}
    .product-card h3 {font-size: 25px; line-height: 30px;}
    .product-card.home-product-1, .product-card.home-product-2, .product-card.home-product-3, .product-card.home-product-4, .product-card.home-product-5 {min-height: 350px !important; height: 100%; margin-bottom: 0; background-position: center;}
    h6.sec-sub-head {font-size: 18px;}
    .industry-cards .card h5 {font-size: 25px; line-height: 30px !important;}
    .top-bar a.link {font-size: 14px;}
    .top-bar a.link i {font-size: 14px;}
    .why-choose-us.service-sec h1 { font-size: 25px; margin-bottom: 10px !important;}
    .industries-page img {height: 300px;}
    .industries-card {margin-left: 10px; margin-top: -120px !important; margin-right: 10px;}

 }

/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) { 
  .product-card h3 {font-size: 30px; line-height: 40px;}
  h6.sec-sub-head {font-size: 18px; margin-bottom: 5px; line-height: 27px;}
  section.contact-us .card-body {padding: 20px !important;}
  .contact-us {padding: 10px;}
  img.contact-img {max-width: 200px;}
  .carousel-caption {min-width: 300px !important;}
  .banner-content h1 { font-size: 30px; line-height: 35px;}
  a.btn-outline {font-size: 14px; padding: 5px 15px;}
  img.main-logo {width: 150px;}
  .logo-slider img { width: 120px;}
  .industry-cards .card {padding-top: 20px;}
  .why-choose-icon span {font-size: 50px;}
  section.why-choose-us h5 {margin-bottom: 0;}
  h2.sec-head {font-size: 30px;}
  .industries-card .card-body {padding: 20px;}
  .sevices-ul li {font-size: 15px;}
  .about-us.inner-pages{margin-bottom: 30px;}
}

/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 400px) { 
  
}







