@charset "utf-8";
/**=========================================================
 * Theme Name   :  Kratera Energy Trading
 * Author       :  Amit Suthar
 * Description  :  December 2024
 * File Name	:  style.css
=========================================================**/

/* Global Styles */

:root { 
	--primary: #666666; /*Primary Color*/
	--secondary: #B88700; /* Secondary Color*/
	--white: #ffffff; /*White*/
	--black: #000000; /*Black*/
	--alternate: #111111; /* Alternate Color*/

	--fontStyle1: "Inter", sans-serif;
	--fontStyle2: "Cormorant Garamond", serif;
	}

.primary { color: var(--primary) !important;}
.secondary { color: var(--secondary) !important; }
.white { color: var(--white) !important; }
.black { color: var(--black) !important; }
.alternate { color: var(--alternate) !important; }

.fontStyle1 { font-family:var(--fontStyle1) !important; }
.fontStyle2 { font-family:var(--fontStyle2) !important; }

*, *:after, *:before {
    margin: 0;
    padding: 0;
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
	}

html {
    height: 100%;
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
	}
	
html, body {
	height: 100%;
	}
	
body {
	font-family: var(--fontStyle1);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--primary);
	-webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
	-webkit-text-size-adjust: 100%;
	background: var(--white);
	overflow-x: hidden;
	}
	
::selection {
	background: var(--secondary); /* Safari */
	color: #ffffff;
	}
	
::-moz-selection {
	background: var(--secondary); /* Firefox */
	color: #ffffff;
	}
		
img {
  	max-width: 100%;
  	vertical-align: middle;
  	-ms-interpolation-mode: bicubic;
	}

@media screen and (-webkit-min-device-pixel-ratio:0)
and (min-resolution:.001dpcm) {
    img {
        image-rendering: -webkit-optimize-contrast !important;
    }
}

/* Unset for Safari 11+ */
@media not all and (min-resolution:.001dpcm)
{ @supports (-webkit-appearance:none) and (stroke-color:transparent) {
    img {
        image-rendering: unset !important;
    }
}}
	
a, a:focus, a:hover {
	color: var(--secondary);
	outline: none;
	cursor: pointer;
	text-decoration: none;
    box-shadow: none !important;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
	}
	
a:hover {
	color: var(--alternate);
	}

:focus, ::-moz-focus-inner {
	border: none;
	outline: none !important;
	}

fieldset, a img {
	border: none;
	}

ol, ul {
	margin: 0px auto;
	padding-left: 15px;
    list-style-position: outside;
    /*list-style-type: none;*/
	}
	
h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
	}

b, strong {
	font-weight: 700;
	}
	
/* ClearFix */
.clear {
	clear: both;
	height: 0px;
	overflow: hidden;
	}

.container:after {
	display: block;
	content: " ";
	clear: both;
	}
	
.clearfix:after {
	display: block;
	content: ".";
	height: 0px;
	clear: both;
	visibility: hidden;
	}
	
.clearfix {
	display: inline-table;
	}

/* Hides from IE-mac \*/
.clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */
	
/* wrapper */
	
#wrapper {
    position: relative;
	display: flex;
	margin: 0px auto;
	max-width: 1920px;
	flex-flow: column;
    height: 100vh !important;
	background: var(--white);
	}
	
body,
#wrapper,
.footer-wrapper {
	opacity: 0;
	}

.pageClass {
	position: relative;
	display: block;
	}

.container,
.wide-container,
.header-container,
.extraWide-container {
	position: relative;
	width: 100%;
	margin: 0px auto;
	max-width: 1230px;
	padding: 0px 15px;
	}

.header-container,
.wide-container {
    max-width: 1430px;
	}

.extraWide-container {
    max-width: 1590px;
	}

/* Header Styles */

#pageHeaderWrapper {
	position: relative;
	width: 100%;
	z-index: 100;
	display: block;
	margin: 0px auto;
	}

#pageHeader {
	position: relative;
	display: block;
	width: 100%;
	z-index: 101;
	padding: 0px;
	margin: 0px auto;
    max-width: 1920px;
	background: var(--alternate);
	-webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
	}

.is-sticky #pageHeader {
	left: auto;
	max-width: 1920px;
	box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.15);
	}

/* Top Header Container */

.topHeaderContainer {
	position: relative;
	display: block;
	margin: 0px auto;
    }

/* Logo */
	
.logo {
	position: relative;
	display: flex;
    float: left;
	width: 369px;
	height: 75px;
	z-index: 1001;
	margin: 17px 0px;
	overflow: hidden;
	}

.logo a {
	position: relative;
	width: 100%;
	height: auto;
	display: block;
	overflow: hidden;
	}

.logo img {
	position: relative;
	display: block;
	height: auto;
	max-width: 100%;
	}
	
/* Top Right Header */
	
.topRightHeader {
	position: relative;
    display: flex;
    padding: 0px;
	align-items: center;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    margin: 0px 0px;
    justify-content: end;
	}
	
/* Nav */
	
.nav-wrapper {
	position: relative;
	display: block;
	margin: 0px auto;
	}
	
.nav-container,
.nav {
	position: relative;
	width: 100%;
	display: block;
	margin: 0px auto;
	}
	
.nav ul {
	position: relative;
	display: flex;
	padding: 0;
	width: 100%;
	font-size: 16px;
	flex-wrap: wrap;
	margin: 0px auto;
	list-style-type: none;
	}
	
.nav>ul>li {
    position: relative;
	display: block;
    padding: 0px 0px;
	}
	
.nav>ul>li>a {
	position: relative;
	height: 100%;
	display: block;
	font-weight: 500;
	line-height: 24px;
	padding: 43px 30px;
	color: var(--white);
	text-transform: uppercase;
	-webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
	}

/* .nav>ul>li.menu-item-has-children>a {
	padding-right: 20px;
	}

.nav li.menu-item-has-children > a:after {
    font-family: 'Font Awesome 6 Free';
	position: absolute;
	content: "\f107";
	font-size: 12px;
	right: 1px;
	top: 50%;
    z-index: 2;
	height: 20px;
	font-weight: 900;
	margin-top: -10px;
	line-height: 20px;
	text-align: center;
	display: inline-block;
	vertical-align: middle;
	}

.nav>ul>li>a:before {
	position: absolute;
	top: 50%;
	left: 0px;
	opacity: 0;
	width: 16px;
	content: '';
	height: 19px;
	display: block;
	overflow: hidden;
	background-image: url(../images/menuActive.png);
	background-size: cover;
	transform: translate(0, -50%);
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
	}

.nav>ul>li:hover>a:before,
.nav>ul>li.selected>a:before {
	opacity: 1;
	}*/
	
.nav>ul>li span {
	position: relative;
	display: block;
	height: 100%;
	z-index: 2;
	}

.nav>ul>li:hover>a,
.nav>ul>li.selected>a {
	color: var(--secondary);
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
	}

.nav>ul ul,
.nav>ul ul ul {
	position: absolute;
	top: 100%;
	left: 6px;
	opacity: 0;
	width: 100%;
	font-size: 16px;
    font-weight: 500;
	min-width: 190px;
	text-align: left;
	padding: 0px 0px;
	visibility: hidden;    
    text-transform: none;
	border-radius: 0px 0px;
	background: var(--white);
	margin: 30px 0px 0px 0px;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
	}
	
.nav>ul ul ul {
    left: 100%;
	top: auto;
	margin: 0px;
	min-width: 290px;
	padding: 0px 0px;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
	}
	
.nav>ul>li:hover>ul,
.nav>ul ul>li:hover>ul {
	opacity: 1;
	top: auto;
	margin-top: 0px;
	visibility: visible;
	}
	
.nav>ul ul>li:hover>ul {
	margin-top: -58px;
	}

.nav>ul ul>li,
.nav>ul ul ul>li {
	position: relative;
	display: block;
	padding: 0px;
	width: 100%;
	border-bottom: 1px solid #F0F0F0;
	}

.nav>ul ul>li:hover,
.nav>ul ul ul>li:hover {		
	box-shadow: 0px -2px 14px 0px rgba(0, 0, 0, 0.14);
	}
	
.nav>ul ul a,
.nav>ul ul ul a {
	position: relative;
	display: block;
	font-weight: 500;
	line-height: 18px;
	padding: 18px 27px;
	border-radius: 0px;
	color: var(--alternate2);
	}

.nav>ul ul ul a {
	padding: 10px 18px;
	}

.nav>ul ul li:hover>a,
.nav>ul ul li.selected>a,
.nav>ul ul ul li:hover>a,
.nav>ul ul ul li.selected>a {
	color: var(--secondary);
	text-decoration: underline;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	}

.headerLangContainer {
	position: relative;
	display: block;
	}


/* Banner Styles */

.bannerWrapper {
	position: relative;
	display: block;
	width: 100%;
	z-index: 3;
	margin: 0px auto;
	}
	
.banner {
	position: relative;
	display: block;
    width: 100%;
	z-index: 0;
	margin: 0px auto;
	}
	
.homeBannerSlider {
	position: relative;
	display: block;
	width: 100%;
	margin: 0px auto;
	}
	
[data-animation-in] {
	opacity: 0;
	}
	
.banner-slide {
	position: relative;
	display: block;
	width: 100%;
	padding: 0px;
	margin: 0px auto;
	}
	
.home-banner-img-holder img {
	width: 100%;
	}

.banner_caption {
    position: absolute;
	z-index: 7;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 100%;
	display: block;
	color: #ffffff;
	margin: 0px auto;
	/* background-image: url(../images/banner-bgShape.png);
	background-position: bottom left;
	background-repeat: no-repeat; */
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
	}
	
.banner_caption .captionWrapper {
	position: relative;
	display: table;
	width: 100%;
	height: 100%;
	margin: 0px auto;
	}
	
.banner_caption .captionContainer {
	position: relative;
	display: table-cell;
	vertical-align: bottom;
	}
	
.banner_caption .captionContainerInner {
	position: relative;
	display: block;
	width: 100%;
	font-size: 20px;
	padding-bottom: 150px;
	}

.banner_caption .captionContainer .bannerHeading1 {
	font-size: 60px;
	line-height: 1;
	color: var(--white);
	padding-bottom: 20px;
	text-transform: none;
	font-variant: small-caps;
	}

.banner_caption .captionContainer .bannerHeading1 strong {
	display: block;
	font-size: 90px;
	}
	
.banner_caption .captionContainerInner p {
	margin-bottom: 40px;
	}
	
.homeBannerSlider .slick-dots {
	left: 150px;
	width: auto;
	bottom: 240px;
	}
	
.homeBannerSlider .slick-dots>li {
	display: block;
	margin: 25px auto;
	}

.homeBannerSlider .slick-dots li.slick-active {
	margin: 25px auto;
	}

.homeBannerSlider .slick-dots>li::before {
	border: 1.5px solid var(--secondary);
	}

.homeBannerSlider .slick-dots li:hover button,
.homeBannerSlider .slick-dots li.slick-active button {
	background: var(--secondary);
	border-color: var(--secondary);
	}

.homeBannerSlider .slick-dots li button {
	background: var(--white);
	border: 1px solid var(--white);
	}

/* Container Style */
	
.pt0 { padding-top: 0px !important; }
.pt5 { padding-top: 5px !important; }
.pt10 { padding-top: 10px !important; }
.pt15 { padding-top: 15px !important; }
.pt20 { padding-top: 20px !important; }
.pt25 { padding-top: 25px !important; }
.pt30 { padding-top: 30px !important; }
.pt40 { padding-top: 40px !important; }
.pt50 { padding-top: 50px !important; }
.pt60 { padding-top: 60px !important; }
.pt70 { padding-top: 70px !important; }
.pt80 { padding-top: 80px !important; }
.pt100 { padding-top: 100px !important; }

.pb0 { padding-bottom: 0px !important; }
.pb5 { padding-bottom: 5px !important; }
.pb10 { padding-bottom: 10px !important; }
.pb15 { padding-bottom: 15px !important; }
.pb20 { padding-bottom: 20px !important; }
.pb25 { padding-bottom: 25px !important; }
.pb30 { padding-bottom: 30px !important; }
.pb35 { padding-bottom: 35px !important; }
.pb40 { padding-bottom: 40px !important; }
.pb50 { padding-bottom: 50px !important; }
.pb60 { padding-bottom: 60px !important; }
.pb80 { padding-bottom: 80px !important; }
.pb100 { padding-bottom: 100px !important; }
.pb120 { padding-bottom: 120px !important; }

.pr0 { padding-right: 0px !important;}
.pl10 { padding-left: 10px !important;}

.mt0 { margin-top: 0 !important; }
.mt5 { margin-top: 5px !important; }
.mt10 { margin-top: 10px !important; }
.mt15 { margin-top: 15px !important; }
.mt20 { margin-top: 20px !important; }
.mt25 { margin-top: 25px !important; }
.mt30 { margin-top: 30px !important; }
.mt40 { margin-top: 40px !important; }
.mt50 { margin-top: 50px !important; }
.mt60 { margin-top: 60px !important; }
.mt100 { margin-top: 100px !important; }

.mb0 { margin-bottom: 0 !important; }
.mb5 { margin-bottom: 5px !important; }
.mb10 { margin-bottom: 10px !important; }
.mb15 { margin-bottom: 15px !important; }
.mb20 { margin-bottom: 20px !important; }
.mb25 { margin-bottom: 25px !important; }
.mb30 { margin-bottom: 30px !important; }
.mb40 { margin-bottom: 40px !important; }
.mb50 { margin-bottom: 50px !important; }
.mb60 { margin-bottom: 60px !important; }
.mb100 { margin-bottom: 100px !important; }

.mg0 { margin: 0px !important; }
.mg5 { margin: 5px !important; }
.p0 { padding: 0px !important; }
.p5 { padding: 5px !important; }
.p15 { padding: 15px !important; }
.ml5 { margin-left: 5px !important; }
.mr5 { margin-right: 5px !important; }
.ml10 { margin-left: 10px !important; }
.mr10 { margin-right: 10px !important; }
.ml15 { margin-left: 15px !important; }
.mr15 { margin-right: 15px !important; }
.ml20 { margin-left: 20px !important; }
.mr20 { margin-right: 20px !important; }

.row.grid-9 { margin-top: -15px; margin-bottom: -15px; margin-left: -9px; margin-right: -9px; }
.grid-9>.col, .grid-9>[class*="col-"] { padding-top: 15px; padding-bottom: 15px; }
.gutters-9>.col, .gutters-9>[class*="col-"] { padding-right: 9px; padding-left: 9px; }
.row.grid-10 { margin-top: -10px; margin-bottom: -10px; margin-left: -10px; margin-right: -10px; }
.grid-10>.col, .grid-10>[class*="col-"] { padding-top: 10px; padding-bottom: 10px; }
.gutters-10>.col, .gutters-10>[class*="col-"] { padding-right: 10px; padding-left: 10px; }
.row.grid-12 { margin-top: -12px; margin-bottom: -12px; margin-left: -12px; margin-right: -12px; }
.grid-12>.col, .grid-12>[class*="col-"] { padding-top: 12px; padding-bottom: 10px; }
.gutters-12>.col, .gutters-12>[class*="col-"] { padding-right: 12px; padding-left: 12px; }

.row.grid-15 { margin-top: -15px; margin-bottom: -15px; margin-left: -15px; margin-right: -15px; }
.grid-15>.col, .grid-15>[class*="col-"] { padding-top: 15px; padding-bottom: 15px; }
.gutters-15>.col, .gutters-15>[class*="col-"] { padding-right: 15px; padding-left: 15px; }
.row.grid-20 { margin-top: -20px; margin-bottom: -20px; margin-left: -20px; margin-right: -20px; }
.grid-20>.col, .grid-20>[class*="col-"] { padding-top: 20px; padding-bottom: 20px; }
.gutters-20>.col, .gutters-20>[class*="col-"] { padding-right: 20px; padding-left: 20px; }
.row.grid-30 { margin-top: -15px; margin-bottom: -15px; margin-left: -30px; margin-right: -30px; }
.grid-30>.col, .grid-30>[class*="col-"] { padding-top: 15px; padding-bottom: 15px; }
.gutters-30>.col, .gutters-30>[class*="col-"] { padding-right: 30px; padding-left: 30px; }
.row.grid-40 { margin-top: -40px; margin-bottom: -40px; margin-left: -20px; margin-right: -20px; }
.grid-40>.col, .grid-40>[class*="col-"] { padding-top: 40px; padding-bottom: 40px; }
.gutters-40>.col, .gutters-40>[class*="col-"] { padding-right: 20px; padding-left: 20px; }

.img-holder { position: relative; display: block; width: 100%; height: 0px; overflow: hidden; padding-bottom: 100%; margin: 0px auto 0px; }
.img-holder figure { position: absolute; top: 0px; left: 0px; right: 0px; bottom: 0px; display: block; margin: 0px;	text-align: center;	padding: 0px; }
.img-holder figure img { position: relative; width: 100%; height: 100%; max-width: none; max-height: none; z-index: 1; transition: all 0.6s ease; object-fit: scale-down; object-position: 50% 50%; } 
.img-holder.img-cover figure img { object-fit: cover; } 

/* Main Content Wrapper */

.main-content-wrapper {
	position: relative;
	width: 100%;
	padding: 0px;
	margin: 0px auto;
	max-width: 1920px;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	}
	
.nopadding {
	padding: 0px !important;
	}

/* Main Container */
	
.main-container {
	width: 100%;
	padding: 110px 0px;
	}

.section-container,
.section-container-full,
.section-container-wide {
	position: relative;
	display: block;
	width: 100%;
	padding: 100px 0px 70px;
	}

.section-container-full {
	padding: 100px 0px;
	}

.section-container-wide {
	padding: 110px 0px;
	}

.coverContainer-box {
	padding: 0px 60px;
	}

/*Home*/

.homeIntro-container {
	padding: 100px 0px 60px;
	}

.homeIntro-topSection {
	text-align: center;
	padding-bottom: 60px;
	}

.missionVison-section .row>.col-md-6 {
	margin-bottom: 20px;
	border-right: 1px solid var(--secondary);
	}

.missionVison-section .row>.col-md-6:last-child {
	border-right: none;
	}

.missionVison-box {
	padding: 15px 100px;
	text-align: center;
	}

.missionVison-box .img-holder {
	width: 100px;
	border-radius: 100%;
	margin: 0px auto 25px;
	padding-bottom: 100px;
	}

.missionVison-box h3 {
	letter-spacing: -0.9px;
	font-variant: small-caps;
	}

.homeBody-section {
	background-repeat: no-repeat;
	background-position: bottom center;
	}

.who-weAre-section {
	padding-left: 130px;
	padding-bottom: 90px;
	}

.who-weAre-section>.row>.col-lg-5 {
	width: 46%;
	}

.who-weAre-section>.row>.col-lg-7 {
	width: 54%;
	background: linear-gradient(242deg, #F4D03F 0%, #B88700 100%);
	}

.who-weAre-section .img-holder {
	padding-bottom: 84.33%;
	}

.who-weAre-caption {
	width: 100%;
	height: 100%;
	padding: 50px 120px;
	color: var(--white);
	background-size: cover;
	background-position: center center;
	}

.homeAbout-caption {
	position: relative;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	}

.homeAbout-caption .table {
	border: none;
	margin: 0px 0px;
	max-width: 620px;
	}

.homeAbout-caption .table tr td,
.homeAbout-caption .table tr th {
	border: none;
	font-weight: 400;
	color: var(--white);
	vertical-align: top;
	padding: 0px 25px 15px 0px;
	}

.homeAbout-caption .table tr td {
	font-weight: 600;
	}

.homeAbout-caption .table tr th {
	min-width: 200px;
	}

.homeProduct-section {
	padding-bottom: 70px;
	}

.product-slider {
	margin: 0px -15px;
	padding: 15px 0px 0px;
	}

.product-slide {
	padding: 0px 15px;
	}

.product-itemBox a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	}

.product-itemBox a:hover .img-holder img {
	transform: scale(1.1);
	}

.productTitle-box {
	position: absolute;
	left: 0px;
	z-index: 2;
	bottom: 0px;
	width: 100%;
	text-align: center;
	padding: 50px 30px 35px;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.30) 100%);
	}

.productTitle-box h4 {
	font-family: var(--fontStyle1);
	font-size: 22px;
	padding: 0px 0px;
	color: var(--white);
	letter-spacing: normal;
	text-transform: uppercase;
	}

.teamTitle-box {
	padding-bottom: 45px !important;
	}

.ourTeam-box {
	height: 100%;
	text-align: center;
	padding: 30px 15px;
	color: var(--white);
	background: linear-gradient(242deg, #F4D03F 0%, #B88700 100%);
	}

.ourTeam-box h4 {
	font-family: var(--fontStyle1);
	font-size: 22px;
	font-weight: 600;
	padding-bottom: 0px;
	margin-bottom: 12px;
	}

.certified-section {
	padding-right: 130px;
	}

.certified-section .section-container-full {
	background-size: cover;
	background-position: center center;
	}

.certified-section .container {
	max-width: 1160px;
	}
	
.certified-section .container>.row>.col-lg-5 {
	width: 46%;
	}

.certified-section .container>.row>.col-lg-7 {
	width: 54%;
	}

.certified-caption {
	padding-left: 100px;
	color: var(--white);
	}

.certified-caption .pageTitle {
	padding: 0px 0px 25px;
	}

.certified-caption .pageTitle h2 {
	font-variant: unset;
	text-transform: capitalize;
	}

.homeContact-section {
	float: right;
	max-width: 660px;
	padding: 0px 15px;
	margin-right: 55px;
	}

.contact-formBox {
	padding-top: 25px;
	}

.map-container {
	position: relative;
	display: block;
	width: auto;
	height: 700px;
	overflow: hidden;
	border-radius: 0px;
	}

.map-container iframe {
	position: relative;
	width: 100%;
	height: 100%;
	border: none;
	overflow: hidden;
	}

/*common css*/

.pageTitle {
	position: relative;
	display: block;
    width: 100%;
	font-size: 16px;
	margin: 0px auto;
	padding: 0px 0px 30px;
	color: var(--primary);
	}

.pageTitle h6 {
	font-family: var(--fontStyle1);
	font-weight: 600;
	position: relative;
	padding-bottom: 30px;
	display: inline-block;
	letter-spacing: 3.2px;
	color: var(--secondary);
	text-transform: uppercase;
	}

.pageTitle h6::before,
.pageTitle h6::after {
	width: 58px;
	height: 5px;
	content: '';
	margin-top: -2px;
	position: relative;
	display: inline-block;
	vertical-align: middle;
	background: var(--secondary);
	}

.pageTitle h6::before {
	margin-right: 30px;
	}

.pageTitle h6::after {
	margin-left: 30px;
	display: none;
	}

.pageTitle.text-center h6::after {
	display: inline-block;
	}

.pageTitle h6.white::before,
.pageTitle h6.white::after {
	background: var(--white);
	}
	
.pageTitle h1,
.pageTitle h2 {
	line-height: 1;
	padding-bottom: 0px;
	font-variant: small-caps;
	}

.uppercase {
	text-transform: uppercase !important;
	}
	
.capitalize {
	text-transform: capitalize !important;
	}

.NoUppercase {
	text-transform: none !important;
	}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
	font-family:var(--fontStyle2);
	position: relative;
	font-size: 60px;
	margin: 0px 0px;
	line-height: 1.2;
	font-weight: 700;
	text-transform: none;
	padding: 0px 0px 20px;
	letter-spacing: -1.2px;
	color: var(--alternate);
	}
	
h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong, .h1 strong, .h2 strong, .h3 strong, .h4 strong, .h5 strong, .h6 strong {
	font-weight: 700;
	color: var(--alternate1);
	}
	
h2, .h2 {
	font-size: 60px;
	}
	
h3, .h3 {
	font-size: 45px;
	}
	
h4, .h4 {
	font-size: 21px;
	}
	
h5, .h5 {
	font-size: 18px;
	}

h6, .h6 {
	font-size: 16px;
	}

p {
    margin: 0 0 20px;
	line-height: 1.6;
	}

p:last-child {
	margin: 0px 0px;
	}

p[align=center] {
    text-align: center !important;
    }

p[align=left] {
    text-align: left !important;
    }

p[align=right] {
    text-align: right !important;
    }

ul.ul-listing {
	display: block;
	padding: 0px;
	width: 100%;
	font-size: 16px;
	text-align: left;
	font-weight: 400;
	margin: 0px 0px 20px;
	color: var(--primary);
	list-style-position: inside;
	}

ul.ul-listing.text-center {
	text-align: center;
	}
	
ul.ul-listing li {
	position: relative;
	list-style-type: none;
	padding: 0px 0px 15px 20px;
	}
	
ul.ul-listing li:last-child {
	padding-bottom: 0px;
	}

ul.ul-listing li:before {
	position: absolute;
	top: 9px;
	left: auto;
	width: 7px;
	height: 7px;
    content: '';
	margin-left: -20px;
	border-radius: 10px;
	background: var(--secondary);
	}

ul.ul-listing li ul>li {
	padding-bottom: 10px;
	}

ul.ul-listing li ul>li:before {
	top: 3px;
	font-size: 12px;
	content: '\f058';
	}

ul.ul-listing li p {
	margin-bottom: 0px;
	}

ul.ul-listing ul {
	padding-left: 0px;
	margin: 15px 0px 0px;
	}

/* Slick Slider */

.slick-dotted.slick-slider {
	margin-bottom: 0px;
	}
	
.slick-slide > div {
	position: relative;
	display: block;
	padding: 0px;
    margin: 0px;
    font-size: 0px;
	}
	
.slick-slide img {
	display: inline-block;
	}
	
.slick-prev,
.slick-next {
	opacity: 1;
	width: 60px;
	height: 60px;
	display: flex;
	font-size: 16px;
	padding: 0px 0px;
	align-items: center;
	border-radius: 60px;
	justify-content: center;
	color: var(--alternate);
	background-image: none !important;
	border: 1px solid var(--alternate);
	background-color: transparent !important;
	}
	
.slick-prev:before,
.slick-next:before {
	display: none;
	}
	
.slider-nav {
	margin-left: 0px;
	margin-right: 0px;
	}

.slick-prev {
	left: -100px;
	}

.slick-next {
	right: -100px;
	}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
	opacity: 1;
	color: var(--white);
	border-color: var(--secondary);
	background-color: var(--secondary) !important;
	}

.slick-dots {
	width: 100%;
	z-index: 5;
	left: 0%;
	bottom: -30px;
	font-size: 0px;
	margin: 0px auto 0px;
	}

.slick-dots li {
	display: inline-block;
	width: 10px;
	height: 10px;
	border: none;
	margin: auto 8px;
	background: transparent;
	border-color: transparent;
	}

.slick-dots li.slick-active {
	margin: auto 12px;
	}

.slick-dots li::before {
	position: absolute;
	top: -6px;
	left: -6px;
	opacity: 0;
	content: '';
	width: 22px;
	height: 22px;
	border-radius: 25px;
	background: transparent;
	border: 1.5px solid var(--primary);
	}
	
.slick-dots li.slick-active::before {
	opacity: 1;
	}
	
.slick-dots li:hover button,
.slick-dots li.slick-active button {
	background: var(--secondary);
	}

.slick-dots li button {
	position: relative;
	width: 10px;
	height: 10px;
	padding: 0px 0px;
	border-radius: 20px;
	background: var(--primary);
	border: 1px solid var(--primary);
	}

.slick-dots li:hover button,
.slick-dots li.slick-active button {
	opacity: 1;
	background: var(--primary);
	border-color: var(--primary);
	}

.slick-dots li button:before {
	display: none;
	}

/* Link Button */

.link-btn {
	position: relative;
	z-index: 1;
	display: block;
	font-size: 16px;
	}

.link-btn a {
	position: relative;
	font-weight: 600;
	line-height: 22px;
	padding: 17px 45px;
	text-align: center;
	border-radius: 80px;
	color: var(--white);
	border-radius: 30px;
	letter-spacing: 3.2px;
	display: inline-block;
	vertical-align: middle;
	text-transform: uppercase;
	box-shadow: none !important;
	text-decoration: none !important;
	background: linear-gradient(180deg, #F4D03F 0%, #B88700 100%);
	}

.link-btn a:hover {
	color: var(--white);
	background: linear-gradient(180deg, #B88700 0%, #B88700 100%);
	}
	
/* Footer Styles */

.footer-wrapper {
    position: relative;
    width: 100%;
	z-index: 7;
	font-size: 16px;
    padding: 0px 0px;
    max-width: 1920px;
	margin: auto auto 0px;
	background:#F4D03F;
	}

/* Footer Top */

.footer-top {
    position: relative;
    display: block;
	overflow: hidden;
	font-weight: 400;
	line-height: 24px;
	color: var(--white);
    padding: 75px 0px 50px;
	}

.footer .row {
	position: relative;
	justify-content: space-between;
	}
	
.footer p {
	text-align: inherit;
	}

.ftcol {
	position: relative;
	float: left;
	width: auto;
	max-width: 25%;
	padding: 0px 15px;
	}

.footLogo {
	position: relative;
	display: block;
	width: 350px;
	height: 75px;
	overflow: hidden;
	margin: 0px 0px 15px;
	}

.footLogo a {
	}

.footLogo img {
	position: relative;
	display: block;
	height: auto;
	max-width: 100%;
	}

.ftcol.ftcol2 {
	min-width: 330px;
	}

/* Footer Head */
	
.footer-head {
	font-family: var(--fontStyle2);
	position: relative;
	display: block;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--black);
	margin: 0px 0px 30px;
	letter-spacing: -0.44px;
	font-variant: small-caps;
	text-transform: capitalize;
	}

ul.footer-social-media {
	flex-wrap: wrap;
	padding: 0px 0px;
	margin: 0px -5px;
	list-style-type: none;
	}

ul.footer-social-media li {
	position: relative;
	vertical-align: top;
	display: inline-block;
	padding: 0px 7px 15px;
	}

ul.footer-social-media li a {
	position: relative;
	display: block;
	font-size: 14px;
	width: 56px;
	height: 56px;
	line-height: 54px;
	text-align: center;
	border-radius: 56px;
	color: var(--alternate);
	background: var(--white);
	border: 1px solid var(--white);
	}

ul.footer-social-media li a:hover {
	color: var(--white);
	background: var(--alternate);
	border-color: var(--alternate);
	}

/*Contact FootInfo*/

ul.footerCompany-info {
	margin: 0px 0px;
	max-width: 315px;
	padding: 0px 0px;
	list-style-type: none;
	}

ul.footerCompany-info>li {
	position: relative;
	font-size: 16px;
	padding-left: 35px;
	margin-bottom: 15px;
	color: var(--black);
	}

ul.footerCompany-info>li i,
ul.footerCompany-info>li img {
	position: absolute;
	top: 5px;
	left: 0px;
	font-size: 16px;
	color: var(--black);
	}

ul.footerCompany-info>li a {
	color: var(--black);
	}

ul.footerCompany-info>li a:hover {
	color: var(--alternate);
	}
	
/* Footer Nav */

ul.footer-nav {
	position: relative;
	display: block;
	padding: 0px;
	margin: 0px 0px;
	list-style-type: none;
	}
	
ul.footer-nav li {
	position: relative;
	display: block;
	margin: 0px 0px 15px;
	}

ul.footer-nav li a {
	position: relative;
	display: block;
	color: var(--black);
	}
	
ul.footerCompany-info>li a:hover,
ul.footer-nav li a:hover,
ul.footer-nav li.selected a {
	color: var(--alternate);
	text-decoration: underline;
	}

/* Footer Bottom */

.footer-bottom {
    position: relative;
    display: block;
	overflow: hidden;
	padding: 18px 0px;
	background: var(--alternate);
	}

/* Copyright */

.copyright {
	position: relative;
	display: block;
	font-size: 15px;
	margin: 0px auto;
	font-weight: 400;
    line-height: 24px;
	text-align: center;
	color: var(--white);
	}

.copyright a {
	color: var(--white);
	display: inline-block;
	}

.copyright strong {
	background: url("../images/verzdesign-logo.png") no-repeat scroll right center;
	font-weight: 700;
	color: #FF7F11;
	padding-right: 20px;
	}

.copyright a:hover {
	color: #FF7F11;
	text-decoration: underline;
	}

.zIndex1 {
	z-index: 1;
	}
	
.zIndex2 {
	z-index: 2;
	}

.zIndex3 {
	z-index: 3;
	}

/* Nice Select */

.NiceSelect {
	position: relative;
	display: flex;
	}

.NiceSelect span {
	position: relative;
	width: 100%;
	}

.NiceSelect select {
	display: none;
	}

.nice-select {
	width: 100%;
    height: 51px;
    font-size: 15px;
	min-width: 180px;
    border-radius: 00px;
    line-height: normal;
	color: var(--primary);
    background: var(--white);
	border: 1px solid #F0F0F0;
    padding: 13px 40px 18px 20px;
	border-width: 0px 0px 1px 0px;
	}

.nice-select,
.nice-select .list {
	font-size: 16px;
	font-weight: 400;
	border-radius: 0px;
	color: var(--primary);
    background: var(--white);
	border: 1px solid #F0F0F0;
	border-width: 0px 0px 1px 0px;
	}

.nice-select .list {
	border: 1px solid #D0D0D0;
	}
	
.nice-select.open, .nice-select:active, .nice-select:focus, .nice-select:hover, .nice-selected .nice-select {
	background: var(--white);
	border-color: var(--secondary);
	}

.nice-select .current {
	opacity: 1;
	display: block;
	font-weight: 400;
	overflow: hidden;
	position: relative;
	-webkit-line-clamp: 1;
	color: var(--primary);
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	}

.nice-selected .nice-select .current {
	opacity: 1;
	font-weight: 400;
	color: var(--black);
	}

.nice-select:after {
	font-family: "Font Awesome 6 Free";
	position: absolute;
	border: none;
	top: 50%;
	right: 0px;
	width: auto;
	height: auto;
	display: block;
	line-height: 1;
	font-size: 15px;
	content: "\f107";
	font-weight: 900;
	pointer-events: none;
	color: var(--black);
	margin: 2px 0px 0px !important;
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
	transform: translateY(-50%) !important;
	}

.nice-select.open:after,
.nice-select:hover:after {
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
	}

.nice-select.open:after {
	content: "\f106";
	}

.nice-select.open .list {
	opacity: 1;
	pointer-events: initial;
	transform: scale(1) translateY(0);
	}

.nice-select.disabled {
	opacity: 0.5;
	color: #ffffff;
	pointer-events: none;
	border-color: #ffffff;
	}

.nice-select.disabled:after {
	border-color: #ffffff;
	}

.nice-select .list {
	position: absolute;
	margin-top: 0px;
	left: 0;
	top: 100%;
	opacity: 0;
	z-index: 9;
	min-width: 100%;
	overflow: hidden;
	padding: 0px 0px;
	overflow-y: auto;
	max-height: 300px;
	pointer-events: none;
	box-sizing: border-box;
	transform-origin: 50% 0;
	background-color: #ffffff;
	border-radius: 0px 0px;
	/*box-shadow: 0px 0px 5px #cfcfcf;*/
	transform: scale(0.75) translateY(-25px);
	transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
	}

.nice-select .list:hover .option:not(:hover) {
	color: #0C0C0C !important;
	background-color: transparent !important;
	}

.nice-select .option {
	font-weight: 400;
	cursor: pointer;
	outline: none;
	text-wrap: wrap;
	font-size: 16px;
	min-height: 40px;
	background: none;
	line-height: 30px;
	padding: 8px 20px;
	color: var(--primary);
	}

.nice-select .option:nth-child(even) {
	background: #F9F9F9;
	}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
	color: var(--white);
	background: var(--secondary);
	}

.nice-select .option.selected {
	font-weight: 400;
	}

.nice-select .option.disabled {
	opacity: 0.5;
	color: #ffffff;
	cursor: default;
	background-color: transparent;
	}

/* Contact Form */

.form-control:disabled,
.form-control[readonly] {
	background-color: transparent;
	}

.google-recaptch {
	position: absolute;
	bottom: 170px;
	right: 0px;
	z-index: 1;
    margin-right: -12px;
	}

.control-label {
	position: relative;
	font-size: 18px;
	font-weight: 500;
	color: #242424;
	padding: 0px 0px 15px;
	}

.required-field {
	color: #F00;
	}

.control-label small {
	color: #AAA;
	font-size: 18px;
	font-weight: 400;
	}

.form-group,
.form-check {
	padding: 0px;
	position: relative;
	margin-bottom: 20px;
	}
	
.form-control,
.form-custom-select,
.form-select {
	position: relative;
	display: block;
	width: 100%;
	z-index: 3;
	height: 56px;
	font-size: 16px;
	font-weight: 400;
	box-shadow: none;
	line-height: 24px;
	padding: 12px 30px;
	border-radius: 50px;
	background-clip: unset;
	background-image: none;
	color: var(--alternate);
	border: 1px solid #E5E5E5;
	background-color: var(--white);
	}

textarea.form-control {
	min-height: 110px;
	line-height: 24px;
	padding: 20px 30px;
	border-radius: 28px;
	height: auto !important;
	border: 1px solid #E5E5E5;
	}
	
textarea {
	resize: none;
	}
	
.form-control:focus,
.form-control:hover {
	color: var(--alternate);
	background: var(--white);
	border-color: var(--secondary);
	-webkit-box-shadow: none;
	outline: none !important;
	box-shadow: none;
	}
	
.form-control::-webkit-input-placeholder, ::-webkit-input-placeholder {
	opacity: 1;
	font-weight: 400;
	color: var(--primary);
	}

.form-control:-moz-placeholder, :-moz-placeholder { /* Firefox 18- */
	opacity: 1;
	font-weight: 400;
	color: var(--primary);
	}

.form-control::-moz-placeholder, ::-moz-placeholder {  /* Firefox 19+ */
	opacity: 1;
	font-weight: 400;
	color: var(--primary);
	}

.form-control:-ms-input-placeholder, :-ms-input-placeholder {
	opacity: 1;
	font-weight: 400;
	color: var(--primary);
	}
	
.form-control:focus::-webkit-input-placeholder { color: transparent !important; }
.form-control:focus:-moz-placeholder { color: transparent !important; }
.form-control:focus::-moz-placeholder { color: transparent !important; }
.form-control:focus:-ms-input-placeholder { color: transparent !important; }

.btn-primary {
	position: relative;
	width: auto;
	font-size: 16px;
	margin: 0px 0px;
	font-weight: 600;
	padding: 19px 45px;
	line-height: 18px;
	text-align: center;
	border-radius: 30px;
	color: var(--white);
	letter-spacing: 3.2px;
	border: none !important;
	text-transform: uppercase;
	background: linear-gradient(180deg, #F4D03F 0%, #B88700 100%);
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	}

.btn-primary:hover, .btn-primary.focus, .btn-primary:focus { color: var(--white); background: linear-gradient(180deg, #B88700 0%, #B88700 100%); box-shadow: none !important; }
.btn-primary.disabled, .btn-primary:disabled { color: var(--white); background: linear-gradient(180deg, #B88700 0%, #B88700 100%); opacity: 0.4; }
.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle { color: var(--white); background: linear-gradient(180deg, #B88700 0%, #B88700 100%); }
.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show>.btn-primary.dropdown-toggle:focus { box-shadow: none !important; }

/* Thank You Container */

.thank-you-container,
.thank-you-container figure {
	position: relative;
	display: block;
	width: 100%;
	overflow: hidden;
	margin: 0px auto;
	}
	
.thank-you-container figure::before {
	position: absolute;
	inset: 0px;
	z-index: 1;
	content: '';
	background: linear-gradient(270deg, rgba(0, 0, 0, 0.50) 35.29%, rgba(0, 0, 0, 0.00) 100%);
	}

.thank-you-container figure img {
	position: relative;
	height: 100%;
	width: 100%;
	max-width: none;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
	}
	
.thank-you-content-area {
	position: absolute;
	z-index: 5;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 100%;
	display: block;
	margin: 0px auto;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
    }
	
.thank-you-content-area .captionWrapper {
    position: relative;
	display: table;
	height: 100%;
	width: 100%;
	margin: 0px auto;
	}
	
.thank-you-content-area .captionContainer {
	padding: 0px;
	position: relative;
	display: table-cell;
	vertical-align: middle;
	}
	
.thank-you-content-area .thank-you-content {
	position: relative;
    width: 100%;
	display: block;
	margin: 0px 0px;
    max-width: 600px;
	color: var(--white);
	}
	
.thank-you-content h1 {
	line-height: 1;
	font-size: 90px;
	color: var(--white);
	padding-bottom: 25px;
	letter-spacing: -2.55px;
	}

.thank-you-content p {
	margin: 0px 0px 30px;
	}

/* Scroll To Top */
	
#toTop {
	text-decoration: none;
	position: fixed;
	display: none;
	bottom: 15px;
	right: 15px;
	width: 55px;
	height: 55px;
	border: none;
	opacity: 1;
	z-index: 1001;
	text-indent: 100%;
	background: url(../images/ui.totop.png) 0px 0px no-repeat;
	overflow: hidden;
	}

#toTopHover {
	background: url(../images/ui.totop.png) 0px 0px no-repeat;
	width: 55px;
	height: 55px;
	display: block;
	overflow: hidden;
	float: left;
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0.8;
	}

#toTop:hover {
	opacity: 1;
	}

#toTop:active, #toTop:focus {
	outline: none;
	}
	
.mean-container a.meanmenu-reveal span {
	background: var(--white);
	margin: 5px 0px 0px auto;
	}

.mean-container a.meanmenu-reveal {
	width: 24px;
	height: 30px;
	padding: 0px 0px;
	color: var(--white);
	}

.mean-container .mean-nav {
	margin-top: 69px;
	}

.mean-container .mean-nav ul li:hover > a, .mean-container .mean-nav ul li.selected > a {
	color: #ffffff !important;
	background: var(--alternate) !important;
	}

.mean-container .mean-nav ul li a, .mean-container .mean-nav ul li li a, .mean-container .mean-nav ul li li li a {
	text-transform: uppercase;
	background: var(--secondary);
	}

/*-- loader  --*/
.preloader.fade { opacity: 0; }
#preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #ffffff; z-index: 999; }
#loader { display: block; position: relative; left: 50%; top: 50%; width: 150px; height: 150px; margin: -75px 0 0 -75px; border-radius: 50%; border: 3px solid transparent; border-top-color: var(--secondary); -webkit-animation: spin 2s linear infinite; animation: spin 2s linear infinite; }
#loader:before { content: ""; position: absolute; top: 5px; left: 5px; right: 5px; bottom: 5px; border-radius: 50%; border: 3px solid transparent; border-top-color: var(--secondary); -webkit-animation: spin 3s linear infinite; animation: spin 3s linear infinite; }
#loader:after { content: ""; position: absolute; top: 15px; left: 15px; right: 15px; bottom: 15px; border-radius: 50%; border: 3px solid transparent; border-top-color: var(--secondary);; -webkit-animation: spin 1.5s linear infinite; animation: spin 1.5s linear infinite; }
@-webkit-keyframes spin {
	0% { -webkit-transform: rotate(0deg); -ms-transform: rotate(0deg); transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); -ms-transform: rotate(360deg); transform: rotate(360deg); } }
	@keyframes spin {  0% { -webkit-transform: rotate(0deg); -ms-transform: rotate(0deg); transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); -ms-transform: rotate(360deg); transform: rotate(360deg); }
}
/*-- loader  --*/
	
.grecaptcha-badge {
	z-index: 99;
	bottom: 150px !important;
	}

.gt_switcher {
	position: relative;
	display: block;
	}

.gt_switcher {
	font-size: 14px !important;
	overflow: visible !important;
	}

.gt_switcher .gt_option {
	position: absolute !important;
	top: 32px;
	right: 0px;
	}

.gt_switcher .gt_option a {
	font-size: 14px !important;
	}
	
.gt_switcher a {
    font-size: 12px !important;
	}

/* =Media Queries
-------------------------------------------------------------- */

@media (max-width: 1699.98px) {
	body, .nav ul, .link-btn, .form-control, .form-custom-select, .form-select, .btn-primary, ul.footerCompany-info>li, .footer-wrapper { font-size: 14px; }
    h1, .h1, h2, .h2, .pageTitle h1, .pageTitle h2, .banner_caption .captionContainer .bannerHeading1 { font-size: 50px; }
    h3, .h3 { font-size: 40px; }
    h4, .h4, .productTitle-box h4, .ourTeam-box h4, .footer-head { font-size: 18px; }
    h5, .h5 { font-size: 16px; }
    h6, .h6 { font-size: 14px; }
	.container { max-width: 1050px; }
	.wide-container { max-width: 1250px; }
	.logo { width: 350px; height: 70px; margin: 20px 0px; }
	.banner_caption .captionContainer .bannerHeading1 strong { font-size: 74px; }
	.homeBannerSlider .slick-dots { left: 80px; }
	.banner_caption .captionContainerInner { font-size: 18px; }
	.link-btn a { padding: 14px 35px; }
	.missionVison-box { padding: 15px 30px; }
	.who-weAre-section { padding-left: 65px; }
	.homeAbout-caption .table tr th { min-width: 160px; }
	.slick-prev { left: -50px; }	
	.slick-next { right: -50px; }
	.slick-prev, .slick-next { width: 45px; height: 45px; font-size: 14px; }
	.coverContainer-box { padding: 0px 30px; }
	.certified-section { padding-right: 65px; }
	.form-control, .form-custom-select, .form-select { height: 50px; padding: 12px 20px; }
	textarea.form-control { padding: 20px 20px; border-radius: 20px; }
	.btn-primary { padding: 16px 40px; }
	.footer-bottom { padding: 15px 0px; }
	.copyright { font-size: 13px; }
	.thank-you-content h1 { font-size: 75px; }
	.thank-you-content-area .thank-you-content { max-width: 570px; }
	}

@media (max-width: 1599.98px) {
	.who-weAre-caption { padding: 40px 60px; }
    }

@media (max-width: 1499.98px) {
	.homeBannerSlider .slick-dots { left: 15px; bottom: 150px; }
	}
	
@media (max-width: 1399.98px) {
	p { margin: 0 0 15px; }
	.pageTitle { padding: 0px 0px 25px; }
	.section-container { padding: 60px 0px 40px; }
	.section-container-full { padding: 60px 0px; }
	.homeIntro-container { padding: 60px 0px 30px; }
	.pageTitle h6::before, .pageTitle h6::after { width: 40px; height: 3px; }
	.pageTitle h6::before { margin-right: 20px; }
	.pageTitle h6::after { margin-left: 20px; }
	.pageTitle h6 { padding-bottom: 20px; }
	.homeIntro-topSection { padding-bottom: 45px; }
	.who-weAre-section { padding-left: 15px; }
	.who-weAre-caption { padding: 30px 20px 30px 30px; }
	.productTitle-box { padding: 30px 15px 25px; }
	.slick-prev { left: 30px; }	
	.slick-next { right: -30px; }
	.coverContainer-box { padding: 0px 15px; }
	.teamTitle-box { padding-bottom: 30px !important; }
	.certified-section { padding-right: 15px; }
	.certified-caption { padding-left: 30px; padding-right: 20px; }
	.homeContact-section { margin-right: 20px; }
	.footer-top { padding: 55px 0px 30px; }	
	}

@media (max-width: 1299.98px) {
	.logo { width: 170px; height: 33px; margin: 25px 0px; }
	.nav>ul>li>a { padding: 30px 20px; }
	.headerLangContainer a img { max-width: 60px; }
	.homeBannerSlider .slick-dots { left: 0px; bottom: 30px; width: 100%; text-align: center; }
	.homeBannerSlider .slick-dots>li { display: inline-block; margin: 0px 12px !important; }
	}
	
@media (max-width: 1199.98px) {	
	.who-weAre-section>.row>.col-lg-5, .who-weAre-section>.row>.col-lg-7 { width: 100%; }
	}
	
/* Portrait tablets and medium desktops */
@media (max-width: 991.98px) {
	.header-container { padding: 0px 15px; }
	#pageHeaderWrapper, #pageHeader { position: relative; inset: auto; background: var(--alternate); }
    .headerTop.active .nav-wrapper { z-index: 1111; }
    .mean-container a.meanmenu-reveal { top: 20px; }
    .headerTop.active .mean-container .mean-nav { height: 367px; overflow: hidden; }
	.topRightHeader { position: absolute; left: 0px; top: 0px; width: 100%; justify-content: end; padding: 23px 50px 23px 0px; }
	.nav-wrapper { margin: 0px 0px; order: 3; position: absolute; top: 0px; right: 0px; float: none; width: 100%; }
	.logo { margin: 21px 0px; width: 140px; height: 27px; }
	.bannerWrapper, .thank-you-content-area { background: var(--alternate); }
	.banner_caption, .thank-you-content-area { position: relative; inset: auto; }
	.banner_caption .captionContainerInner { font-size: 16px; padding: 30px 0px 70px; }
	.banner_caption .captionContainerInner p { margin-bottom: 30px; }
	.certified-caption { padding-left: 0px; padding-right: 15px; }
	.certified-section .container>.row>.col-lg-5 { width: 42%; }	
	.certified-section .container>.row>.col-lg-7 { width: 58%; }
	.certified-caption .pageTitle { padding: 0px 0px 20px; }
	.homeContact-section { float: none; max-width: 100%; margin-right: 0px; margin-bottom: 40px; }
	.map-container { height: 300px; }
	.ftcol { width: 100%; max-width: 100%; margin-bottom: 15px; }
	.footer-head { margin: 0px 0px 20px; }
	.ftcol.ftcol4 { margin-bottom: 5px; }
	.footLogo { width: 170px; height: 79px; margin: 0px auto 15px; }
	ul.footer-social-media { justify-content: center; }
	ul.footer-social-media li a { width: 46px; height: 46px; line-height: 44px; }
	ul.footerCompany-info { max-width: 100%; }
	ul.footerCompany-info>li { margin-bottom: 20px; }
	ul.footer-nav { display: flex; flex-wrap: wrap; margin: 0px -10px; }
	ul.footer-nav li { padding: 0px 10px; margin: 0px 0px 15px; }
	.thank-you-content { padding: 40px 0px; }	
	.thank-you-content-area .thank-you-content { max-width: 100%; }
	}

/* Landscape phones and portrait tablets */
@media (max-width: 768px) {
    h1, h2, .pageTitle h1, .pageTitle h2, .banner_caption .captionContainer .bannerHeading1 { font-size: 30px !important; letter-spacing: 0px !important; }
	h3 { font-size: 26px; letter-spacing: 0px !important; }
	h4 { font-size: 18px;  letter-spacing: 0px !important; }
	h5 { font-size: 16px; letter-spacing: 0px !important; }
	h6 { font-size: 14px;  letter-spacing: 0px !important; }
	#toTop { bottom: 10px; right: 10px; width: 40px; height: 40px; background-size: cover; }
	#toTopHover { background-size: cover; width: 40px; height: 40px; }
	h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { padding: 0px 0px 15px; }
	.banner_caption .captionContainer .bannerHeading1 strong, .thank-you-content h1 { font-size: 40px !important; }
	.banner_caption .captionContainer .bannerHeading1 { padding-bottom: 15px; }
	.banner_caption .captionContainer { text-align: center; }
	.missionVison-section .row>.col-md-6 { margin-bottom: 10px; border-right: none; }
	.homeIntro-topSection { padding-bottom: 30px; }
	.who-weAre-caption { padding: 30px 15px; }
	.homeAbout-caption .table { max-width: 100%; }
	.homeAbout-caption .table tr { position: relative; display: block; margin-bottom: 20px; }
	.homeAbout-caption .table tr td, .homeAbout-caption .table tr th { vertical-align: top; display: block; padding: 3px 0px; line-height: normal; }
	.homeAbout-caption .table tr th { min-width: 100%; }
	.certified-section .container>.row>.col-lg-5, .certified-section .container>.row>.col-lg-7 { width: 100%; }	
	.certified-caption { padding-right: 0px; }	
	.thank-you-content h1 { line-height: normal; }	
	}

@media (max-width: 575px) {
	
	}

@media (max-width: 480px) {
	.headerLangContainer { display: none; }
	
	}

@media (max-width: 380px) {
	}

@-ms-viewport{ width: auto !important; }