
*{
	margin: 0;
	padding: 0;
}
body{
	background: #FFFFFF;
}
:root{
	--blueColor: #2660FD;
	--baseColor: #ff4e00;
	--lightColor: #FFFFFF;
	--grayColor: #F7F7F7;
	--darkColor: #232323;
	--blackColor: #091f40;
	--goldColor: #f9c436;

	--baseHeading: 'Raleway', sans-serif;
	--baseParagraph: 'Montserrat', sans-serif;
}

/* ========== Custom CSS Starts ========== */

/* ===== CSS For "Common Cases" Starts Here ===== */
.grid_item{
    display: -ms-grid;
    display: grid;
    -ms-flex-line-pack: center;
	align-content: center;
}
/* ======================== */
.cta_btn_wrap{
	margin-top: 20px;
}
.cta_btn{
	color: var(--lightColor);
	background: var(--baseColor);
	font-family: var(--baseHeading);
	font-weight: 500;
	font-size: 18px;
	border-radius: 3px;
	min-width: 200px;
	text-align: center;
	display: inline-block;
	padding: 10px 25px;
	text-decoration: none;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;	
}
.cta_btn:hover{
	color: var(--darkColor);
	text-decoration: none;
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}
/* ======================== */
.tiny_title{
	margin-bottom: 15px;
}
.tiny_title span{
	color: var(--baseColor);
	font-family: var(--baseParagraph);
	font-weight: 500;
	font-size: 15px;
	line-height: 1;
	text-transform: uppercase;
	display: inline-block;
	position: relative;
}
.tiny_title span:after{
	content: "";
	width: 100%;
	height: 2px;
	background: var(--baseColor);
	position: absolute;
	left: 0px;
	bottom: -5px;
}
/* ======================== */
.heading{
	margin-bottom: 30px;
}
.heading h2{
	color: var(--darkColor);
	font-family: var(--baseHeading);
	font-weight: 600;
	font-size: 48px;
	margin-bottom: 0px;
}
.heading_white h2{
	color: var(--lightColor);
}
/* ======================== */
.para_texts p{
	color: var(--darkColor);
	font-family: var(--baseParagraph);
	font-weight: 300;
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 10px;
}
.para_texts p:last-child{
	margin-bottom: 0px;
}
.texts_white p{
	color: var(--lightColor);
}
/* ======================== */
.owl-carousel .owl-dots {
	text-align: center;
	position: absolute;
	width: 100%;
	left: 0px;
	right: 0px;
	bottom: -40px;
}
.owl-carousel .owl-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: none !important;
	margin: 5px;
	background: #BDBDBD !important;
}
.owl-carousel .owl-dot.active {
	width: 12px;
	height: 12px;
	background: var(--baseColor) !important;
}
/* ===== CSS For "Common Cases" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== Humberger Menu Icon ===== */
.humbergur_icon{
	width: 30px;
	height: 20px;
	position: relative;
	margin: 0px;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
}
.humbergur_icon span{
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	border-radius: 9px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}
.humbergur_icon span {
	background: var(--baseColor);
}
.humbergur_icon span:nth-child(1) {
	top: 0px;
}
.humbergur_icon span:nth-child(2),
.humbergur_icon span:nth-child(3) {
	top: 10px;
}
.humbergur_icon span:nth-child(4) {
	top: 20px;
}
.humbergur_icon.open span:nth-child(1) {
	top: 11px;
	width: 0%;
	left: 50%;
}
.humbergur_icon.open span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
.humbergur_icon.open span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.humbergur_icon.open span:nth-child(4) {
	top: 11px;
	width: 0%;
	left: 50%;
}
/* ===== Humberger Menu Icon ===== */

.navbar{
	background: var(--blackColor);
	padding: 10px 10px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.navbar .navbar-brand{
	text-decoration: none;
	padding: 0px;
}
.navbar .navbar-brand img{
	max-width: 130px;
}
.navbar .navbar-nav .nav-item {
	margin-right: 10px;
}
.navbar .navbar-nav .nav-item:last-child{
	margin-right: 0px;
}
.navbar .navbar-nav .nav-item .nav-link{
	color: var(--lightColor);
	font-family: var(--baseHeading);
	font-weight: 700;
	font-size: 16px;
	padding: 10px 15px;
	text-decoration: none;
	text-transform: uppercase;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.navbar .navbar-nav .nav-item .nav-link:hover{
	color: var(--baseColor);
}
.navbar .navbar-nav .nav-item .nav-link.active{
	color: var(--baseColor);
	
	position: relative;
}
.navbar .navbar-nav .nav-item .nav-link.active:after {
	content: "";
	background: var(--baseColor);
	width: 60px;
	height: 2px;
	border-radius: 2px;
	position: absolute;
	left: 50%;
	bottom: 2px;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
/* ===== CSS For "Navbar" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Banner" Starts Here ===== */
.banner_wrap img{
	width: 100%;
	height: 480px;
	-o-object-fit: cover;
	object-fit: cover;
}
/* ===== CSS For "Banner" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Colored Banner" Starts Here ===== */
.colored_banner_wrap{
	background: var(--blackColor);
	padding: 25px 0px;
}
.colored_banner{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 280px;
    grid-template-columns: 1fr 280px;
    grid-auto-rows: auto;
    gap: 20px;	
}
.colored_banner .cta_btn_wrap{
	margin-top: 0px;
	text-align: right;
}
/* ===== CSS For "Colored Banner" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "About Us" Starts Here ===== */
.about_us_wrap{
	padding: 50px 0px;
}
.about_us{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 280px 20px 1fr;
    grid-template-columns: 280px 1fr;
    grid-auto-rows: auto;
    gap: 20px;
}
/* ===== CSS For "About Us" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Our Values" Starts Here ===== */
.our_values{
	background: var(--blackColor);
	padding: 50px 0px;
	position: relative;
}
.our_values .net_bg{
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: 0px;
	text-align: center;
	z-index: 0;
}
.our_values .net_bg img{
	opacity: 0.1;
}

.our_values .container{
	position: relative;
	z-index: 99;
}

.our_values .all_values{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 25px 1fr 25px 1fr 25px 1fr;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    gap: 25px;	
}
.our_values .all_values .single_value .digits h1{
	color: var(--baseColor);
	font-family: var(--baseParagraph);
	font-weight: 600;
	font-size: 56px;
	text-shadow: 0 0 50px rgba(242,95,14,.5);
	margin-bottom: 10px;
}
.our_values .all_values .single_value .digits span{
	width: 60px;
	height: 2px;
	display: inline-block;
	margin-bottom: 15px;
	line-height: 1;
	background: var(--baseColor);
}
.our_values .all_values .single_value h6{
	color: var(--lightColor);
	font-family: var(--baseParagraph);
	font-weight: 500;
	font-size: 18px;
	line-height: 1.3;
	margin-bottom: 0px;	
}
.our_values .all_values .single_value h6 .break{
	display: block;
}
/* ===== CSS For "Our Values" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Product Campaigns" Starts Here ===== */
.product_campaigns{
	padding: 50px 0px;
	padding-bottom: 70px;
}
.product_campaigns .top_part{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 280px;
    grid-template-columns: 1fr 280px;
    grid-auto-rows: auto;
    gap: 20px;
	margin-bottom: 40px;
}
.product_campaigns .top_part .heading{
	margin-bottom: 0px;
}
.product_campaigns .top_part .cta_btn_wrap{
	margin-top: 0px;
	text-align: right;
}

.product_campaigns .single_product{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 160px 20px 1fr;
    grid-template-columns: 160px 1fr;
    grid-auto-rows: auto;
    gap: 20px;
	background: #F4F4F4;
	padding: 20px;
	border-radius: 4px;
	min-height: 280px;
}
.product_campaigns .single_product .product_image{
    display: -ms-grid;
    display: grid;
    -ms-flex-line-pack: center;
    align-content: center;	
}
.product_campaigns .single_product .product_info{
    display: -ms-grid;
    display: grid;
    -ms-flex-line-pack: center;
    align-content: center;
}
.product_campaigns .single_product .product_info h4{
	color: var(--darkColor);
	font-family: var(--baseHeading);
	font-weight: 600;
	font-size: 24px;
	margin-bottom: 15px;	
}
.product_campaigns .single_product .product_info p{
	color: var(--darkColor);
	font-family: var(--baseParagraph);
	font-weight: 400;
	font-size: 16px;
	margin-bottom: 15px;
}
.product_campaigns .single_product .product_info ul{
	margin-bottom: 0px;
	font-size: 0px;
}
.product_campaigns .single_product .product_info ul li{
	list-style: none;
	width: calc(50% - 7.5px);
	margin-right: 15px;
	display: inline-block;
}
.product_campaigns .single_product .product_info ul li:last-child{
	margin-right: 0px;
}
.product_campaigns .single_product .product_info ul li .cta_btn{
	display: block;
	min-width: inherit;
	padding: 10px 15px;
	font-size: 16px;
	border: 1px solid var(--blackColor);
	background: var(--blackColor);
}
.product_campaigns .single_product .product_info ul li .cta_btn:hover{
	color: var(--lightColor);
}
.product_campaigns .single_product .product_info ul li:last-child .cta_btn{
	color: var(--blackColor);
	background: var(--lightColor);
}
.product_campaigns .single_product .product_info ul li:last-child .cta_btn:hover{
	color: var(--lightColor);
	background: var(--blackColor);
}
/* ===== CSS For "Product Campaigns" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "What We Do" Starts Here ===== */
.what_we_do{
	background: #F4F4F4;
	padding: 50px 0px;
}
.what_we_do .heading{
	margin-bottom: 40px;
}
.what_we_do .single_dos{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 100px 15px 1fr;
    grid-template-columns: 100px 1fr;
    grid-auto-rows: auto;
    gap: 15px;
	margin-bottom: 35px;
}
.what_we_do .single_dos:last-child{
	margin-bottom: 0px;
}
.what_we_do .single_dos .icon{
	text-align: center;
}
.what_we_do .single_dos .texts h4{
	color: var(--darkColor);
	font-family: var(--baseHeading);
	font-weight: 700;
	font-size: 24px;
	margin-bottom: 10px;
}
/* ===== CSS For "What We Do" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Logo Campaigns" Starts Here ===== */
.logo_campaigns{
	padding: 50px 0px;
	padding-bottom: 70px;
}
.logo_campaigns .heading{
	margin-bottom: 40px;
}
/* ===== CSS For "Logo Campaigns" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Affiliates" Starts Here ===== */
.become_affiliate_wrap{
	background: var(--blackColor);
	padding: 50px 0px;
}
.become_affiliate{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 40px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 40px;	
}
.become_affiliate .cta_btn_wrap{
	margin-top: 30px;
}
/* ===== CSS For "Affiliates" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Testimonials" Starts Here ===== */
.testimonials_wrap{
	padding: 125px 0px;
	padding-top: 100px;
	position: relative;
	overflow: hidden;
}
.testimonials{
	position: relative;
	z-index: 99;
}
.testimonials_wrap .carousel_wrap{
	max-width: 620px;
}
.testimonials_wrap .customer_graphic_image{
	position: absolute;
	right: -75px;
	top: 50%;
	z-index: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.testimonials_wrap .customer_graphic_image img{
	max-width: 660px;
}
.testimonials_wrap .single_feedback{
	min-height: 250px;
    display: -ms-grid;
    display: grid;
    -ms-flex-line-pack: center;
	align-content: center;
}
.testimonials_wrap .single_feedback .quote_icon{
	margin-bottom: 10px;
}
.testimonials_wrap .single_feedback .quote_icon i{
	color: var(--baseColor);
	font-size: 36px;
}
.testimonials_wrap .single_feedback .customer_info h6{
	color: var(--darkColor);
	font-family: var(--baseHeading);
	font-weight: 500;
	font-size: 18px;
	font-style: italic;
	margin-top: 15px;
	margin-bottom: 0px;
}

.testimonials_wrap .owl-carousel .owl-dots {
	bottom: -30px;
}
/* ===== CSS For "Testimonials" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Lets Join" Starts Here ===== */
.lets_join{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 0px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 0px;
	background: var(--blackColor);
}
.lets_join .sliced_image{
    -webkit-clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}
.lets_join .sliced_image img{
	width: 100%;
	height: 420px;
	-o-object-fit: cover;
	object-fit: cover;
}
.lets_join .contents{
	padding: 50px;
}
.lets_join .contents .para_texts{
	max-width: 460px;
}
.lets_join .contents .cta_btn_wrap{
	margin-top: 30px;
}
/* ===== CSS For "Lets Join" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Footer" Starts Here ===== */
.footer{
	padding: 30px 0px;
	text-align: center;
}
.footer .logo a{
	text-decoration: none;
	color: var(--blackColor);
	font-family: var(--baseHeading);
	font-weight: 700;
	font-size: 32px;
	display: inline-block;
}

.footer .site_links{
	margin: 15px 0px;
	margin-bottom: 25px;
}
.footer .site_links ul{
	margin-bottom: 0px;
}
.footer .site_links ul li{
	list-style: none;
	display: inline-block;
	margin-right: 15px;	
}
.footer .site_links ul li:last-child{
	margin-right: 0px;
}
.footer .site_links ul li a{
	text-decoration: none;
	color: var(--darkColor);
	font-family: var(--baseParagraph);
	font-weight: 400;
	font-size: 15px;
	padding-right: 15px;
	border-right: 1px solid #999999;
}
.footer .site_links ul li:last-child a {
	padding-right: 0px;
	border-right: none;
}
.footer .site_links ul li a:hover {
	color: var(--baseColor);
	text-decoration: underline;
}

.footer .copyright{
	max-width: 720px;
	margin: 0px auto;
	border-top: 1px solid #E4E5E7;
	padding-top: 15px;
}
.footer .copyright p{
	color: #666666;
	font-family: var(--baseParagraph);
	font-weight: 300;
	font-size: 16px;
	margin-bottom: 0px;	
}
/* ===== CSS For "Footer" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "" Starts Here ===== */
/* ===== CSS For "" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */














