
::-moz-selection { /* Code for Firefox */
  color: red !important;
  background: yellow !important;
}

::selection {
   color: #fff !important;
  background: #f03800 !important;
}
/*----------------------------------------------------
	SITE MAIN STRUCTURE
------------------------------------------------------*/

.site_wrapper {
	width: 100%;
	margin: 0 auto 0 auto;
}
.container_full {
	width: 100%;
	float: left;
	margin: auto;
	padding: 0px 50px 0px 50px;
}

.container {
	width: 1280px;
	margin: auto;
}

#logo5 {
	float:left;
	display:block;
	width:100%;
	min-height: 60px;
	margin-top:0px;
	position: relative;
	text-indent:-999em;
	background:url(../images/logo5.png) no-repeat left top;
}

/* header area adinationals */
.logo {
	float: left;
	width: 35%;
	margin-top: 0px;
	padding: 15px 0px;
}

.menu_main {
	float: right;
	width: 65%;
	z-index: 9999;    text-align: right;    padding-top: 12px;
}
.menu_main i{
	text-align: right;
	color: #fff;
	font-size: 32px;
}
/* scroll up */
.scrollup{
    width:40px;
    height:40px;
    opacity:1;
    position:fixed;
    bottom:22px;
    right:20px;
    display:none;
    text-indent:-9999px;
    background: url(../images/scroll-top-arrow.png) no-repeat left top;
	z-index: 9001;
}
.cd-panel {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	visibility: hidden;
	-webkit-transition: visibility 0s 0.6s;
	transition: visibility 0s 0.6s;
	z-index: 9999;
}
 .cd-panel::after {
  /* overlay layer */
  content: '';
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: transparent;
 cursor: pointer;
 -webkit-transition: background 0.3s 0.3s;
 transition: background 0.3s 0.3s;
}
.cd-panel.cd-panel--is-visible {
	visibility: visible;
	-webkit-transition: visibility 0s 0s;
	transition: visibility 0s 0s;
	z-index: 9999;
}
 .cd-panel.cd-panel--is-visible::after {
 background: rgba(0, 0, 0, 0.8);
 -webkit-transition: background 0.3s 0s;
 transition: background 0.3s 0s;
}
.cd-panel__header {
	position: fixed;
	width: 90%;
	height: 50px;
	line-height: 50px;
	background: rgba(0, 0, 0, 0);
	z-index: 2;
	/*-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);*/
	-webkit-transition: -webkit-transform 0.3s 0s;
	transition: -webkit-transform 0.3s 0s;
	transition: transform 0.3s 0s;
	transition: transform 0.3s 0s, -webkit-transform 0.3s 0s;
	-webkit-transform: translateY(-50px);
	-ms-transform: translateY(-50px);
	transform: translateY(-50px);
}
.cd-panel__header h1 {
	padding-left: 7%;
	font-size: 20px;
	margin:10px 0px 0px 0px;
	color: #0078bf;
    font-family: 'Poppins', sans-serif; font-weight: 400;
   font-weight: 500;
}
.cd-panel--from-right .cd-panel__header {
	right: 0;
}
.cd-panel--from-left .cd-panel__header {
	left: 0;
}
.cd-panel--is-visible .cd-panel__header {
	-webkit-transition: -webkit-transform 0.3s 0.3s;
	transition: -webkit-transform 0.3s 0.3s;
	transition: transform 0.3s 0.3s;
	transition: transform 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
	-webkit-transform: translateY(0px);
	-ms-transform: translateY(0px);
	transform: translateY(0px);
}
 @media only screen and (min-width: 768px) {
 .cd-panel__header {
 width: 70%;
}
}
 @media only screen and (min-width: 1170px) {
 .cd-panel__header {
 width: 28%;
}
}
.cd-panel__close {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 60px;
	/* image replacement */
  display: inline-block;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
}
 .cd-panel__close::before, .cd-panel__close::after {
  /* close icon created in CSS */
  content: '';
 position: absolute;
 top: 22px;
 left: 20px;
 height: 3px;
 width: 20px;
 background-color: #fff;
  /* this fixes a bug where pseudo elements are slighty off position */
  -webkit-backface-visibility: hidden;
 backface-visibility: hidden;
}
 .cd-panel__close::before {
 -webkit-transform: rotate(45deg);
 -ms-transform: rotate(45deg);
 transform: rotate(45deg);
}
 .cd-panel__close::after {
 -webkit-transform: rotate(-45deg);
 -ms-transform: rotate(-45deg);
 transform: rotate(-45deg);
}
.cd-panel__close:hover {
	background-color: #424f5c;
}
 .cd-panel__close:hover::before, .cd-panel__close:hover::after {
 background-color: #ffffff;
 -webkit-transition: -webkit-transform 0.3s;
 transition: -webkit-transform 0.3s;
 transition: transform 0.3s;
 transition: transform 0.3s, -webkit-transform 0.3s;
}
 .cd-panel__close:hover::before {
 -webkit-transform: rotate(220deg);
 -ms-transform: rotate(220deg);
 transform: rotate(220deg);
}
 .cd-panel__close:hover::after {
 -webkit-transform: rotate(135deg);
 -ms-transform: rotate(135deg);
 transform: rotate(135deg);
}
 .cd-panel--is-visible .cd-panel__close::before {
 -webkit-animation: cd-close-1 0.6s 0.3s;
 animation: cd-close-1 0.6s 0.3s;
}
 .cd-panel--is-visible .cd-panel__close::after {
 -webkit-animation: cd-close-2 0.6s 0.3s;
 animation: cd-close-2 0.6s 0.3s;
}
 @-webkit-keyframes cd-close-1 {
 0%, 50% {
 -webkit-transform: rotate(0deg);
 transform: rotate(0deg);
}
 100% {
 -webkit-transform: rotate(45deg);
 transform: rotate(45deg);
}
}
 @keyframes cd-close-1 {
 0%, 50% {
 -webkit-transform: rotate(0deg);
 transform: rotate(0deg);
}
 100% {
 -webkit-transform: rotate(45deg);
 transform: rotate(45deg);
}
}
 @-webkit-keyframes cd-close-2 {
 0%, 50% {
 -webkit-transform: rotate(0deg);
 transform: rotate(0deg);
}
 100% {
 -webkit-transform: rotate(-45deg);
 transform: rotate(-45deg);
}
}
 @keyframes cd-close-2 {
 0%, 50% {
 -webkit-transform: rotate(0deg);
 transform: rotate(0deg);
}
 100% {
 -webkit-transform: rotate(-45deg);
 transform: rotate(-45deg);
}
}
.cd-panel__container {
	position: fixed;
	width: 90%;
	height: 100%;
	top: 0;
	background: #000;
	z-index: 1;
	-webkit-transition: -webkit-transform 0.3s 0.3s;
	transition: -webkit-transform 0.3s 0.3s;
	transition: transform 0.3s 0.3s;
	transition: transform 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
}
.cd-panel--from-right .cd-panel__container {
	right: 0;
	-webkit-transform: translate3d(100%, 0, 0);
	transform: translate3d(100%, 0, 0);
}
.cd-panel--from-left .cd-panel__container {
	left: 0;
	-webkit-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
}
.cd-panel--is-visible .cd-panel__container {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
}
 @media only screen and (min-width: 768px) {
 .cd-panel__container {
 width: 70%;
}
}
 @media only screen and (min-width: 1170px) {
 .cd-panel__container {
 width: 100%;
}
}
.cd-panel__content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 70px 7%;
	overflow: auto;
	/* smooth scrolling on touch devices */
  -webkit-overflow-scrolling: touch;
}

.cd-panel__content h4{
	font-size: 1.2rem;
	color: #f23801;
	line-height: 1.4;
	margin: 1.5em 0 1.2em;
	text-align: left;
	font-weight: 600;
}

.cd-panel__content h5{
	font-size: 1.2rem;
	color: #f23801;
	line-height: 1.4;
	margin: 1.5em 0 1.2em;
	text-align: left;
	font-weight: 600;
}
.cd-panel__content p  i{
	    font-size: 2.5rem;
    color: #14133b;
    float: left;
    padding-right: 18px;
    padding-bottom: 15px;
}

.cd-panel__content p {
	font-size: 0.95rem;
	color: #14133b;
	margin: 1em 0;
	text-align: left;
	font-weight: 600;
}
.cd-panel__content p span{
	    float: left;
    padding-top: 8px;
}
.cd-panel__content p:first-of-type {
	margin-top: 0;
}
 @media only screen and (min-width: 768px) {
 .cd-panel__content p {
 font-size: 0.95rem;

 text-align: left;
 font-weight: 600;
}
}
.register-submit {
	margin: 10px 0px 0px 0px !important;
	padding: 12px 0px;
	border-radius: 0px;
	width: 100% !important;
	max-width: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
	background: #1f479f;
	font-size: 18px;
	font-family: 'Poppins', sans-serif; font-weight: 400;
    text-align: center;
	color: #fff;
	border:0px;
}
.register-submit:hover {
	background: #027acd;
	color: #fff
}


.enquiry-form label{
    float: left;
    width: 100%;
    font-weight: normal;
    color: #000;
    font-family: 'Poppins', sans-serif; font-weight: 400;
    font-size: 16px;
    padding-bottom: 6px;
}

.enquiry-form  input {
    float: left;
    width: 100%;
    padding: 7px 12px;
    border: 1px solid #e3e3e3;
    margin-bottom: 18px;
}

.enquiry-form  textarea {
    float: left;
    width: 100%;
    padding: 7px 12px;
    border: 1px solid #e3e3e3;
    margin-bottom: 18px;
}


video {
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0; position: absolute;
}



.viewport-header {
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.6); 
}

.viewport-header h1 {
  font-family: 'Dosis', sans-serif;
  color: #fff;
  text-transform: uppercase;

  line-height: 1.6;
      font-weight: 800;
    font-size:70px;
  text-align: center; letter-spacing: 2px;}

 .viewport-header h1 span {
    display: block;
    font-family: 'Playfair Display', serif;
    color: #ffcc00;
    font-size: 90px;
    
  }


/*.content video {
  width: 100%;
  display: block;
}
.content:before {
  content: '';
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}*/

/*video {
  object-fit: cover;
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
}

.header12{
  position: relative;
  color: white;
  text-shadow: 1px 1px 8px rgba(0,0,0,0.6);
}*/


.about-section {
    padding: 100px 0px 100px;
}

.about-left {
    width: 45%;
    float: left;
    margin-right: 10%;
   
}

.about-left h6 {
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    color: #183241;
    margin-bottom: 15px;
    text-align: left;
    font-weight: 300;
        padding-top: 34px;
}

.about-left h6 span{
    color: #22592f;
    font-style: italic;
    font-size: 13px;
    line-height: 0.8em;
}

.about-left h2 {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    font-family: 'Poppins', sans-serif;
    /* font-style: italic; */
    margin-top: 50px;
    text-align: left;
    line-height: 38px;
  }

.about-left h2 span{
    color: #12812c;
    font-style: italic;
 }

.about-left p {
    font-size: 16px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    color: #000;
    margin-bottom: 20px;
    text-align: justify;
    line-height: 30px;
}


.about-right {
    width: 45%;
    float: left;

   
}

.txtbox h2{
	    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 38px;
    line-height: 30px;
    color: #fff;
    margin-bottom: 30px;
}

.txtbox h2 span{
	/*float: left;*/
	color: #ffc600;
	width: 100%; padding-bottom: 20px;
}

.txtbox p{
	font-family: 'Poppins', sans-serif; 
   font-weight: 400;
       font-size: 17px;
    line-height: 40px; color: #fff;
}


.product-section{    background-color: #fff;
    padding: 100px 0 65px;}

.product-section-left{width: 20%; float: left; margin-right: 10%;}

.product-section-left h2{font-family: "Playfair Display", serif;
    color: #000;
    font-size: 36px;
    font-weight: 600;
    line-height: 45px;margin-bottom: 0px;}

.product-section-center{width: 40%; float: left; margin-right: 15%;}

.product-section-center p{font-family: 'Roboto', sans-serif;
    color: #afafaf;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0.5px;
    padding-top: 10px; text-align: justify;}

.product-section-right{width: 15%; float: left;}

.product-section-right .product-btn{
      border: 1px solid #f37330;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.5px;
    font-family: 'Roboto', sans-serif;
    height: 82px;
    width: 82px;
    text-align: center;
    display: inline-block;
    padding-top: 16px;
    margin-top: 6px;
    background-color: #f37330;
   }

.product-section-right .product-btn:hover{
  border: 1px solid #dc5813;
    background-color: #f37330;
    color: #000;
   }

.product-text-left{width: 30%; float: left; margin-right: 10%;    margin-top: 100px;}

.product-text-left img{width: 82%;}

.product-text-left h6{
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.2em;
    text-transform: uppercase;
    letter-spacing: 0.8px;  font-style: italic; margin-bottom: 30px
}
.product-text-left h6 span{    color: #e31e24;
    font-style: italic;font-size: 13px;line-height: 0.8em;}

.product-text-left h2{
            color: #202C39;
    font-family: "Playfair Display", serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.6em;}
.product-text-left h2 span{    color: #f03800;
    font-style: italic;line-height: 1.2em;}

.product-text-left p{
        color: #202C39;
    font-size: 14px;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 25px;
    padding: 30px 0 40px;
}

.product-text-left a{
        color: #000824;
    font-size: 14px;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 25px;
    text-transform: uppercase;
    text-decoration: underline;
   
}


.product-text-right{width: 60%; float: left; margin-right: 0%}

.product-box{    
  border-top: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
    padding-top: 54px;
    padding-bottom: 34px;
    display: inline-block;
    color: #000;}

.product-box:hover{    
  background-color: #f9f9f9; 
  padding-top: 54px;
  padding-bottom: 34px; 
  padding-right: 35px;
  padding-left: 35px;    
  transition: ease-in-out 0.5s !important; 
  cursor: pointer;}


.product-box h2{
    font-size: 24px;
    letter-spacing: 0.5px;
     font-family: "Playfair Display", serif; font-weight: 400;
     color: #202C39;
}

.product-box p{
       font-size: 14px;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    line-height: 25px;
}

.product-box-1{width: 5%; float: left; margin-right: 5%; padding-top: 15px;}

.product-box-1 h2{font-size: 32px;font-family: "Gilda Display", serif;}

.product-box-2{width: 30%; float: left; margin-right: 7%}

.product-box-3{width: 45%; float: left; margin-right: 3%}

.product-box-4{width: 5%; float: left;}

.product-box-4 i {border-radius: 50%;
    color: #202C39;
    font-size: 20px;
    height: 60px;
    width: 60px;
    background-color: #F9F9F9;
    display: block;
    line-height: 60px;
    text-align: center;}

.product-box:hover .product-box-4 i{    background-color: #f03800; color: #fff;}

.brands-section{padding: 120px 0 70px; background-color: #000}

.brands-section h6{
  color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.2em;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-style: italic;
    margin-bottom: 15px;
     text-align: center;
  }
  .brands-section h6 span {
    color: #fff;
    font-style: italic;
    font-size: 13px;
    line-height: 0.8em;
}

.brands-section h2 {
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2em;
    margin-bottom: 80px;
    font-style: italic;
    text-align: center;
}
.brands-section h2 span {
    color: #fff;
    font-style: italic;
}

.footer{background: #000; border-top: 1px solid #3f3f3f;}

.footer-left{width: 38%; float: left; margin-right: 6%; border-right: 1px solid #3f3f3f; padding-right: 5%;min-height: 495px;}

.footer-right{width: 56%; float: left; margin-right: 0%;}

.footer-about{padding-top: 80px}

.footer-about h3 {
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.2em;
    margin-bottom: 30px;
    /* font-style: italic; */
    text-align: left;
}

.footer-about p{
    color: #fff;
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.8px;
    line-height: 29px;
    padding-bottom: 25px;
}

.footer-about a {
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 25px;
    text-transform: uppercase;
    text-decoration: underline;

}

.footer-quicklinks{padding-top: 80px; border-bottom: 1px solid #3f3f3f}

.footer-quicklinks h3 {
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2em;
    margin-bottom: 20px;
    /* font-style: italic; */
    text-align: left;
}

.footer-quicklinks p{
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.8px;
    line-height: 29px;
        margin-bottom: 0rem;
}
.footer-quicklinks p a{
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.8px;
    line-height: 29px;
        margin-bottom: 0rem;
}
.footer-quicklinks p a:hover{color: #f03800;}

.footer-links-1{width: 30%; float: left; margin-right: 5%; margin-bottom: 30px}

.footer-links-2{width: 30%; float: left; margin-right: 5%; margin-bottom: 30px}

.footer-links-3{width: 30%; float: left; margin-right: 0%; margin-bottom: 30px}

.footer-links-3 h4{
  color: #fff;
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2em;
    margin-bottom: 25px;
    /* font-style: italic; */
    text-align: left;
  }
.footer-links-3 h6{
      color: #fff;
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.8px;
    line-height: 21px;
  }

.input-box{width: 100%; background: #0d2a49; border-radius: 7px; padding: 5px 20px}

.input-box input{width: 100%; height: 36px; background: transparent; border:0; }

.input-box {
  position: relative;
  color: #454545; font-family: 'Poppins', sans-serif;
  font-size: 20px;
}
.input-box input::placeholder{font-family: 'Poppins', sans-serif;}
.input-box .fa-paper-plane-o  {
  position: absolute;
      top: 11px;
    right: 21px;
  color: #fff;
}

.copyrights{padding-top: 15px;  }

.copyrights p {
  
  color: #454545; font-family: 'Poppins', sans-serif;
  font-size: 14px;
}

.copyrights-left{width: 35%; float: left}

.copyrights-left ul li{float: left; padding-right: 15px; color: #fff;}

.copyrights-right{width: 65%; float: left;font-family: 'Poppins', sans-serif; color: #fff; font-size: 14px;font-weight: 300;}

.solutions-section{background-color: #000; padding: 70px 0 40px;}

.solutions-section-left{width: 22%; float: left; margin-right: 8%;}

.solutions-section-left h2{    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    line-height: 60px;
    margin-bottom: 0px;}

.solutions-section-center{
    width: 45%;
    float: left;
    margin-right: 10%;
}

.solutions-section-center p{font-family: 'Poppins', sans-serif;
    color: #fff;
    font-size: 15px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.8px;
    padding-top: 10px; text-align: left;}

.solutions-section-right{width: 15%; float: left;}

.solutions-section-right .solutions-btn {
    border: 1px solid #fff;
    border-radius: 50%;
    color: #000;
    font-size: 26px;
    line-height: 58px;
    letter-spacing: 0.5px;
    font-family: 'Roboto', sans-serif;
    height: 75px;
    width: 75px;
    text-align: center;
    display: inline-block;
    padding-top: 16px;
    margin-top: 17px;
    background-color: #fff;
}
.solutions-section-right a:hover .solutions-btn{
  border: 1px solid #f03800;
    background-color: #f03800;
    color: #fff;
    
  }
  .solutions-section-right a:hover .solutions-btn img{
  
    transform: rotate(43deg);
    filter:brightness(0) invert(1)
   }


.banner-section{background: #fafaf5 url(../images/banner-image-1.jpg) no-repeat scroll right bottom; height: 100vh; position: relative; background-size: 100%;}

.banner-text {position: absolute;top:350px;}

.banner-text h1{font-family: 'Poppins', serif; color: #fff; font-size: 62px; font-weight: 600; width: 50%; line-height: 80px; margin-bottom: 35px;}

.banner-text p{font-family: 'Poppins', serif; color: #fff; font-size: 18px; font-weight: 400; width: 43%; line-height: 40px;}

.justify-content-center{justify-content:center!important}




/*====================================================================
                            inner-pages
=====================================================================*/





/*======================*/
.page-header {
    /* background: linear-gradient(rgba(1, 10, 53, .8), rgba(1, 10, 53, .8)), url(../images/bg-image.jpg) center center no-repeat; */
    background-size: cover;
    padding: 180px 0px;
    text-align: center;
    /* margin-top: 80px; */
}

.page-header .breadcrumb-item a,
.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #F6F7F8;
    font-weight: 500;
}
.breadcrumb-item + .breadcrumb-item::before {
    float: left;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    content: var(--bs-breadcrumb-divider, "/");
}
.page-header .breadcrumb-item a:hover,
.page-header .breadcrumb-item.active {
    color: #f03800;
    font-weight: 500;
}
.page-header h1{
  color: white;
  font-size: 48px;
  font-weight: 700;
}
.breadcrumb{display: flex;}





.cabinets-section {
    padding: 75px 0 60px;
}
.cabinets-left {
    width: 55%;
    float: left;
}
.cabinets-right {
    width: 45%;
    float: left;
}
/* .cabinets-right h3 {
    background: rgba(255, 255, 255, .8);
    padding: 2.25rem;
    font-family: "Poppins", serif;
    font-size: 32px;
    line-height: 43px;
    color: #000;
    font-weight: 600;
    margin-top: 130px;
    margin-bottom: 25px;
}
.cabinets-right h3 span{
    font-family: "Roboto", serif;
    text-align: left;
    font-size: 16px;
    margin-bottom: 22px;
    color: #000;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 30px;
} */
.cabinets-right p {
    font-family: "Roboto", serif;
    text-align: left;
    font-size: 16px;
    margin-bottom: 22px;
    color: #000;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 30px;
    padding-top: 0px;
    padding-left: 145px;
}

.services-headng h2 {
    color: #202C39;
    font-family: "Playfair Display", serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.4em;
    margin-bottom: 0px;
    margin-top: 75px;
    /* font-style: italic; */
    text-align: center;
}
.services-headng h2 span {
    color: #f03800;
    /* font-style: italic; */
    line-height: 1.2em;
}

.cabinets-right-2-box{
  background: rgba(255, 255, 255, .8);
    padding: 2.25rem;
    margin-top: 130px;
    margin-bottom: 25px;
    position: relative;
    /* z-index: 9999; */
    text-align: left;
}
.cabinets-right-2-box h3{
    font-family: "Poppins", serif;
    font-size: 32px;
    line-height: 43px;
    color: #000;
    font-weight: 600;
    margin-top: 0px;
    margin-bottom: 10px;
}
.cabinets-right-2-box h6 {
    font-family: "Roboto", serif;
    text-align: left;
    font-size: 16px;
    margin-bottom: 0px;
    color: #000;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 30px;
}
.cabinets-section-1 {
    padding: 10px 0 0px;
}
.cabinets-left-1 {
    width: 55%;
    float: left;
}
.cabinets-left-1 img {
  margin-left: -97px;
  height: 490px;
  width: 113.5%;
}
.cabinets-right-1 {
    width: 45%;
    float: left;
}
.cabinets-right-1-box{
    background: rgba(255, 255, 255, .8);
    padding: 2.25rem;
    margin-top: 115px;
    margin-bottom: 25px;
    position: relative;
    /* z-index: 9999; */
    text-align: end;
}
.cabinets-right-1-box h3 {
    font-family: "Poppins", serif;
    font-size: 32px;
    line-height: 35px;
    color: #000;
    font-weight: 600;

}
.cabinets-right-1-box h6 {
  font-family: "Roboto", serif;
    text-align: right;
    font-size: 16px;
    margin-bottom: 0px;
    color: #000;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 30px;
}

.cabinets-right-1 p {
    font-family: "Roboto", serif;
    text-align: right;
    font-size: 16px;
    margin-bottom: 22px;
    color: #000;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 30px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 150px;
}









.career-box-left {
    background: #202C39;
    padding: 25px;
    width: 40%;
    float: left;
    border-radius: 5px 0px 0px 5px;
}

.career-box-left h5 {
    color: #fff;
    font-family: 'roboto';
    font-size: 20px;
    text-align: center;
    font-weight: 500;
    padding-bottom: 25px;
}
.career-box-left p {
    color: #fff;
    font-family: 'roboto';
    font-size: 15px;
    text-align: center;
    line-height: 30px;
    padding-bottom: 70px;
}
.career-box-right {
    background: #fff;
    padding: 45px 75px 35px;
    width: 60%;
    float: left;
    border-radius: 0px 5px 5px 0px;
}
.career-box-right h4 {
    color: #000;
    font-family: 'roboto';
    font-size: 26px;
    text-align: left;
    font-weight: 500;
    padding-bottom: 15px;
}
.logregform.two {
    float: left;
    width: 100%;
}
.logregform .feildcont {
    float: left;
    width: 100%;
    text-align: left;
}
.one_half {
    width: 48%;
}
.last {
    margin-right: 0 !important;
    clear: right;
}
.logregform .feildcont label {
        float: left;
    width: 100%;
    font-weight: normal;
    color: #000;
    font-size: 14px;
    margin-bottom: 0px;
    letter-spacing: 0;
}
.logregform .feildcont label em{
    color: #ff2400;
    font-size: 14px;
}
.logregform.two .feildcont input {
    margin-bottom: 18px;
}
.logregform .feildcont input {
    float: left;
    width: 100%;
    padding: 11px 12px;
    border: 1px solid #e3e3e3;
    margin-bottom: 12px;
    border-radius: 3px;
    height: none;
}
.one_half, .one_third, .one_fourth, .two_third, .three_fourth, .one_fifth, .onecol_forty, .onecol_sixty, .onecol_thirtyfive {
    position: relative;
    margin-right: 4%;
    float: left;
}
.logregform .feildcont .fbut {
    float: left;
    background: #ff2400;
    padding: 15px 23px;
    border: none;
    border-radius: 3px;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Raleway', sans-serif;
    transition: all 0.3s ease;
    margin-top: 18px;
}
.featured_section900{margin: 100px 0px;}
.career-box {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 5px;
}
.career-box-left img {
    float: center;
    width: 80px;
    color: #fff;
    padding-bottom: 0px;
}


/*--------------------- contact sections -----------------------------*/

.contactsection {
    background-color: #fbf9fa;
    padding: 90px 0px 80px;
}
.contact-box {
    background-color: #fff;
    padding: 44px 30px 66px;
    border-radius: 8px;
}

.textarea{
    width: 100% !important;
    height: 100px !important;
}

.form-input{
    width: 100% !important;
    height: 40px;
    padding: 10px;
    margin-bottom: 30px;
    border: 1px solid;
    border-color: #ebe6e7;
    font-size: 16px;
    color: #ebe6e7;
    border-radius: 5px;
}
input::placeholder,
textarea::placeholder {
  color: #a0a0a0; /* Change this to any color you want */
  opacity: 1;     /* Make sure it's fully visible */
}
.placeholder{
    color: #ebe6e7;
}
.topinput{
    width: 50% !important;
    margin-right: 3%;
}
.topinput-1{
    width: 50% !important;
}
.topinput-mgrtp{display: flex;}

.submitbut{
    float: left;
    background: #ff2400;
    padding: 15px 23px;
    border: none;
    border-radius: 3px;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Raleway', sans-serif;
    transition: all 0.3s ease;
   
}
.submitbut a{color: white;}
.contacttext-icon{
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}
.contacttext-icon p{
    margin: 0px;color: #000;
}
.contacttext-icon i{
    padding-top: 5px;
    font-size: 20px;
    color: #000;
}
.contacttext-ee h4{
    font-size: 1.125rem;
    font-weight: 700;
    color: #000;
}
.contacttext-right{
    padding: 45px 0px 0px 20px;
}
.section-head {
    text-align: center;
    margin-bottom: 57px;
}
.section-head h6 {
    color: #f54a00;
    font-weight: 700;
    font-size: 17px;
    margin: 0%;
}
.section-head h4 {
    color: #0f172b;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 20px;
    margin-top: 12px;
}
.map-totl {
    margin: 67px 0px 0px 0px;
}

/*================================================================================*/


.industries-section-1 {
  position: relative; /* Make container relative */
}

.industries-section-1::before {
  content: ""; /* Required to display the pseudo element */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; /* Use bottom for full height */
  background-color: rgba(0, 0, 0, 0.5); /* Black with 50% opacity */
  width: 100%;
  height: 100%;
  z-index: 1; /* Layer on top */
}

.industries-section{
    padding: 90px 0px 55px;
    background-color: #fbf9fa;
}
.industries-sectionhead h1 {
    color: #202C39;
    font-family: "Playfair Display", serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.4em;
    margin-bottom: 15px;
    margin-top: 5px;
    text-align: center;
}
.industries-sectionhead h1 span {
    color: #f03800;
    line-height: 1.2em;
}
.industries-sectionhead p {
    font-family: "Roboto", serif;
    text-align: center;
    font-size: 16px;
    /* margin-bottom: 22px; */
    margin: 0px auto 22px;
    color: #000;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 30px;
    padding-top: 0px;
    /* padding-left: 145px; */
    width: 50rem;
}


.tw-est-section-block {
    height: 600px;
    margin-top: 10px;
    position: relative;
    z-index: 1;
    border: 15px solid transparent;
    transition: .5s all ease;
}
.tw-est-section-block:hover {
    border: 15px solid rgba(255, 255, 255, .5);
    background-color: #0006;
}
.tw-est-section-block:hover .tw-est-section-block-content {
    transform: translate3d(0, -67px, 0);
        bottom: 13px;
    padding: 17px;
}
.tw-est-section-block .tw-est-section-block-content {
    position: absolute;
    left: 0px;
    bottom: 40px;
    color: #fff;
    padding: 10px;
    transform: translateZ(0);
    transition: opacity .35s, transform .8s;
}
.tw-est-section-block .tw-est-section-block-content .tw-est-section-number {
    font-size: 80px;
    font-family: Oswald, sans-serif;
    font-weight: 700;
}
.tw-est-section-block .tw-est-section-block-content .tw-title {
    color: #fff;
    font-size: 18px;
    line-height: 30px;
}





/* ======================================================================================= */

.pq-section {
    text-align: center;
    margin-bottom: 40px;
  }

  .pq-section-sub-title {
    display: block;
    font-size: 14px;
    color: #f03800;
    margin-bottom: 10px;
    letter-spacing: 1px;
  }

  .pq-section-title {
    font-size: 28px;
    font-weight: bold;
    color: #f8fafc;
    position: relative;
  }

  /* Tabs */
  .pq-tabs-1 {
    /* background: #ffffff; */
    border-radius: 10px;
    padding: 10px;
  }

  .nav-tabs {
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    border-bottom: none !important;
  }

  .nav-tabs a {
    flex: 1 1 auto;
    text-align: left;
    padding: 8px 20px;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    /* background: #3b82f6; */
    color: #f8fafc;
    font-weight: 500;
    transition: 0.3s;
  }

  .nav-tabs a.active {
    background: #f8fafc;
    color: #f03800;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }

  .tab-content {
    width: 100%;
    margin-left: 10px;
    margin-top: 0px;
    background: #ffffff;
    border-radius: 10px;
    padding: 30px 30px 15px 15px;
  }

  .tab-pane {
    display: none;
  }

  .tab-pane.active {
    display: block;
  }

  .tab-pane img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 0px;
    height: 355px;
  }
.pq-tabs-1 .nav:before {
    display: inherit;
    content: none;
}
.pq-tabs-1 .nav:after {
    display: inherit;
    content: none;
}
  .pq-tab-info {
    color: #f8fafc;
    margin-left: -10px !important;
  }

  .pq-tab-info h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .pq-tab-info ul {
    list-style: none;
    padding-left: 0;
  }

  .pq-tab-info ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
  }

  .pq-tab-info ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
  }

  @media (min-width: 768px) {
    .tab-row {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .tab-row img {
      flex: 1;
    }

    .pq-tab-info {
      flex: 1;
    }
  }

  .tabs_service{
     padding: 60px 0px;
    /* background: linear-gradient(135deg, #0ea5e9, #1e40af); */
    background-color: #202C39;
  }

.pq-tab-info h3 {
    font-size: 26px;
    margin-bottom: 10px;
    line-height: 1.4;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    /* font-style: italic; */
    color: #f03800;
} 

.pq-tab-info p {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    width: 100%;
    line-height: 32px;
}


.nav-tabs a i{
    font-weight: 700;
    margin-left: 4px;
    text-align: right;
    float: right;
    margin-top: 6px;
}
.nav-tabs a.active i{
    font-weight: 900;
}
.aboutpage-heading{
    color: #f03800;
    font-family: "Playfair Display", serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.4em;
    margin-bottom: 15px;
    margin-top: 100px;
    text-align: center;
}

/*=========================================================================*/


.menu-toggle{display:none !important;}

.onlyon-phone{display: none !important;}

.servicesection-onlyonphone{display: none !important;}
