@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
/* Font face*/
/* @font-face {
	font-family: 'Futura LT Book';
	src: url("../fonts/FuturaLT-Light.woff2") format("woff2"), url("../fonts/FuturaLT-Light.woff") format("woff");
	font-weight: 300;
	font-style: normal;
}
@font-face {
	font-family: 'Futura LT Book';
	src: url("../fonts/FuturaLT-Book.woff2") format("woff2"), url("../fonts/FuturaLT-Book.woff") format("woff");
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'Futura LT Book';
	src: url("../fonts/FuturaLT-BookOblique.woff2") format("woff2"), url("../fonts/FuturaLT-BookOblique.woff") format("woff");
	font-weight: normal;
	font-style: italic;
}
@font-face {
	font-family: 'Futura LT Book';
	src: url("../fonts/FuturaLT-Bold.woff2") format("woff2"), url("../fonts/FuturaLT-Bold.woff") format("woff");
	font-weight: bold;
	font-style: normal;
} */

/*----------------------------------------*/
/* Template default CSS
/*----------------------------------------*/

html,
body {
	height: 100%;
	/* font-family: 'Futura LT Book', sans-serif; */
	font-family: 'Open Sans', sans-serif !important;
	/* font-family: 'Lato', sans-serif !important; */
    -webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	color: #081624;
	font-weight: 700;
}

h1 {
	font-size: 70px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

p {
	font-size: 16px;
	color: #60656b;
	line-height: 1.8;
}

img {
	max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
	outline: none;
}

a:hover,
a:focus {
	text-decoration: none;
	outline: none;
}

ul,
ol {
	padding: 0;
	margin: 0;
}

/*---------------------
		Helper CSS
	-----------------------*/

.set-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
	color: #fff;
}

section.mt-50 {
	margin-top: 50px;
}
section.mt-100 {
	margin-top: 100px;
}

/* Scroll bar css ...  */
/* width */
::-webkit-scrollbar {
	-webkit-width: 8px;
	-moz-width: 8px;
	width: 8px;
	-webkit-height: 5px;
	-moz-height: 5px;
	height: 5px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 5px grey; 
	box-shadow: inset 0 0 5px grey;
	-webkit-border-radius: 5px;
	border-radius: 5px;
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
	-webkit-background: red;
	-moz-background: red;
	background: red;
	-webkit-border-radius: 5px; 
	-moz-border-radius: 5px; 
	border-radius: 5px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
	-webkit-background: #b30000;
	-moz-background: #b30000;
	background: #b30000; 
  }
/* Scroll bar css ...  */

/* Social media link icon css ...  */
.social-icon-container {
	position: fixed;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
	z-index: 9;
  }
  .media-icons {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	justify-content: center;
	background-color: #ff0000a8;
	padding: 6px;
	border-radius: 6px;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
	/* transform: translateX(-100%); */
	transform: translateX(5%);
	transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  .close-btn.open ~ .media-icons {
	transform: translateX(5%);
  }
  .media-icons a {
	text-decoration: none;
	position: relative;
	height: 35px;
	width: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	margin: 6px;
  }
  .media-icons a i {
	color: #fff;
  }
  .close-btn .tooltip {
	position: absolute;
	left: 55px;
	font-size: 14px;
	font-weight: 500;
	pointer-events: none;
	background-color: #fff;
	padding: 4px 8px;
	border-radius: 4px;
	opacity: 0;
	transition: all 0.2s linear;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
	width: 130px;
    top: -160%;
    left: 26%;
  }
  .close-btn:hover .tooltip {
	opacity: 1;
	transform: translate(3%, 0%) rotate(-45deg);
  }
  .close-btn .tooltip::before {
	content: "";
	position: absolute;
	height: 10px;
	width: 10px;
	top: 20%;
	left: -5px;
	transform: translateX(50%) rotate(-45deg);
	/* background-color: #fff; */
  }
  .media-icons a .tooltip {
	position: absolute;
	left: 55px;
	font-size: 14px;
	font-weight: 400;
	pointer-events: none;
	background-color: #fff;
	padding: 4px 8px;
	border-radius: 4px;
	transform: translateY(-25px);
	opacity: 0;
	transition: all 0.2s linear;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  }
  a:hover .tooltip {
	opacity: 1;
	transform: translateY(0);
  }
  a .tooltip::before {
	content: "";
	position: absolute;
	height: 10px;
	width: 10px;
	top: 50%;
	left: -5px;
	transform: translateY(-50%) rotate(45deg);
	background-color: #fff;
  }
  .close-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 35px;
	width: 35px;
	border-radius: 50%;
	color: #fff;
	font-size: 18px;
	margin-top: 20px;
	background-color: #081624;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
	cursor: pointer;
	transform: rotate(45deg);
	transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  .close-btn.open {
	transform: rotate(90deg);
	background-color: #de0611;
  }
/* Social media link icon css ...  */

/*---------------------
		Commom elements
	-----------------------*/

.elements-section {
	padding-top: 130px;
}

.element {
	margin-bottom: 70px;
}

.el-title {
	font-weight: 400;
	margin-bottom: 80px;
}

/* buttons */

.site-btn {
	display: inline-block;
	border: none;
	font-size: 14px;
	font-weight: 400;
	min-width: 186px;
	padding: 23px 20px;
	border-radius: 0;
	text-transform: uppercase;
	background: #081624;
	color: #fff;
	line-height: 1.4;
	cursor: pointer;
	text-align: center;
}

.site-btn:hover {
	color: #fff;
}

.site-btn.sb-white {
	background: #fff;
	color: #081624;
}

.site-btn.sb-white:hover {
	color: #081624;
}

.site-btn.sb-line {
	background: transparent;
	border: 2px solid #081624;
	color: #081624;
}

.site-btn.sb-shap {
	-webkit-transform: skew(32deg);
	transform: skew(32deg);
	min-width: 145px;
	-webkit-transform-origin: center top;
	transform-origin: center top;
}

.site-btn.sb-shap span {
	-webkit-transform: skew(-32deg);
	transform: skew(-32deg);
	display: inline-block;
}

/* Preloder */

#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #171717;
}

.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.8s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 4px solid #E30613;
		border-left-color: transparent;
	}
	25% {
		-webkit-transform: rotate(180deg);
		transform: rotate(90deg);
		border: 4px solid #FECC00;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
		border: 4px solid #E30613;
		border-left-color: transparent;
	}
	75% {
		-webkit-transform: rotate(180deg);
		transform: rotate(270deg);
		border: 4px solid #f4f4f5;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 4px solid #F7A600;
		border-left-color: transparent;
	}
}

.sp-line {
	position: fixed;
	height: 100%;
	width: 1px;
	left: 50%;
	margin-left: -0.003em;
	top: 0;
	background: #081624;
	opacity: 0.15;
	z-index: 99;
}

.sp-line:before,
.sp-line:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 574px;
	background: #081624;
}

.sp-line:before {
	left: -574px;
}

/* Accordion */

.accordion-area .panel {
	margin-bottom: 12px;
}

.accordion-area .panel-header {
	display: block;
	font-weight: 600;
	position: relative;
	border: 2px solid #081624;
	-webkit-transition: all 0.4s ease-out 0s;
	transition: all 0.4s ease-out 0s;
}

.accordion-area .panel-header.active .panel-link {
	color: #fff;
	background-color: #081624;
}

.accordion-area .panel-header.active .panel-link.collapsed {
	color: #081624;
	background-color: transparent;
}

.accordion-area .panel-link:after {
	content: "+";
	position: absolute;
	font-size: 14px;
	font-weight: 400;
	right: 25px;
	top: 50%;
	color: #081624;
	line-height: 16px;
	margin-top: -8px;
	margin-left: -4px;
}

.accordion-area .panel-header.active .panel-link:after {
	content: "-";
	margin-top: -10px;
	color: #fff;
}

.accordion-area .panel-header.active .panel-link.collapsed:after {
	content: "+";
	color: #081624;
}

.accordion-area .panel-link {
	text-align: left;
	background-color: transparent;
	border: none;
	position: relative;
	width: 100%;
	padding: 20px 40px;
	padding-left: 34px;
	font-size: 14px;
	text-transform: uppercase;
	color: #081624;
	font-weight: 400;
	cursor: pointer;
}

.accordion-area .panel-body p {
	margin-bottom: 0;
	padding-top: 30px;
	line-height: 1.9;
}

.accordion-area .panel-body {
	padding: 0 5px;
}

/* Tab */

.tab-element .nav-tabs {
	border-bottom: none;
	margin-bottom: 25px;
}

.tab-element .nav-item {
	margin-right: 10px;
	margin-bottom: 10px;
}

.tab-element .nav-tabs .nav-link {
	border: 2px solid #081624;
	text-align: left;
	background-color: transparent;
	border-radius: 0;
	position: relative;
	width: 100%;
	padding: 20px 35px;
	font-size: 14px;
	text-transform: uppercase;
	color: #081624;
	font-weight: 400;
	cursor: pointer;
}

.tab-element .nav-tabs .nav-item:last-child {
	margin-right: 0;
}

.tab-element .nav-tabs .nav-link.active {
	background: #081624;
	color: #fff;
}

.tab-element .tab-pane p {
	margin-bottom: 0;
	line-height: 1.9;
}

/* Circle progress */

.circle-progress {
	text-align: center;
	display: inline-block;
	position: relative;
	margin-bottom: 30px;
}

.circle-progress canvas {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.circle-progress .progress-info {
	position: absolute;
	width: 100%;
	top: 50%;
	margin-top: -26px;
}

.circle-progress .progress-info h2 {
	line-height: 1;
	font-weight: 700;
}

.circle-progress .progress-info p {
	color: #081624;
	margin-bottom: 0;
	line-height: 1;
}

.cp-item {
	text-align: center;
}

/* milestone */

.milestone i {
	font-size: 72px;
	float: left;
	width: 91px;
	color: #dededf;
}

.milestone .milestone-text {
	overflow: hidden;
	padding-top: 5px;
}

.milestone .milestone-text h2 {
	font-size: 60px;
	color: #081624;
}

.milestone .milestone-text p {
	color: #081624;
}

/* search model */

.search-model {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #000;
	z-index: 99999;
}

.search-model-form {
	padding: 0 15px;
}

.search-model-form input {
	width: 500px;
	font-size: 40px;
	border: none;
	border-bottom: 2px solid #333;
	background: none;
	color: #999;
}

.search-close-switch {
	position: absolute;
	width: 50px;
	height: 50px;
	background: #333;
	color: #fff;
	text-align: center;
	border-radius: 50%;
	padding-top: 7px;
	font-size: 21px;
	top: 30px;
	cursor: pointer;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

/*------------------
		Header section
	---------------------*/

.header-section {
	background: rgb(175,175,175);
	background: linear-gradient(0deg, rgba(175,175,175,1) 0%, rgba(255,255,255,1) 73%);
	text-align: center;
	/* padding: 0px 90px; */
	position: relative;
	max-height: 105px;
	border-bottom: 4px solid #7b7b7b;
}
/* .header-section ul.main-menu-left, ul.main-menu-right {
	padding: 30px 0;
} */
.site-logo {
	display: inline-block;
	box-shadow: 0px -55px 10px 6px rgba(145, 145, 145, 0.5);
	z-index: 1;
	/* padding-right: 80px; */
}

.site-menu-style {
	list-style: none;
	display: contents;
	/* flex-wrap: wraps; */
}

.site-menu-style li {
	display: inline-block;
}

.site-menu-style li a {
	font-size: 14px;
	text-transform: uppercase;
	color: #161024;
	/* margin-right: 50px; */
	padding: 30px 0px;
	display: inline-block;
}
.site-menu-style li a img {
	margin: 6px auto;
}
.site-menu-style li a span {
	margin-bottom: 5px;
}
.site-menu-style li:last-child a {
	margin-right: 0;
}
.site-menu-style li a:hover {
	color: red;
	background-color: #fff;
}
/* .main-menu-left {
	float: left;
	display: flex;
	justify-content: center;
	align-items: center;
} */
.main-menu-left li a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	box-shadow: 0px 2px 5px 0px rgba(145,145,145,1);
	/* padding: 10px 20px; */
	/* background-color: #fff; */
	border-top: 3px solid red;
	min-width: 115px;
	max-height: 100px;
	transition: background-color 1s ease-out 50ms;
}
/* .main-menu-right {
	float: right;
	padding-right: 16px;
} */
.main-menu-right li a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	box-shadow: 0px 2px 5px 0px rgba(145,145,145,1);
	/* padding: 10 20px; */
	/* background-color: #673ab7; */
	border-top: 3px solid red;
	min-width: 115px;
	max-height: 100px;
	transition: background-color 2s ease-out 100ms;
}
.menu-text-one {
	font-weight: 700;
}
.menu-text-two {
	font-weight: 500;
}
.mobile-nav-switch,
.mobile-menu {
	display: none;
}
.search-switch {
	position: absolute;
	display: block;
	height: 100%;
	width: 92px;
	right: 0;
	top: 0;
	padding-top: 30px;
	background: #fff;
	text-align: center;
	cursor: pointer;
}
.search-switch img {
	display: block;
	margin: 0 auto;
}
section.section h2 {
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 5px solid #e30613;
}
.header_menu li.active a {
	background: none;
	color: red;
	background-color: #fff;
}
/* Apex home page css ...  */
.apex-pioneer p {
	font-size: 20px;
}
.apex-corporate-social h3 {
	display: inline-block;
    padding-bottom: 5px;
	border-bottom: 3px dashed #e30613;
}
.apex-corporate-social p {
	font-size: 20px;
}
.apex-corporate-social ul li {
	font-size: 18px;
}
.about-us-text {
	background: #dedede86; 
	border-radius: 0 10px 10px 0;
}
.about-us-text p {
	font-size: 20px;
}
.career-text p {
	font-size: 20px;
}
.footer-social-icon a {
	display: inline-block;
	width: 35px !important;
	height: 35px !important;
	background-color: rgba(255, 0, 0, 0.7); 
	border-radius: 50%;
}
.footer-social-icon a i {
    line-height: 2.2;
    margin-left: 9px;
}
.about-info {
	border-radius: 10px;
}
.career-info {
	border-radius: 10px;
}
/*------------------
	 Hero section
 ---------------------*/

.hero-section {
	position: relative;
}

.hero-social-links {
	position: absolute;
	right: 39px;
	top: 240px;
	z-index: 99;
}

.hero-social-links a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 22px;
	color: #fff;
	font-size: 13px;
	border-radius: 50%;
	background: #081624;
}

.brand-text {
	font-size: 14px;
	color: #fff;
	text-transform: uppercase;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 95;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	-webkit-transform-origin: right top;
	transform-origin: right top;
	margin-right: 50px;
}

.hero-slider .owl-nav {
	position: absolute;
	left: 0;
	bottom: 0;
}

.hero-slider .owl-nav button.owl-prev,
.hero-slider .owl-nav button.owl-next {
	width: 84px;
	height: 84px;
	font-size: 24px;
	color: #081624;
	background: #fff;
}

.hero-slider .owl-nav button.owl-prev {
	color: #fff;
	background: #081624;
}

.hero-slider-item {
	padding-top: 170px;
	padding-bottom: 214px;
}

.hero-slider-item .hs-content {
	text-align: center;
	padding-top: 179px;
	padding-bottom: 102px;
	background-image: url("../img/hero-overlay.png");
	background-repeat: no-repeat;
	background-size: cover;
}

.hero-slider-item .hs-content h2 {
	font-size: 160px;
	font-weight: 700;
	color: #081624;
	margin-bottom: 42px;
	position: relative;
	top: 50px;
	opacity: 0;
}

.hero-slider-item .hs-content .site-btn {
	position: relative;
	top: 20px;
	opacity: 0;
}

.hero-slider-item .hs-content .sb-white {
	margin-right: 24px;
}

.owl-item.active .hero-slider-item .hs-content h2,
.owl-item.active .hero-slider-item .hs-content .site-btn {
	opacity: 1;
	top: 0;
}

.owl-item.active .hero-slider-item .hs-content h2 {
	-webkit-transition: all 0.5s ease 0.4s;
	transition: all 0.5s ease 0.4s;
}

.owl-item.active .hero-slider-item .hs-content .site-btn {
	-webkit-transition: all 0.5s ease 0.6s;
	transition: all 0.5s ease 0.6s;
}

.owl-item.active .hero-slider-item .hs-content .sb-white {
	-webkit-transition: all 0.5s ease 0.8s;
	transition: all 0.5s ease 0.8s;
}

/*------------------
	 Quote section
 ---------------------*/

.quote-section {
	padding: 125px 0;
}

.quote-text p {
	font-size: 36px;
	font-style: italic;
	margin-bottom: 28px;
	color: #081624;
}

/*------------------
	 Portfolio section
 ---------------------*/

.portfolio-gallery:before,
.portfolio-gallery:after {
	position: absolute;
	content: "";
	left: 0;
	top: -68px;
	width: 459px;
	height: 590px;
	background-image: url("../img/portfolio-overlay.png");
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -1;
}

.portfolio-gallery:after {
	top: auto;
	left: auto;
	right: 0;
	bottom: -93px;
}

.portfolio-item {
	width: 20%;
	float: left;
	position: relative;
}

.portfolio-item.--big {
	width: 40%;
}

.portfolio-item.--big.--wide {
	width: 60%;
}

.portfolio-item .portfolio-view {
	position: absolute;
	width: 100%;
	height: 80%;
	top: 10%;
	font-size: 24px;
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background: #161024;
	opacity: 0;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.portfolio-item:hover .portfolio-view {
	opacity: 1;
	top: 0;
	height: 100%;
}

/*------------------
	 About section
 ---------------------*/

.about-secton {
	padding: 128px 0 115px;
	overflow: hidden;
}

.about-secton .container {
	position: relative;
}

.about-img {
	position: absolute;
	right: -63px;
	top: 0;
}

.about-text h2 {
	font-size: 48px;
	margin-bottom: 50px;
	font-weight: 400;
	padding-top: 33px;
}

.about-text p {
	margin-bottom: 50px;
}

.about-img-box {
	position: relative;
}

.about-img-box:after {
	position: absolute;
	content: "";
	width: calc(100% + 115px);
	height: calc(100% - 101px);
	left: 0;
	bottom: -112px;
	background-image: url("../img/image-box-bg.png");
	background-repeat: no-repeat;
	background-size: cover;
}

.about-img-box img {
	position: relative;
	z-index: 2;
}

.about-img-box-warp {
	padding-top: 120px;
	padding-bottom: 135px;
}

.about-img-box-warp .about-text-box-warp {
	padding-left: 171px;
	padding-right: 15px;
}

.about-img-box-warp .about-text {
	max-width: 655px;
}

.about-img-box-warp .about-text p {
	margin-bottom: 25px;
}

/* ----------------
	 Shop section
	---------------------*/

.shop-section {
	padding-bottom: 100px;
}

.shop-item {
	text-align: center;
	margin-bottom: 33px;
}

.shop-item img {
	margin-bottom: 40px;
}

.shop-item h3 {
	font-weight: 400;
	margin-bottom: 8px;
}

.shop-item h6 {
	font-size: 16px;
	color: #60656b;
	font-weight: 400;
	font-style: italic;
	margin-bottom: 20px;
}

.shop-item .add-card {
	display: inline-block;
	color: #fff;
	min-width: 130px;
	padding: 11px;
	background: #081624;
}

/* ----------------
	 Newsletter section
	---------------------*/

.newsletter-section {
	padding: 110px 0 104px;
	background: #081624;
}

.newsletter-section h3 {
	font-weight: 400;
	padding-top: 5px;
}

.newsletter-form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.newsletter-form input[type=text] {
	max-width: 556px;
	width: 100%;
	height: 57px;
	font-size: 12px;
	text-transform: uppercase;
	font-style: italic;
	padding: 10px 25px;
	margin-right: 30px;
}

.newsletter-form .site-btn {
	height: 57px;
	padding: 17px 20px;
	min-width: 164px;
}

/* ----------------
		Footer section
	---------------------*/

.footer-section {
	padding: 56px 62px;
}

.copyright {
	padding-top: 14px;
	font-size: 12px;
	color: #081624;
	opacity: 0.23;
}

.footer-contact-list {
	list-style: none;
}

.footer-contact-list li {
	font-size: 15px;
	color: #60656b;
	margin-bottom: 15px;
}

.footer-contact-list li:last-child {
	margin-bottom: 0;
}

.footer-contact-list li span {
	width: 75px;
	color: #081624;
	display: inline-block;
}

/* ----------------
	 Other page
	---------------------
	======================*/

.page-info-section {
	height: 320px;
	position: relative;
	padding: 0 15px;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	overflow: hidden;
}

.page-info-section h2 {
	font-size: 120px;
	color: #fff;
	position: relative;
	top: 26px;
	z-index: 1;
}

.page-info-section:after {
	position: absolute;
	content: "";
	width: 100%;
	height: calc(100% - 64px);
	left: 0;
	bottom: 0;
	background-image: url("../images/about/hero-overlay.png.webp");
	background-repeat: no-repeat;
	background-size: cover;
}
  
/* ----------------
	 About page
	---------------------*/

.about-intor-section {
	padding-top: 90px;
	padding-bottom: 60px;
}

.about-logo {
	padding-top: 150px;
}

.team-section {
	padding-bottom: 135px;
}

.team-member {
	text-align: center;
	margin-bottom: 30px;
}

.team-member .member-pic {
	position: relative;
	display: block;
	margin-bottom: 45px;
}

.team-member .member-pic img {
	min-width: 100%;
}

.team-member .member-pic:after {
	position: absolute;
	content: "+";
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 40px;
	color: #fff;
	background: #161024;
	outline: 2px solid #fff;
	outline-offset: -4px;
	opacity: 0;
	-webkit-transition: all 0.5s cubic-bezier(0.18, 0.89, 0.32, 1.28) 0s;
	transition: all 0.5s cubic-bezier(0.18, 0.89, 0.32, 1.28) 0s;
}

.team-member .member-pic:hover:after {
	font-size: 60px;
	opacity: 0.76;
	outline-offset: -39px;
}

.team-member h3 {
	font-weight: 400;
	margin-bottom: 10px;
}

.team-member span {
	font-size: 18px;
	font-style: italic;
	color: #8d9eaf;
	display: block;
	margin-bottom: 15px;
}

.team-member p {
	margin-bottom: 0;
}

.steps-section {
	padding: 125px 0 135px;
	overflow: hidden;
}

.steps-section .site-btn {
	padding: 23px 51px;
}

.steps-section .container {
	position: relative;
}

.steps-section .step-line {
	position: absolute;
	min-width: 1296px;
	left: -77px;
	top: 6px;
}

.step {
	margin-bottom: 30px;
}

.step h2 {
	font-size: 72px;
	margin-bottom: 20px;
	text-shadow: 19px 9px 0px rgba(8, 22, 36, 0.2);
}

/* ----------------
		Portfolio page
	---------------------*/

.portfolio-page-section {
	padding-top: 130px;
}

.portfolio-page-section .portfolio-gallery:after {
	display: none;
}

.portfolio-filter {
	margin-bottom: 135px;
}

.portfolio-filter li {
	display: inline-block;
	font-size: 24px;
	color: #081624;
	border-bottom: 2px solid;
	border-bottom-color: transparent;
	padding: 0 16px;
	margin-right: 60px;
	cursor: pointer;
}

.portfolio-filter li.active {
	border-bottom-color: #081624;
}

/* ----------------
		Blog page
	---------------------*/

.blog-section {
	padding: 133px 0;
}

.blog-grid .blog-grid-item:nth-child(3) {
	padding-top: 119px;
}

.blog-search-form-warp {
	position: absolute;
	left: 50% !important;
	z-index: 99;
}

.blog-search-form {
	position: relative;
	margin-bottom: -119px;
}

.blog-search-form input {
	width: 100%;
	height: 55px;
	padding-left: 25px;
	padding-right: 40px;
	border: 2px solid #f4f4f5;
}

.blog-search-form button {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	border: none;
	padding: 0 14px;
	background: transparent;
}

.blog-post {
	padding-bottom: 70px;
}

.blog-post img {
	margin-bottom: 52px;
}

.blog-post .blog-date {
	display: inline-block;
	padding: 0 10px;
	font-size: 16px;
	padding: 8px 21px;
	min-width: 143px;
	color: #fff;
	background: #081624;
	margin-bottom: 15px;
}

.blog-post h2 {
	font-weight: 400;
	margin-bottom: 5px;
}

.blog-post .post-metas {
	display: block;
	overflow: hidden;
	margin-bottom: 30px;
}

.blog-post .post-metas .post-meta {
	float: left;
	font-size: 14px;
	color: #8d9eaf;
	padding-right: 17px;
	margin-right: 14px;
	position: relative;
	font-style: italic;
}

.blog-post .post-metas .post-meta:after {
	position: absolute;
	content: "|";
	font-size: 12px;
	color: #8d9eaf;
	right: 0;
	top: 0;
	font-style: italic;
}

.blog-post .post-metas .post-meta:last-child {
	margin-right: 0;
	padding-right: 0;
}

.blog-post .post-metas .post-meta:last-child:after {
	display: none;
}

.blog-post p {
	margin-bottom: 25px;
}

.blog-post .readmore {
	font-size: 18px;
	font-style: italic;
	color: #8d9eaf;
}

/* ----------------
		Contact page
	---------------------*/

.contact-section {
	padding: 133px 0;
}

.contact-title h2 {
	font-weight: 400;
	margin-bottom: 65px;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	height: 68px;
	padding: 0 30px;
	border: none;
	font-size: 14px;
	font-style: italic;
	margin-bottom: 26px;
	background: #f4f5fa;
}

.contact-form textarea {
	padding-top: 29px;
	height: 294px;
}

.contact-info-section {
	padding: 173px 0;
	position: relative;
}

.contact-info-section .container {
	position: relative;
	z-index: 5;
}

.contact-info-section iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

.contact-info-box {
	padding: 90px 15px 93px;
	background: #081624;
	text-align: center;
}

.contact-info-box img {
	margin-bottom: 65px;
}

.contact-info-box ul {
	list-style: none;
}

.contact-info-box ul li {
	font-size: 15px;
	color: #fff;
	margin-bottom: 15px;
}

.contact-info-box ul li:last-child {
	margin-bottom: 0;
}

.contact-info-box ul li span {
	width: 77px;
	display: inline-block;
}

/* ----------------
		Responsive
	---------------------*/

@media (min-width: 1200px) {
	.container {
		max-width: 1176px;
	}
}

/* Medium screen : 992px. */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.sp-line:before {
		left: -465px;
	}
	.sp-line:after {
		left: 465px;
	}
	.header-section {
		padding-left: 0;
		/* padding-right: 90px; */
	}
	.header-section .container {
		max-width: 100%;
	}
	.site-logo {
		box-shadow: 0px -45px 10px 6px rgba(145, 145, 145, 0.5);
		/* padding-right: 25px; */
	}
	.site-menu-style li a {
		margin-right: 25px;
	}
	.hero-social-links {
		top: 120px;
	}
	.hero-slider-item {
		padding-top: 100px;
		padding-bottom: 140px;
	}
	.hero-slider-item .hs-content {
		padding-top: 110px;
		padding-bottom: 80px;
	}
	.hero-slider-item .hs-content h2 {
		font-size: 100px;
	}
	.portfolio-gallery:before,
	.portfolio-gallery:after {
		top: -30px;
		width: 259px;
		height: 390px;
	}
	.portfolio-gallery:after {
		top: auto;
		left: auto;
		right: 0;
		bottom: -35px;
	}
	.about-img {
		max-width: 610px;
	}
	.about-img-box-warp .about-text-box-warp {
		padding-left: 135px;
	}
	.steps-section .step-line {
		min-width: 935px;
		left: -23px;
		top: 15px;
	}
}

/* Tablet :768px. */

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.sp-line {
		display: none;
	}
	.header-section {
		padding-left: 0;
		/* padding-right: 90px; */
	}
	.header-section .container {
		max-width: 100%;
	}
	.site-logo {
		padding-right: 0px;
		box-shadow: 0px -55px 10px 6px rgba(145, 145, 145, 0.5);
	}
	.site-logo img {
		width: 166px;
	}
	.site-menu-style li a {
		margin-right: 10px;
	}
	.hero-social-links {
		top: 120px;
		right: 15px;
	}
	.brand-text {
		margin-right: 27px;
	}
	.hero-slider-item {
		padding-top: 110px;
		padding-bottom: 140px;
	}
	.hero-slider-item .hs-content {
		padding-top: 140px;
		padding-bottom: 100px;
	}
	.hero-slider-item .hs-content h2 {
		font-size: 100px;
	}
	.portfolio-filter li {
		margin-right: 25px;
	}
	.portfolio-gallery:before,
	.portfolio-gallery:after {
		display: none;
	}
	.portfolio-item {
		width: 50%;
	}
	.portfolio-item.--big,
	.portfolio-item.--big.--wide {
		width: 100%;
	}
	.portfolio-item.--disable {
		display: none;
	}
	.about-img-box-warp {
		padding-bottom: 0;
	}
	.about-img {
		position: relative;
		right: 0;
	}
	.about-img-box-warp .about-text-box-warp {
		padding-left: 15px;
	}
	.about-img-box-warp .about-text {
		margin: 0 auto;
	}
	.about-img-box:after {
		display: none;
	}
	.ceo {
		margin-bottom: 0;
	}
	.newsletter-section h3 {
		margin-bottom: 50px;
	}
	.page-info-section h2 {
		font-size: 115px;
		top: 24px;
	}
	.about-logo {
		padding-top: 0;
		margin-bottom: 50px;
	}
	.steps-section .step-line {
		display: none;
	}
	.contact-info-section {
		padding: 0;
	}
	.contact-info-section iframe {
		position: relative;
		width: 100%;
		height: 500px;
	}
	.contact-info-box {
		margin-bottom: 100px;
	}
	.accordion-area {
		margin-bottom: 50px;
	}
	.main-menu-left,
	.main-menu-right {
		display: none;
	}
	.mobile-nav-switch {
		display: block;
		position: absolute;
		right: 0;
		top: 0;
		width: 77px;
		height: 100%;
		font-size: 35px;
		color: red;
		text-align: center;
		padding-top: 28px;
		cursor: pointer;
	}
	.mobile-menu {
		position: absolute;
		left: 0;
		top: 100%;
		width: 100%;
		list-style: none;
		background: #fff;
		z-index: 999;
		padding: 20px 0;
		-webkit-box-shadow: 0 43px 40px rgba(0, 0, 0, 0.15);
		box-shadow: 0 43px 40px rgba(0, 0, 0, 0.15);
	}
	.mobile-menu li {
		display: block;
		text-align: start;
	}
	.mobile-menu li:first-child a {
		border-top: none;
	}
	.mobile-menu a {
		color: #081624;
		display: block;
		padding: 10px 25px;
		border-top: 1px solid #efefef;
		font-size: 14px;
	}
	.menu-text-two {
		display: none;
	}
	.pioneer-image {
		overflow-x: scroll;
		padding: 10px;
	}
	.pioneer-image img {
		max-width: 800px;
	}
	/* Scroll bar css ...  */
	/* width */
	::-webkit-scrollbar {
		-webkit-width: 8px;
		-moz-width: 8px;
		width: 8px;
		-webkit-height: 5px;
		-moz-height: 5px;
		height: 5px;
	}
	
	/* Track */
	::-webkit-scrollbar-track {
		-webkit-box-shadow: inset 0 0 5px grey; 
		box-shadow: inset 0 0 5px grey;
		-webkit-border-radius: 5px;
		border-radius: 5px;
	}
	
	/* Handle */
	::-webkit-scrollbar-thumb {
		-webkit-background: red;
		-moz-background: red;
		background: red;
		-webkit-border-radius: 5px; 
		-moz-border-radius: 5px; 
		border-radius: 5px;
	}
	
	/* Handle on hover */
	::-webkit-scrollbar-thumb:hover {
		-webkit-background: #b30000;
		-moz-background: #b30000;
		background: #b30000; 
	}
	/* Scroll bar css ...  */
}

/* Large Mobile :480px. */

@media only screen and (max-width: 767px) {
	.sp-line {
		display: none;
	}
	.header-section {
		/* padding: 8px 0; */
		padding-right: 90px;
		text-align: left;
	}
	.header-section .container {
		max-width: 100%;
	}
	.search-switch {
		text-align: center;
		width: 77px;
		padding-top: 21px;
		right: 77px;
	}
	.main-menu-left,
	.main-menu-right {
		display: none;
	}
	.mobile-nav-switch {
		display: block;
		position: absolute;
		right: 0;
		top: 0;
		width: 77px;
		height: 100%;
		font-size: 30px;
		color: red;
		text-align: center;
		padding-top: 25px;
		cursor: pointer;
	}
	.mobile-menu {
		position: absolute;
		left: 0;
		top: 100%;
		width: 100%;
		list-style: none;
		background: #fff;
		z-index: 999;
		padding: 20px 0;
		-webkit-box-shadow: 0 43px 40px rgba(0, 0, 0, 0.15);
		box-shadow: 0 43px 40px rgba(0, 0, 0, 0.15);
	}
	.mobile-menu li {
		display: block;
		text-align: start;
	}
	.mobile-menu li:first-child a {
		border-top: none;
	}
	.mobile-menu a {
		color: #081624;
		display: block;
		padding: 10px 25px;
		border-top: 1px solid #efefef;
		font-size: 14px;
	}
	.hero-social-links {
		width: 100%;
		top: 0;
		left: 0;
		text-align: center;
		top: 80px;
	}
	.hero-social-links a {
		display: -webkit-inline-box;
		display: -ms-inline-flexbox;
		display: inline-flex;
		margin-right: 10px;
		margin-bottom: 0;
	}
	.brand-text {
		display: none;
	}
	.hero-slider-item {
		padding-top: 170px;
		padding-bottom: 160px;
	}
	.hero-slider-item .hs-content {
		padding-top: 95px;
		padding-bottom: 95px;
	}
	.hero-slider-item .hs-content h2 {
		font-size: 60px;
	}
	.quote-text p {
		font-size: 28px;
	}
	.portfolio-filter li {
		margin-right: 25px;
		margin-bottom: 20px;
	}
	.portfolio-gallery:before,
	.portfolio-gallery:after {
		display: none;
	}
	.portfolio-item {
		width: 50%;
	}
	.portfolio-item.--big,
	.portfolio-item.--big.--wide {
		width: 100%;
	}
	.portfolio-item.--disable {
		display: none;
	}
	.about-img-box-warp {
		padding-bottom: 0;
	}
	.about-img {
		position: relative;
		right: 0;
	}
	.about-img-box-warp .about-text-box-warp {
		padding-left: 15px;
	}
	.about-img-box-warp .about-text {
		margin: 0 auto;
	}
	.about-img-box:after {
		display: none;
	}
	.ceo {
		margin-bottom: 0;
	}
	.newsletter-section h3 {
		margin-bottom: 50px;
	}
	.newsletter-form {
		display: block;
		text-align: center;
	}
	.newsletter-form input[type=text] {
		margin-bottom: 30px;
		margin-right: 0;
	}
	.footer-section {
		text-align: center;
	}
	.footer-contact-list {
		margin-bottom: 50px;
	}
	.page-info-section {
		height: 330px;
	}
	.page-info-section h2 {
		font-size: 65px;
		top: 14px;
	}
	.about-logo {
		padding-top: 0;
		margin-bottom: 50px;
	}
	.steps-section .step-line {
		display: none;
	}
	.blog-search-form-warp {
		left: 0 !important;
		padding-bottom: 80px;
	}
	.blog-search-form {
		margin-bottom: 0;
	}
	.blog-grid .blog-grid-item:nth-child(3) {
		padding-top: 0;
	}
	.contact-info-section {
		padding: 0;
	}
	.contact-info-section iframe {
		position: relative;
		width: 100%;
		height: 500px;
	}
	.contact-info-box {
		margin-bottom: 100px;
	}
	.accordion-area {
		margin-bottom: 50px;
	}
	.search-model-form input {
		width: 100%;
		font-size: 24px;
	}
	.menu-text-two {
		display: none;
	}
	.site-logo img {
		width: 150px;
	}
	.footer-social-icon a {
		display: inline-block;
		width: 35px !important;
		height: 35px !important;
	}
	.pioneer-image {
		overflow-x: scroll;
		padding: 10px;
	}
	.pioneer-image img {
		max-width: 750px;
	}
	/* Scroll bar css ...  */
	/* width */
	::-webkit-scrollbar {
		-webkit-width: 8px;
		-moz-width: 8px;
		width: 8px;
		-webkit-height: 5px;
		-moz-height: 5px;
		height: 5px;
	}
	
	/* Track */
	::-webkit-scrollbar-track {
		-webkit-box-shadow: inset 0 0 5px grey; 
		box-shadow: inset 0 0 5px grey;
		-webkit-border-radius: 5px;
		border-radius: 5px;
	}
	
	/* Handle */
	::-webkit-scrollbar-thumb {
		-webkit-background: red;
		-moz-background: red;
		background: red;
		-webkit-border-radius: 5px; 
		-moz-border-radius: 5px; 
		border-radius: 5px;
	}
	
	/* Handle on hover */
	::-webkit-scrollbar-thumb:hover {
		-webkit-background: #b30000;
		-moz-background: #b30000;
		background: #b30000; 
	}
	/* Scroll bar css ...  */
}

/* Small Mobile :320px. */

@media only screen and (max-width: 479px) {
	.hero-slider-item .hs-content h2 {
		font-size: 45px;
	}
	.portfolio-item {
		width: 100%;
	}
	.hero-slider-item .hs-content .sb-white {
		margin-right: 0;
		margin-bottom: 20px;
	}
	.hero-slider .owl-nav button.owl-prev,
	.hero-slider .owl-nav button.owl-next {
		width: 65px;
		height: 65px;
	}
	.menu-text-two {
		display: none;
	}
	.pioneer-image {
		overflow-x: scroll;
		padding: 10px;
	}
	.pioneer-image img {
		max-width: 750px;
	}
	.ceo {
		margin-bottom: 0;
	}
	/* Scroll bar css ...  */
	/* width */
	::-webkit-scrollbar {
		-webkit-width: 8px;
		-moz-width: 8px;
		width: 8px;
		-webkit-height: 5px;
		-moz-height: 5px;
		height: 5px;
	}
	
	/* Track */
	::-webkit-scrollbar-track {
		-webkit-box-shadow: inset 0 0 5px grey; 
		box-shadow: inset 0 0 5px grey;
		-webkit-border-radius: 5px;
		border-radius: 5px;
	}
	
	/* Handle */
	::-webkit-scrollbar-thumb {
		-webkit-background: red;
		-moz-background: red;
		background: red;
		-webkit-border-radius: 5px; 
		-moz-border-radius: 5px; 
		border-radius: 5px;
	}
	
	/* Handle on hover */
	::-webkit-scrollbar-thumb:hover {
		-webkit-background: #b30000;
		-moz-background: #b30000;
		background: #b30000; 
	}
	/* Scroll bar css ...  */
}

@media only screen and (max-width: 375px) {
	/* Scroll bar css ...  */
/* width */
::-webkit-scrollbar {
	-webkit-width: 8px;
	-moz-width: 8px;
	width: 8px;
	-webkit-height: 5px;
	-moz-height: 5px;
	height: 5px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 5px grey; 
	box-shadow: inset 0 0 5px grey;
	-webkit-border-radius: 5px;
	border-radius: 5px;
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
	-webkit-background: red;
	-moz-background: red;
	background: red;
	-webkit-border-radius: 5px; 
	-moz-border-radius: 5px; 
	border-radius: 5px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
	-webkit-background: #b30000;
	-moz-background: #b30000;
	background: #b30000; 
  }
/* Scroll bar css ...  */
	.ceo {
		margin-bottom: 10px;
	}
}

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}