/* Table of Content
==================================================
	#Homepage Styles
	#Page Styles
	#Media Queries
	#Font-Face */
:root{
	--header-height: 127.94px;
	--small-header-height: 86.27px;
	--orange: #f17f21;
}
*{
	padding:0;
	margin:0;
}
@font-face {
	font-family: 'PointLight';
	src: url('fonts/PointLight.woff2') format('woff2');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'PointBookItalic';
	src: url('fonts/PointBookItalic.woff2') format('woff2');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}
html{
	scroll-behavior: smooth;
}
body{
	height: 100%;
	font-family: 'PointLight', sans-serif;
	font-size: clamp(14px, 1.25vw, 20px);
}
#main{
	width:100%;
	padding:0;
	margin:0 auto;
	padding-top: var(--header-height);
}
table{
	width: 100%;
}
table, th, td {
    border: 1px solid #1a5f80;
    border-collapse: collapse;    
}
th, td {
    padding: 10px;
    font-size: 16px;
    font-family: 'PointLight', sans-serif;
    text-align: center;
}
th {
    background-color: #104660;
    color: #fff;
}

a{
	cursor: pointer;
	display: inline-block;
}

span{
	display: inline-block;
}

p{
	line-height: 1.6;
	color: #000000;
	padding: 0 0 15px 0;
}

/* #Grid system
================================================== */
.container{
	width:1170px;
	margin:0 auto;
}
.contain_90{
	width: 90%;
	margin: 0 auto;
}
.contain_80{
	width: 80%;
	margin: 0 auto;
}
.contain_70{
	width: 70%;
	margin: 0 auto;
}
.container:before, .container:after, .row:before, .row:after{
	content:"";
	display:table;
}
.container:after, .row:after{
	clear:both;
}
.row{
	margin-left:-10px;
	margin-right:-10px;
}
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12{
	position:relative;
	min-height:1px;
	padding-left:10px;
	padding-right:10px;
	float:left;
}

.col-sm-12{width:100%;}
.col-sm-11{width:91.66666667%;}
.col-sm-10{width:83.33333333%;}
.col-sm-9{width:75%;}
.col-sm-8{width:66.66666667%;}
.col-sm-7{width:58.33333333%;}
.col-sm-6{width:50%;}
.col-sm-5{width:41.66666667%;}
.col-sm-4{width:33.33333333%;}
.col-sm-3{width:25%;}
.col-sm-2{width:16.66666667%;}
.col-sm-1{width:8.33333333%;}
.flt-right { float: right; }
.flt-left { float: left; }

.clr{
	clear:both;
}

/* =Header
-------------------------------------------------------------- */
header {
	width: 100%;
	position: fixed;
	top:0px;
	left: 0;
	z-index: 999;
	padding: 10px 0;
	background: #fff;
	-webkit-transition: height 0.3s;
	-moz-transition: height 0.3s;
	-ms-transition: height 0.3s;
	-o-transition: height 0.3s;
	transition: height 0.3s;
	/* box-shadow: 0 0 5px rgba(0, 0, 0, 0.25); */
}
header .inner_container{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
header .logo {
	width: 150px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	padding: 0;
}
header nav {

}
header.smaller {
	top:0;
	background-color: transparent;
	background: #fff;
	padding: 0%;
}
header.smaller .logo {
	width: 120px;
}
header.smaller nav {
	
}

.btn{
	font-size: clamp(16px, 1.25vw, 18px);
	background-color: var(--orange);
	color: #fff;
	padding: 12px 20px 10px 20px;
	text-decoration: none;
	border-radius: 5px;
	transition: background-color 0.3s;
	text-transform: uppercase;
}

.btn:hover{
	background-color: #e07a1d;
}

/* hero */
.hero{
	user-select: none;
}
.hero .section_link{
	position: absolute;
	top: calc(var(--header-height) * -1);
}
.hero .video_wrapper{
	aspect-ratio: 100 / 56.24;
	border-radius: 10px;
	overflow: hidden;
	/* pointer-events: none; */
}
.hero .video_wrapper video{
	width: 100%;
	height: auto;
	border-radius: 20px;
}

.heading{
	font-size: clamp(25px, 3.125vw, 60px);
	color: var(--orange);
	line-height: 1.4;
	text-align: center;
	padding: 0 0 5vw;
}
.white{
	color: #fff;
}
section{
	padding: 5vw 0;
	position: relative;
}
.section_link{
	position: absolute;
	top: calc(var(--small-header-height) * -1);
}
section.transform::before{
	position: absolute;
	content: '';
	left: 5vw;
	top: 5vw;
	width: 4vw;
	height: 6.5vw;
	background: url(../images/dotted-rectangle-vertical.png) no-repeat;
	background-size: contain;
	background-position: left top;
	z-index: -1;
}
section.transform::after{
	position: absolute;
	content: '';
	right: 5vw;
	bottom: 5vw;
	width: 6.5vw;
	height: 4vw;
	background: url(../images/dotted-rectangle-horizontal.png) no-repeat;
	background-size: contain;
	background-position: left top;
	z-index: -1;
}
section.transform .info_boxes{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
section.transform .info_boxes .text_box{
	padding: 0 10vw 0 0;
}
/* industries */
.industries{
	background-color: var(--orange);
	z-index: 1;
}
.industries::before{
	position: absolute;
	content: '';
	left: 5vw;
	top: 5vw;
	width: 4vw;
	height: 6.5vw;
	background: url(../images/dotted-rectangle-vertical.png) no-repeat;
	background-size: contain;
	background-position: left top;
	filter: brightness(0) invert(1);
	z-index: -1;
}
.industries::after{
	position: absolute;
	content: '';
	right: 5vw;
	bottom: 5vw;
	width: 6.5vw;
	height: 4vw;
	background: url(../images/dotted-rectangle-horizontal.png) no-repeat;
	background-size: contain;
	background-position: left top;
	filter: brightness(0) invert(1);
	z-index: -1;
}
.coverflow_slider_wrapper{
	width: 100%;
	padding: 2vw 0;
}
.coverflow_slider {
	overflow-x: clip;
	width: 100%;
	height: 100%;
	position: relative;
}
.coverflow_slider .swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #444;
	display: flex;
	justify-content: center;
	align-items: center;
	background: transparent;
	cursor: pointer;
}
.coverflow_slider .swiper-slide.swiper-slide-active{
	cursor: auto;
}
.coverflow_slider .swiper-slide .item_box{
	transform: scale(0.80);
	transition: all 0.3s;
	pointer-events: none;
	position: relative;
	width: 100%;
}
.coverflow_slider .swiper-slide.swiper-slide-active .item_box{
	transform: scale(1.15);
	pointer-events: auto;
}
.coverflow_slider .swiper-slide .img_box{	
	width: 100%;
	position: relative;
	padding: 125% 0 0 0;
	border-radius: 25px;
	overflow: hidden;
}
.coverflow_slider .swiper-slide .img_box img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.coverflow_slider .swiper-slide .industry_title{
	font-family: 'PointBookItalic';
	font-size: clamp(20px, 1.45vw, 30px);
	color: #fff;
	padding: 1vw 0 0 0;
}
[class*=custom-nav]{
	--custom-nav-size: 20px;
	--spacing: 10px;
	font-size: var(--custom-nav-size);
	background: #fff;
	position: absolute;
	top: calc(50% - ((var(--custom-nav-size) + var(--spacing)) / 2));
	left: 0;
	width: calc(var(--custom-nav-size) + var(--spacing));
	height: calc(var(--custom-nav-size) + var(--spacing));
	display: flex;
	align-items: center;
	justify-content: center;
	/*padding: 5px;*/
	border-radius: 50%;
	z-index: 1;
	cursor: pointer;

}
.coverflow_slider [class*=custom-nav]{
	opacity: 0;
	pointer-events: none;

}
.custom-nav-next{
	left: unset;
	right: 0;
}

.our_work::before{
	position: absolute;
	content: '';
	left: 5vw;
	top: 5vw;
	width: 4vw;
	height: 6.5vw;
	background: url(../images/dotted-rectangle-vertical.png) no-repeat;
	background-size: contain;
	background-position: left top;
	z-index: -1;
}
.our_work::after{
	position: absolute;
	content: '';
	right: 5vw;
	bottom: 5vw;
	width: 6.5vw;
	height: 4vw;
	background: url(../images/dotted-rectangle-horizontal.png) no-repeat;
	background-size: contain;
	background-position: left top;
	z-index: -1;
}
.our_work .insta_boxes{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.our_work .insta_boxes .info_box{
	width: calc(33.33% - 10px);
	margin: 0 0 15px;
}
.our_work .insta_boxes .info_box .img_box{
	width: 100%;
	position: relative;
	padding: 100% 0 0 0;
	overflow: hidden;
}
.our_work .insta_boxes .info_box .img_box img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.youtube_wrapper{
	background: var(--orange);
}
.youtube_wrapper .youtube_box a{
	display: block;
}
.youtube_wrapper .youtube_box a img{
	width: 100%;
}

footer{
	background: #f1f2f2;
}
footer .inner_container{
	display: flex;
	flex-wrap: wrap;
	padding: 5vw 0;
}
footer .inner_container .left_pane{
	width: 45%;
	text-align: left;
	display: flex;
	flex-direction: column;
}
footer .inner_container .left_pane .heading{
	text-align: left;
	padding: 0 0 1vw;
	line-height: 1.2;
}
footer .inner_container .left_pane .upper_sec{
	padding: 0 0 2vw 0;
	margin: 0 0 2vw 0;
	border-bottom: 1px solid var(--orange);
}
footer .inner_container .left_pane .ctc_sec{
	margin: auto 0;
	padding: 2vw 0;
}
footer .inner_container .left_pane .ctc_sec p{
	padding: 0;
}
footer .inner_container .left_pane .social_sec ul{
	display: flex;
	flex-wrap: wrap;
}
footer .inner_container .left_pane .social_sec ul li{
	padding: 0 2.2vw 0 0;
}
footer .inner_container .left_pane .social_sec ul li img{
	width: 3.6vw;
}
footer .inner_container .center_pane{
	width: 20%;
}
footer .inner_container .center_pane .logo_box{
	width: 40%;
	margin: auto;
}
footer .inner_container .right_pane{
	width: 35%;
}
footer .inner_container .right_pane .form_wrapper form .upper_box{
	background-color: var(--orange);
	padding: 4vw;
}
.form-group{
	padding: 0 0 15px;
}
.form-group.last_child{
	padding: 0;
}
.form-group .form-label{
	color: #fff;
	display: inline-block;
	padding: 0 0 2px;
}
.form-group .form-control{
	width: 100%;
	border: none;
	outline: none;
	font-size: clamp(16px, 1.25vw, 20px);
	padding: 5px 10px;
}
.submit_btn{
	font-size: clamp(14px,1.35vw,30px);
	color: #fff;
	font-weight: 600;
	background-color: var(--orange);
	border: none;
	outline: none;
	width: 100%;
	padding: 10px 30px;
	margin: 2vw 0 0 0;
}
footer .last_line{
	background-color: var(--orange);
	padding: 10px 0;
	padding: 10px 5vw;
	text-align: center;
	color: #fff;
}

.youtube_wrapper [class*=custom-nav]{
	left: 10px;
}
.youtube_wrapper .custom-nav-next{
	left: unset;
	right: 10px;
}
.error{
	color: #ffffff;
    font-size: 12px;
}
.error.alert-danger{
	padding: 5px;
	background-color: red;
}