@charset "utf-8";
/**=========================================================
 * Theme Name   :  I2R Consulting
 * Author       :  Amit Suthar
 * Description  :  October 2024
 * File Name	:  style.css
=========================================================**/

/* Global Styles */

:root { 
	--primary: #666666; /*Primary Color*/
	--secondary: #C92F2E; /* Secondary Color*/
	--white: #ffffff; /*White*/
	--alternate: #1A1A1A; /* Alternate Color*/	
	--background1: #F7F7F7; /* Background Color*/
	--fontStyle1: "Albert Sans", sans-serif;
	--fontStyle2: "Manrope", sans-serif;
	}

.primary { color: var(--primary) !important;}
.secondary { color: var(--secondary) !important;} 
.white { color: var(--white) !important; }
.alternate { color: var(--alternate) !important; }
.background1 { background-color: var(--background1) !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: 18px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--primary);
	-webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
	-webkit-text-size-adjust: 100%;
	background: #ffffff url(../images/loader.gif) center center no-repeat;
	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;
    height: auto !important;
    min-height: 100%;
    height: 100%;
    width: 100%;
	display: block;
	margin: 0 auto;
    overflow: hidden;
    max-width: 1920px;
	background: #ffffff;
	}
	
body,
#wrapper,
.footer-wrapper {
	opacity: 0;
	}

.pageClass {
	position: relative;
	display: block;
	}

.container,
.wide-container,
.header-container {
	position: relative;
	width: 100%;
	margin: 0px auto;
	max-width: 1180px;
	padding: 0px 15px;
	}

.wide-container,
.header-container {
    max-width: 1430px;
	}
	
.notificationBar {
	font-weight: 300;
	padding: 12px 0px;
	text-align: center;
	color: var(--white);
	background: var(--alternate);
	}

/* Header Styles */

#pageHeaderWrapper {
	position: relative;
	width: 100%;
	z-index: 100;
	display: block;
	margin: 0px auto;
	background: var(--secondary);
	}

#pageHeader {
	position: relative;
	display: block;
	width: 100%;
	z-index: 101;
	padding: 0px;
	margin: 0px auto;
    max-width: 1920px;
	background: var(--secondary);
	}

.is-sticky #pageHeader {
	left: auto;
	max-width: 1920px;
	box-shadow: 0px 20px 30px 0px rgba(34, 34, 34, 0.05);
	}

/* Top Header Container */

.topHeaderContainer {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin: 0px auto;
    }

/* Logo */
	
.logo {
	position: relative;
	display: flex;
    float: left;
	width: 343px;
	height: 83px;
	z-index: 1001;
	margin: 8px 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 0px 0px;
    justify-content: space-between;
	}
	
/* Nav */
	
.nav-wrapper {
	position: relative;
	display: block;
	margin: 0px auto;
	}
	
.nav-container,
.nav {
	position: relative;
	width: 100%;
	display: block;
	margin: 0px auto;
	text-align: center;
	}
	
.nav ul {
	position: relative;
	display: flex;
	padding: 0;
	width: 100%;
	font-size: 14px;
	flex-wrap: wrap;
	margin: 0px auto;
	list-style-type: none;
	justify-content: center;
	}
	
.nav>ul>li {
    position: relative;
	display: block;
	height: 100%;
    font-weight: 500;
    margin: 0px 15px;
	}

.nav>ul>li>a {
	position: relative;
	display: block;
	height: 100%;
	line-height: 24px;
	padding: 38px 0px;
	color: var(--white);
	letter-spacing: -0.28px;
	text-transform: uppercase;
	-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>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;
	display: block;
	z-index: 1;
	top: 1px;
	left: 50%;
	right: 50%;
	width: 0px;
	content: '';
	height: 3px;
	overflow: hidden;
	border-radius: 0px;
	background: var(--white);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	-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>li:hover>a:before,
.nav>ul>li.selected>a:before {
	left: 0px;
	right: 0px;
	width: 100%;
	}
	
.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(--white);
	-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>li.selected>a {
	font-weight: 700;
	}

.nav>ul ul,
.nav>ul ul ul {
	position: absolute;
	top: 100%;
	opacity: 0;
	width: 100%;
	left: -20px;
	font-size: 16px;
    font-weight: 500;
	min-width: 270px;
	text-align: left;
	padding: 0px 0px;
	border-radius: 0px;
	visibility: hidden;
    text-transform: none;
	margin: 30px 0px 0px 0px;
	background: var(--alternate);
	-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;
	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%;
	}
	
.nav>ul ul a,
.nav>ul ul ul a {
	position: relative;
	display: block;
	line-height: 20px;
	padding: 15px 20px;
	border-radius: 0px;
	color: var(--white);
	letter-spacing: -0.32px;
	text-transform: capitalize;
	}

.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(--white);
	background: 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;
	}

.headerGroupContainer {
	position: relative;
	display: flex;
	margin: 0px 0px;
	align-items: center;
	justify-content: end;
	}

.headerSearch-box a {
	position: relative;
	display: flex;
	width: 46px;
	height: 46px;
	border-radius: 50px;
	align-items: center;
	justify-content: center;
	border: 1px solid #D9CDB6;
	}

.headerSearch-box a:hover {
	background: var(--alternate);
	border-color: var(--alternate);
	}

ul.headerTopLinks {
	display: flex;
	flex-wrap: wrap;
	padding: 0px 0px;
	margin: 0px -12px;
	list-style-type: none;
	}

ul.headerTopLinks>li {
	padding: 0px 12px;
	}

ul.headerTopLinks>li a:hover img {
	filter: invert(100%) sepia(82%) saturate(5740%) hue-rotate(341deg) brightness(97%) contrast(100%);
	}

/* 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;
	}
	
.banner-slide figure {
	position: relative;
	display: block;
	width: 100%;
	z-index: 1;
	padding: 0px;
    overflow: hidden;
	margin: 0px auto;
	}

.banner-slide figure::before {
	position: absolute;
	inset: 0px;
	z-index: 1;
	content: '';
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 73.06%, rgba(0, 0, 0, 0.15) 100%);
	}

.banner-slide 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;
	}

.banner_caption {
    position: absolute;
	z-index: 7;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 100%;
	color: #ffffff;
	display: block;
	margin: 0px auto;
	-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: 18px;
	font-weight: 400;
	margin: 0px auto;
	max-width: 1400px;
	color: var(--white);
	padding: 60px 60px 60px 100px;
	background: rgba(201, 47, 46, 0.90);
	}

.banner_caption .captionContainerInner .row .col-lg-7 {
	width: 56%;
	}

.banner_caption .captionContainerInner .row .col-lg-5 {
	width: 44%;
	}

.banner_caption .captionContainer .bannerHeading1 {
	font-size: 60px;
	line-height: 1.2;
	color: var(--white);
	padding-bottom: 0px;
	text-transform: capitalize;
	}

/* Header Quick Search */

.header-quick-search .form-control {
	height: 50px;
	padding: 14px 25px;
	border-radius: 0px;
	border: 1px solid var(--white);
	}
	
.header-quick-search .form-control:focus,
.header-quick-search .form-control:hover {
	border: 1px solid var(--white);
	}

.header-quick-search .btn-1 {
	position: relative;
	border: none;
	height: 50px;
	color: var(--alternate);
	line-height: 1;
	font-size: 20px;
	border-radius: 0;
	padding: 10px 20px;
	text-align: center;
	background: var(--white);
	vertical-align: top;
	display: inline-block;
	text-transform: uppercase;
	border: 1px solid var(--white);
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	}

.header-quick-search .btn-1:hover {
	color: var(--secondary);
	background: var(--white);
	border-color: var(--white);
	}

.header-quick-search .btn-close {
	position: absolute;
	color: #ffffff;
	opacity: 1;
	right: 0;
	top: -30px;
	text-shadow: none;
	}

.header-quick-search .btn-close:hover {
	color: #C30000;
	}
	
.modal-content {
	border: none;
	box-shadow: none;
	border-radius: 0px;
	}

.modal-backdrop.show {
	opacity: 0.9;
	}

/* 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; }
.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; }
.pb40 { padding-bottom: 40px !important; }
.pb50 { padding-bottom: 50px !important; }
.pb60 { padding-bottom: 60px !important; }
.pb100 { padding-bottom: 100px !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-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-25 { margin-top: -25px; margin-bottom: -25px; margin-left: -25px; margin-right: -25px; }
.grid-25>.col, .grid-25>[class*="col-"] { padding-top: 25px; padding-bottom: 25px; }
.gutters-25>.col, .gutters-25>[class*="col-"] { padding-right: 25px; padding-left: 25px; }
.row.grid-30 { margin-top: -30px; margin-bottom: -30px; margin-left: -30px; margin-right: -30px; }
.grid-30>.col, .grid-30>[class*="col-"] { padding-top: 30px; padding-bottom: 30px; }
.gutters-30>.col, .gutters-30>[class*="col-"] { padding-right: 30px; padding-left: 30px; }
.row.grid-40 { margin-top: -40px; margin-bottom: -40px; }
.grid-40>.col, .grid-40>[class*="col-"] { padding-top: 40px; padding-bottom: 40px; }

.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; } 
.customGrid-container { padding: 0px 70px; }

/* 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 {
	position: relative;
	display: block;
	width: 100%;
	padding: 120px 0px 70px;
	}

.section-container-full {
	padding: 120px 0px;
	}

/*Home*/

.homeIntro-section {
	background-repeat: no-repeat;
	background-position: right center;
	}
	
.homeIntro-section .row>.col-lg-7 {
	width: 64%;
	}
	
.homeIntro-section .row>.col-lg-5 {
	width: 36%;
	}

.homeIntro-section .img-holder {
	padding-bottom: 73.52%;
	}

.homeIntro-caption {
	padding: 30px 0px 30px 60px;
	}

.homeservice-section {
	color: var(--white);
	background: var(--alternate);
	}

.homeservice-pic {
	padding-left: 175px;
	}

.homeservice-pic .img-holder {
	padding-bottom: 122.26%;
	}

.homeService-leftGrid {
	padding: 30px 0px;
	}

.homeService-leftGrid .pageTitle {
	float: right;
	max-width: 600px;
	margin-right: 88px;
	padding-bottom: 60px;
	}

.homeService-slider {
	margin: 0px -98px 0px 0px;
	}

.homeService-slide {
	font-size: 16px;
	padding: 0px 15px;
	}

.homeService-slide .serviceList-box {
	width: 372px;
	opacity: 0.5;
	}

.slick-active .serviceList-box {
	opacity: 1;
	}

.homeService-slide .service-title,
.homeService-slide .service-maskContent {
	direction: ltr;
	}

.homeService-slide .serviceList-box .img-holder {
	padding-bottom: 120.96%;
	}

.homeService-btnBlock {	
	width: 100%;
	float: right;
	max-width: 775px;
	padding-top: 50px;
	margin-right: -84px;
	}

.slide-button {
	position: relative;
	display: flex;
	z-index: 3;
	margin: 0px -5px;
	}

.slide-button .slick-arrow {
	position: relative;
	display: flex;
	width: 57px;
	height: 57px;
	margin: 0px 5px;
	font-size: 22px;
	color: var(--white);
	border-radius: 60px;
	background: #5E5E5E;
	align-items: center;
	justify-content: center;
	border: 1px solid #5E5E5E;
	}

.slide-button .slick-arrow:hover {
	color: var(--alternate);
	background: var(--white);
	border-color: var(--white);
	}

/*About Us*/

.team-itemBox {
	background: var(--white);
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	}

.team-itemBox a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	}

.team-itemBox .img-holder {
	padding-bottom: 89.68%;
	}

.team-infoBox {
	font-family: var(--fontStyle2);
	font-size: 20px;
	font-weight: 500;
	padding: 35px 40px;
	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;
	}

.team-infoBox h3 {
	padding: 0px 0px;
	margin-bottom: 15px;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	}

.team-itemBox:hover {
	background: var(--secondary);
	}

.team-itemBox:hover .team-infoBox,
.team-itemBox:hover .team-infoBox h3 {
	color: var(--white);
	}

.aboutIntro-section {
	background-repeat: no-repeat;
	background-position: left center;
	}

.aboutIntro-section .img-holder {
	padding-bottom: 73.69%;
	}

.aboutIntro-section>.wide-container>.row>.col-lg-7 {
	width: 63.5%;
	}

.aboutIntro-section>.wide-container>.row>.col-lg-5 {
	width: 36.5%;
	}

.aboutIntro-caption {
	padding-right: 60px;
	}

.aboutSub-intro {
	color: var(--white);
	background: var(--alternate);
	}

.subIntro-left {
	padding-right: 180px;
	}

.subIntro-left .img-holder {
	padding-bottom: 122.10%;
	}

.subIntro-caption {
	max-width: 764px;
	padding: 30px 15px;
	margin-left: -50px;
	}

.subIntro-caption p {
	margin-bottom: 25px;
	}

.aboutFull-Banner {
	margin-bottom: 80px;
	}

.team-modal-container .modal-dialog {
    max-width: 1400px;
	padding: 40px 0px 0px;
	}

.team-modal-container .modal-body {
	padding: 0px 0px;
	}

.team-modal-container .btn-close {
	position: absolute;
	top: -60px;
	right: 0px;
	z-index: 2;
	font-size: 30px;
	padding: 0px 0px;
	color: var(--white);
	box-shadow: none !important;
	background-image: none !important;
	}

.team-modal-container .btn-close:hover {
	opacity: 1;
	}

.team-modal-container .img-holder {
	padding-bottom: 124.92%;
	}

.teamModal-infoBox {
	max-width: 520px;
	}

.teamModal-infoBox .pageTitle {
	font-family: var(--fontStyle2);
	color: var(--secondary);
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 40px;
	padding-bottom: 35px;
	border-bottom: 1px solid #CCC;
	}

.modalRight-content {
	padding: 30px 35px;
	}

/*Service*/

.serviceList-box a {
	position: relative;
	display: block;
	overflow: hidden;
	color: var(--white);
	}

.serviceList-box .img-holder {
	padding-bottom: 118.16%;
	}

.serviceList-box .img-holder::before {
	position: absolute;
	z-index: 2;
	inset: 0px;
	content: '';
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 53.33%, rgba(0, 0, 0, 0.70) 100%);
	}

.service-title {
	position: absolute;
	display: flex;
	inset: 0px;
	z-index: 3;
	width: 100%;
	padding: 50px 50px;
	flex-direction: column;
	justify-content: end;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	}

.serviceList-box:hover .service-title {	
	top: auto;
	opacity: 0;
	bottom: -100%;
	}

.service-title h3,
.service-maskContent h3 {
	padding: 0px 0px;
	line-height: 1.2;
	color: var(--white);
	}

.service-maskContainer {
	position: absolute;
	display: flex;
	inset: 0px;
	z-index: 2;
	opacity: 0;
	flex-direction: column;
	justify-content: end;
	background: rgba(201, 47, 46, 0.90);
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	}

.serviceList-box:hover .service-maskContainer {
	opacity: 1;
	}
	
.service-maskContent {
	position: relative;
	width: 100%;
	overflow-y: auto;
	max-height: 500px;
	padding: 50px 50px;
	}

.service-maskContent h3 {
	padding-bottom: 25px;
	}

.service-btn {
	position: relative;
	font-size: 15px;
	font-weight: 700;
	padding-top: 10px;
	color: var(--white);
	letter-spacing: -0.3px;
	}

.ctcWrapper {
	background: var(--secondary);
	}

.ctcWrapper-content {
	/*float: right;*/
	/*max-width: 725px;*/
	padding: 30px 15px;
	/*margin-right: -10px;*/
	}

.ctcWrapper-content .pageTitle h2 {
	font-size: 54px;
	letter-spacing: -2.16px;
	text-transform: capitalize;
	}

.ctcImg-wrapper {
	padding-left: 183px;
	}

.ctcImg-wrapper .img-holder {
	padding-bottom: 64.35%;
	}

/*Service Details*/

.serviceDetails-listing {
	padding: 10px 50px 50px;
	}

.serviceDetails-listing ul.ul-listing {
	column-count: 2;
	column-gap: 50px;
	margin-bottom: 0px;
	}

.serviceDetails-listing ul.ul-listing>li {
	padding-bottom: 20px;
	}

.services-slider {
	padding-top: 10px;
	margin: 0px -15px;
	}

.services-slide {
	font-size: 16px;
	padding: 0px 15px;
	}

/*Courses Listing*/

.coursesList-box {
	background: #F0F0F0;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	}

.coursesList-box:hover {
	background: var(--secondary);
	}

.coursesList-box .img-holder {
	padding-bottom: 89.68%;
	}

.courseTitle-box {
	display: flex;
	min-height: 180px;
	padding: 40px 40px;
	flex-direction: column;
	justify-content: center;
	}

.courseTitle-box h4 {
	font-size: 26px;
	padding: 0px 0px;
	line-height: 1.4;
	letter-spacing: -1.04px;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	}

.coursesList-box:hover .courseTitle-box h4 {
	color: var(--white);
	}

/*Course Details*/

.courseOverlay-section {
	position: absolute;
	inset: 0px;
	z-index: 1;
	}

.courseOverlay-section .wide-container {
	height: 100%;
	}

.courseOverlay-box {
	position: absolute;
	left: 0px;
	bottom: 0px;
	max-width: 750px;
	padding: 25px 50px;
	background: rgba(255, 255, 255, 0.90);
	}

.courseOverlay-group {
	color: var(--alternate);
	}

.courseOverlay-group i {
	position: relative;
	font-size: 18px;
	margin-bottom: 10px;
	color: var(--secondary);
	}

.courseSection-container {
	padding: 60px 0px;
	}

.courseTitle-section {
	padding-bottom: 60px;
	}
	
.courseTitle-section .link-btn1 a {
	min-width: 200px;
	}

.coursePrice-tag {
	padding-right: 10px;
	}

.coursePrice-tag h3 {
	font-size: 34px;
	padding: 0px 0px;
	letter-spacing: -1.36px;
	color: var(--secondary);
	text-transform: uppercase;
	}

.courseTabs-group {
	margin-bottom: 90px;
	border-bottom: 1px solid #cccccc;
	}

.courseTabs-group ul.nav-tabs {
	display: flex;
	flex-wrap: wrap;
	margin: 0px 0px;
	padding: 0px 0px;
	border: none !important;
	}

.courseTabs-group ul.nav-tabs>li {
	padding: 0px 0px;
	}

.courseTabs-group ul.nav-tabs>li a.nav-link {
	position: relative;
	font-size: 16px;
	font-weight: 500;
	overflow: hidden;
	color: var(--primary);
	padding: 0px 40px 30px;
	letter-spacing: -0.32px;
	border: none !important;
	text-transform: uppercase;
	}

.courseTabs-group ul.nav-tabs>li a.nav-link:hover,
.courseTabs-group ul.nav-tabs>li a.nav-link.active {
	color: var(--secondary);
	}

.courseTabs-group ul.nav-tabs>li a.nav-link.active {
	font-weight: 700;
	}
	
.courseTabs-group ul.nav-tabs>li a.nav-link::before {
	position: absolute;
	bottom: 0px;
	left: 0px;
	opacity: 0;
	width: 100%;
	content: '';
	height: 4px;
	background: var(--secondary);
	}

.courseTabs-group ul.nav-tabs>li a.nav-link:hover::before,
.courseTabs-group ul.nav-tabs>li a.nav-link.active::before {
	opacity: 1;
	}

.tabsGroup-section {
	padding-bottom: 40px;
	}

.tabsGroup-section h3 {
	padding-bottom: 30px;
	}

.tabsGroup-section p {
	margin-bottom: 25px;
	}

.tabsGroup-section p:last-child {
	margin-bottom: 0px;
	}

.tabsGroup-section .serviceDetails-listing {
	padding-bottom: 0px;
	}

.gallery-section {
	background: var(--alternate);
	}

.gallery-slide {
	padding: 0px 15px;
	}

.gallery-slider .slick-prev {
	left: 130px;
	}

.gallery-slider .slick-next {
	right: 130px;
	}

.gallery-slider .slick-prev,
.gallery-slider .slick-next {
	opacity: 0.5;
	color: var(--alternate);
	}

.gallery-slider .slick-prev:hover,
.gallery-slider .slick-prev:focus,
.gallery-slider .slick-next:hover,
.gallery-slider .slick-next:focus {
	opacity: 1;
	color: var(--alternate);
	background: var(--white);
	border-color: var(--white);
	}

.galleryItem-box {
	opacity: 0.2;
	width: 446px;
	}

.slick-active .galleryItem-box {
	opacity: 1;
	}

.galleryItem-box a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
	}

.galleryItem-box .img-holder {
	padding-bottom: 118.16%;
	}

.galleryMask-container {
	position: absolute;
	inset: 0px;
	z-index: 2;
	opacity: 0;
	display: flex;
	font-size: 40px;
	color: var(--white);
	align-items: center;
	justify-content: center;
	background: rgba(201, 47, 46, 0.90);
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	}

.galleryItem-box:hover .galleryMask-container {
	opacity: 1;
	}

/* Content Style */

.inner-banner {
	position: relative;
	width: 100%;
    padding: 0px;
	display: block;
	margin: 0px auto;
	}

.inner-banner figure {
	position: relative;
	display: block;
	width: 100%;
    padding: 0px;
	overflow: hidden;
	margin: 0px auto;
	}

.inner-banner figure img {
    position: relative;
	height: 100%;
	width: 100%;
	max-width: none;
	min-height: 120px;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
	}

.inner_banner_caption {
	position: absolute;
	z-index: 7;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 100%;
	display: block;
	margin: 0px auto;
	padding: 0px 0px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
    }

.inner_banner_caption .captionWrapper {
    position: relative;
	display: table;
	height: 100%;
	width: 100%;
	margin: 0px auto;
	}
	
.inner_banner_caption .captionContainer {
    position: relative;
	padding: 0px;
	display: table-cell;
	vertical-align: bottom;
	}
	
.inner_banner_caption .captionContainerInner {
	position: relative;
	margin: 0px;
	width: auto;
	min-width: 500px;
	padding: 50px 100px;
	display: inline-block;
	background: rgba(201, 47, 46, 0.90);
	}

.inner_banner_caption .captionContainer .innerBannerHeading1 {
	line-height: 1;
	font-size: 54px;
	color: var(--white);
	padding-bottom: 25px;
	letter-spacing: -2.16px;
	}

.breadcrumb-container {
	position: relative;
	display: block;
	width: 100%;
	font-size: 18px;
	padding: 0px 0px;
	}
	
.nobanner .breadcrumb-container {
	padding: 50px 0px;
	}

.breadcrumb-container ul {
	position: relative;
	display: block;
	font-weight: 600;
	margin: 0px auto;
	padding: 0px 0px;
	color: var(--white);
	list-style-type: none;
	}
	
.breadcrumb-container ul li {
	position: relative;
	margin: 0px 0px;
	padding: 0px 0px;
	display: inline-block;
	vertical-align: middle;
	letter-spacing: -0.32px;
	}

.nobanner .breadcrumb-container ul li {
	padding: 8px 0px;
	color: var(--alternate);
	}

.nobanner .breadcrumb-container ul li a,
.nobanner .breadcrumb-container ul li a:after {
	color: rgba(26, 26, 26, 0.70);
	}

.nobanner .breadcrumb-container ul li a:hover {
	color: var(--alternate);
	}

.breadcrumb-container ul li:first-child {
	text-shadow: none;
	}

.breadcrumb-container ul li a {
	position: relative;
	display: block;
	margin: 0px 0px;
	padding: 0px 0px;
	font-weight: 400;
	overflow: hidden;
	line-height: 24px;
	letter-spacing: -0.32px;
	color: rgba(256, 256, 256, 0.70);
	}

.breadcrumb-container ul li a:after {
	font-family: "Font Awesome 6 Free";
	font-size: 14px;
	font-weight: 700;
	content: "\f101";
	color: var(--white);
	display: inline-block;
	vertical-align: middle;
	margin: -3px 12px 0px 14px;
	}
	
.breadcrumb-container ul li a:hover,
.breadcrumb-container ul li.selected a {
	opacity: 1;
	color: var(--white);
	}

.pageTitle {
	position: relative;
	display: block;
    width: 100%;
	font-size: 18px;
	margin: 0px auto;
	padding: 0px 0px 40px;
	color: var(--primary);
	}

.pageTitle h3 {
	padding-bottom: 30px;
	}

.pageTitle h1,
.pageTitle h2 {
	line-height: 1.2;
	padding-bottom: 0px;
	text-transform: capitalize;
	}

.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;
	line-height: 1.1;
	font-size: 43px;
	margin: 0px 0px;
	font-weight: 800;
	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: 800;
	color: var(--alternate);
	}
	
h2, .h2 {
	font-size: 43px;
	}
	
h3, .h3 {
	font-size: 30px;
	}
	
h4, .h4 {
	font-size: 24px;
	}
	
h5, .h5 {
	font-size: 20px;
	}

h6, .h6 {
	font-size: 16px;
	}

p {
    margin: 0 0 20px;
	line-height: 1.6;
	letter-spacing: -0.32px;
	}

p strong {
	color: var(--alternate);
	}

p:last-child {
	margin: 0px 0px !important;
	}

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: 18px;
	text-align: left;
	font-weight: 400;
	margin: 0px 0px 25px;
	color: var(--alternate);
	list-style-position: inside;
	}

ul.ul-listing.text-center {
	text-align: center;
	}
	
ul.ul-listing li {
	position: relative;
	list-style-type: none;
	letter-spacing: -0.32px;
	padding: 0px 0px 15px 40px;
	}
	
ul.ul-listing li:last-child {
	padding-bottom: 0px;
	}

ul.ul-listing li:before {
	position: absolute;
	top: 7px;
	left: auto;
    content: '';
	width: 12px;
	height: 12px;
	margin-left: -40px;
	border-radius: 12px;
	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;
	}
	
.imgLeft {
	position: relative;
	float: left;
	width: auto;
    height: auto;
	max-width: 100%;
	clear: left !important;
	margin: 5px 40px 40px 0px;
	}
	
.imgRight {
	position: relative;
	float: right;
	width: auto;
    height: auto;
	max-width: 100%;
	clear: right !important;
	margin: 5px 0px 40px 40px;
	}
	
/* Pagination */

.pagination,
.page-item .page-link {
	border-radius: 50px !important;
	}
	
.page-item:first-child .page-link {
	}
	
.page-item:last-child .page-link {
	}

.pagination {
    flex-wrap: wrap;
    margin: 0px -10px;
	align-items: center;
    }
	
.page-item {
	position: relative;
	margin: 7px 10px;
	font-size: 16px;
    font-weight: 600;
	}
	
.page-link {
	position: relative;
	display: block;
	height: auto;
	padding: 0px;
	border: none;
	min-width: auto;
    font-weight: 600;
	margin: 0px auto;
	line-height: 60px;
	text-align: center;
	color: var(--alternate);
	background: transparent;
	}

.page-item.page-prev .page-link,
.page-item.page-next .page-link {
	width: 53px;
	height: 60px;
	opacity: 0.5;
	font-size: 0px;
    box-shadow: none;
    background: transparent;
    border-color: transparent;
	background-image: url(../images/leftArrow.png) !important;
	background-repeat: no-repeat;
	background-position: center center;
	}

.page-item.page-prev .page-link::before,
.page-item.page-next .page-link::before {
	position: absolute;
	top: 1px;
	opacity: 0;
	content: '';
	width: 58px;
	height: 58px;
	left: -20px;
	border-radius: 60px;
	border: 1.5px solid var(--alternate);
	}

.page-item.page-next .page-link::before {
	left: auto;
	right: -20px;
	}

.page-item.page-prev .page-link {
	margin-right: 10px;
	}

.page-item.page-next .page-link {
	margin-left: 10px;
	background-image: url(../images/rightArrow.png) !important;
	}

.page-item.disabled {
	opacity: 0;
    display: none;
	}
	
.page-link:hover,
.page-link:focus,
.page-item.active .page-link {
	color: var(--secondary);
    background: transparent;
    border-color: transparent;
	text-decoration: none !important;
	}
	
.page-item.page-prev .page-link:hover,
.page-item.page-prev .page-link:focus,
.page-item.page-prev.active .page-link,
.page-item.page-next .page-link:hover,
.page-item.page-next .page-link:focus,
.page-item.page-next.active .page-link {
    box-shadow: none;
	opacity: 1;
    background: transparent;
    border-color: transparent;
	background-repeat: no-repeat;
	background-position: center center;
	}
	
.page-item.page-prev .page-link:hover::before,
.page-item.page-prev .page-link:focus::before,
.page-item.page-next .page-link:hover::before,
.page-item.page-next .page-link:focus::before {
	opacity: 1;
	}

/* 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 {
	background: none;
	display: flex;
	z-index: 5;
	width: 57px;
	height: 57px;
	opacity: 1;
	font-size: 22px;
	border-radius: 100px;
	align-items: center;
	justify-content: center;
	color: var(--white);
	border: 1px solid #cccccc;
	background-color: #cccccc;
	}
	
.slick-prev:before,
.slick-next:before {
	display: none;
	}
	
.slider-nav {
	margin-left: 0px;
	margin-right: 0px;
	}

.slick-prev {
	left: -120px;
	}

.slick-next {
	right: -120px;
	}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
	opacity: 1;
	color: var(--white);
	border-color: var(--alternate);
	background-color: var(--alternate);
	}

.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 5px;
	background: transparent;
	border-color: transparent;
	}
	
.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: #cfcfcf;
	border: 1px solid #cfcfcf;
	}

.slick-dots li:hover button,
.slick-dots li.slick-active button {
	opacity: 1;
	background: var(--secondary);
	border-color: var(--secondary);
	}

.slick-dots li button:before {
	display: none;
	}

/* Link Button */

.link-btn,
.link-btn1 {
	position: relative;
	z-index: 1;
    padding: 0px;
	display: block;
	font-size: 18px;
	margin: 0px 0px;
	}

.link-btn a,
.link-btn1 a {
	position: relative;
	font-weight: 700;
	line-height: 25px;
	text-align: center;
	padding: 15px 40px;
	border-radius: 50px;
	vertical-align: top;
	color: var(--white);
	display: inline-block;
	letter-spacing: -0.3px;
	text-transform: capitalize;
	background: var(--alternate);
	border: 1px solid var(--alternate);
	text-decoration: none !important;
	}

.link-btn1 a {
	color: var(--white);
	background: var(--secondary);
	border-color: var(--secondary);
	}

.link-btn a:hover {
	color: var(--alternate);
	background: var(--white);
	border-color: var(--white);
	}

.link-btn1 a:hover {
	color: var(--white);
	background: var(--alternate);
	border-color: var(--alternate);
	}

.urlLink-btn {
	position: relative;
	display: block;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	}

.urlLink-btn a {
	color: var(--alternate);
	}

.urlLink-btn a:hover {
	color: var(--secondary);
	text-decoration: underline;
	}
	
.urlLink-btn.whiteBtn a {
	color: var(--white);
	}
	
.urlLink-btn.whiteBtn a:hover {
	color: var(--secondary);
	}

.underline {
	text-decoration: underline;
	}
	
/* Footer Styles */

.footer-wrapper {
    position: relative;
    width: 100%;
	z-index: 7;
    padding: 0px 0px;
    margin: 0px auto;
    max-width: 1920px;
	background: var(--alternate);
	}

/* Footer Top */

.footer-top {
    position: relative;
    display: block;
	overflow: hidden;
	line-height: 24px;
    padding: 100px 0px 60px;
	color: rgba(256, 256, 256, 0.70);
	}

.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;
	}

/* Footer Head */
	
.footer-head {
	font-family:var(--fontStyle2);
	position: relative;
	display: block;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.2;
	color: var(--white);
	margin: 0px 0px 25px;
	}

/*Contact FootInfo*/

ul.footerCompany-info {
	margin: 0px 0px;
	max-width: 340px;
	padding: 0px 0px;
	min-width: 250px;
	list-style-type: none;
	}

ul.footerCompany-info>li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 12px;
	color: rgba(256, 256, 256, 0.70);
	}
	
ul.footerCompany-info>li i {
	position: absolute;
	top: 6px;
	left: 0px;
	font-size: 14px;
	color: var(--white);
	}

ul.footerCompany-info>li a {
	color: rgba(256, 256, 256, 0.70);
	}
	
ul.footerCompany-info>li a:hover {
	color: var(--white);
	}
	
/* 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 12px;
	}

ul.footer-nav li a {
	position: relative;
	display: block;
	color: rgba(256, 256, 256, 0.70);
	}
	
ul.footer-nav li a:hover,
ul.footer-nav li.selected a {
	color: var(--white);
	}

/*Footer Social Media*/

ul.footSocial-media {
	display: flex;
	flex-wrap: wrap;
	padding: 0px 0px;
	margin: 0px -10px;
	list-style-type: none;
	}

ul.footSocial-media>li {
	position: relative;
	display: block;
	padding: 5px 10px;
	}

ul.footSocial-media>li a {
	position: relative;
	font-size: 20px;
	color: var(--white);
	}

ul.footSocial-media>li a:hover {
	color: var(--secondary);
	}

/* Footer Bottom */

.footer-bottom {
    position: relative;
    display: block;
	overflow: hidden;
	padding: 20px 0px;
	border-top: 1px solid rgba(255, 255, 255, 0.30);
	}

/* Copyright */

.copyright {
	font-family: var(--fontStyle2);
	position: relative;
	display: block;
	font-size: 16px;
	margin: 0px auto;
	font-weight: 400;
    line-height: 24px;
	color: var(--white);
	text-transform: capitalize;
	}

/* Footer Payment Options */

ul.footer-payment-options {
	position: relative;
	display: block;
	padding: 0px;
    font-size: 0px;
	margin: 0px -4px;
	list-style-type: none;
	}
	
ul.footer-payment-options li {
    position: relative;
	padding: 0px 4px;
    font-size: 14px;
	line-height: 30px;
	margin: 5px auto 5px;
    display: inline-block;
    vertical-align: middle;
	}

ul.footer-payment-options li a,
ul.footer-payment-options li img {
	position: relative;
	overflow: hidden;
	display: block;
	}

ul.footer-payment-options li img {
    width: auto;
    max-height: 25px;
	}

/*Contact Us*/

.contactTop-section {
	background-repeat: no-repeat;
	background-position: right bottom;
	}

.contactTop-section>.wide-container>.row>.col-lg-7 {
	width: 63%;
	}

.contactTop-section>.wide-container>.row>.col-lg-5 {
	width: 37%;
	}

.map-container {
	position: relative;
	display: block;
	width: 100%;
	height: 650px;
	overflow: hidden;
	}

.map-container iframe {
	position: relative;
	width: 100%;
	height: 100%;
	border: none;
	overflow: hidden;
	}

.contactRight-info {
	padding-left: 90px;
	}

.contactLocation-box {
	color: var(--primary);
	margin-bottom: 50px;
	}

.contactLocation-grid .contactLocation-box:last-child {
	margin-bottom: 0px;
	}

.contactLocation-icon {
	position: relative;
	display: flex;
	width: 77px;
	height: 77px;
	font-size: 20px;
	margin-right: 8px;
	color: var(--white);
	align-items: center;
	border-radius: 100px;
	justify-content: center;
	background: var(--secondary);
	}

.contactLocation-box h5 {
	padding-bottom: 10px;
	letter-spacing: normal;
	}

.contactLocation-box strong {
	font-weight: 500;
	color: var(--alternate);
	}

.contactLocation-box a {
	color: var(--primary);
	}

.contactLocation-box a:hover {
	color: var(--secondary);
	}

.contactEnquiry-section {
	background: var(--secondary);
	}

.contact-formBox {
	float: right;
	max-width: 775px;
	padding: 30px 15px;
	margin: 0px -60px 0px 0px;
	}

.contact-formBox .pageTitle {
	padding-bottom: 45px;
	}

.cer-groupBox {
	padding-left: 180px;
	}

.cer-groupBox .img-holder {
	padding-bottom: 122.26%;
	}

.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: 50px;
    font-size: 16px;
    border-radius: 0px;
    line-height: normal;
	color: var(--white);
    background: transparent;
	border: 1px solid var(--white);
	border-width: 0px 0px 1px 0px;
    padding: 16px 50px 16px 0px;
	}

.nice-select,
.nice-select .list {
	font-size: 16px;
	font-weight: 600;
	border-radius: 0px;
	background: transparent;
	color: var(--white);
	border: 1px solid var(--white);
	border-width: 0px 0px 1px 0px;
	}

.nice-select .list {
	border-color: #B9B9B9;
	}
	
.nice-select.open, .nice-select:active, .nice-select:focus, .nice-select:hover, .nice-selected .nice-select {
	background: transparent;
	border-color: var(--white);
	}

.nice-select .current {
	opacity: 1;
	font-weight: 400;
	overflow: hidden;
	display: block;
	position: relative;
	-webkit-line-clamp: 1;
	color: var(--white);
	opacity: 0.4;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	}

.nice-selected .nice-select .current {
	opacity: 1;
	font-weight: 600;
	color: var(--white);
	}

.nice-select:after {
	font-family: "Font Awesome 6 Free";
	position: absolute;
	border: none;
	top: 50%;
	right: 30px;
	width: auto;
	height: auto;
	display: block;
	line-height: 1;
	font-size: 16px;
	content: "\f107";
	font-weight: 900;
	pointer-events: none;
	margin: 0px !important;
	color: var(--white);
	-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;
	opacity: 0;
	top: 100%;
	left: 0;
	z-index: 9999;
	min-width: 300px;
	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;
	color: #0C0C0C;
	font-size: 16px;
	min-height: 40px;
	background: none;
	line-height: 30px;
	padding: 10px 26px;
	}

.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(--alternate);
	}

.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;
	color: var(--white);
	padding: 0px 0px 12px;
	letter-spacing: -0.3px;
	}

.required-field {
	color: var(--white);
	}

.form-group,
.form-check {
	padding: 0px;
	position: relative;
	margin-bottom: 25px;
	}
	
.form-control,
.form-custom-select,
.form-select {
	position: relative;
	display: block;
	width: 100%;
	height: 57px;
	font-size: 18px;
	font-weight: 500;
	box-shadow: none;
	line-height: 24px;
	padding: 12px 20px;
	border-radius: 0px;
	color: var(--alternate);
	background-clip: unset;
	background-image: none;
	letter-spacing: -0.32px;
	background-color: var(--white);
	border: 2px solid var(--white);
	}

textarea.form-control {
	min-height: 170px;
	line-height: 24px;
	border-radius: 0px;
	height: auto !important;
	}
	
textarea {
	resize: none;
	}
	
.form-control:focus,
.form-control:hover {
	color: var(--alternate);
	background: var(--white);
	border-color: var(--alternate);
	-webkit-box-shadow: none;
	outline: none !important;
	box-shadow: none;
	}
	
.form-control::-webkit-input-placeholder, ::-webkit-input-placeholder {
	opacity: 1;
	font-weight: 400;
	color: #999999;
	}

.form-control:-moz-placeholder, :-moz-placeholder { /* Firefox 18- */
	opacity: 1;
	font-weight: 400;
	color: #999999;
	}

.form-control::-moz-placeholder, ::-moz-placeholder {  /* Firefox 19+ */
	opacity: 1;
	font-weight: 400;
	color: #999999;
	}

.form-control:-ms-input-placeholder, :-ms-input-placeholder {
	opacity: 1;
	font-weight: 400;
	color: #999999;
	}
	
.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 {
	font-family: var(--fontStyle1);
	position: relative;
	display: block;
	width: auto;
	font-size: 18px;
	margin: 0px 0px;
	font-weight: 700;
	line-height: 21px;
	padding: 17px 40px;
	text-align: center;
	color: var(--white);
	border-radius: 50px;
	letter-spacing: -0.3px;
	background: var(--alternate);
	border: 1px solid var(--alternate);
	-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(--alternate); background: var(--white); border-color: var(--white); box-shadow: none !important; }
.btn-primary.disabled, .btn-primary:disabled { color: var(--alternate); background: var(--white); border-color: var(--white); opacity: 0.4; }
.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle { color: var(--alternate); background: var(--white); border-color: var(--white); }
.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%;
	padding: 0px;
	overflow: hidden;
	margin: 0px auto;
	}

.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 {
	position: relative;
	padding: 0px 0px;
	display: table-cell;
	vertical-align: bottom;
	}
	
.thank-you-content-area .thank-you-content {
	position: relative;
	display: block;
    width: 100%;
	margin: 0px 0px;
    max-width: 725px;
	font-weight: 400;
	padding: 90px 100px;
	color: var(--white);
	background: rgba(201, 47, 46, 0.90);
	}
	
.thank-you-content h1 {
	line-height: 1;
	font-size: 70px;
	font-weight: 800;
	color: var(--white);
	padding-bottom: 40px;
	letter-spacing: -2.8px;
	}

.thank-you-content .link-btn {
	padding-top: 25px;
	}

.subFooter-section {
	margin-top: 60px;
	padding: 23px 0px;
	background: var(--secondary);
	}

.subFootlogo {
	position: relative;
	display: flex;
	width: 343px;
	height: 83px;
	margin: 0px 0px;
	overflow: hidden;
	}

.subFootlogo a {
	position: relative;
	width: 100%;
	height: auto;
	display: block;
	overflow: hidden;
	}

.subFootlogo img {
	position: relative;
	display: block;
	height: auto;
	max-width: 100%;
	}

/* Scroll To Top */
	
#toTop {
	text-decoration: none;
	position: fixed;
	display: none;
	bottom: 20px;
	right: 20px;
	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 {
	color: var(--white);
	padding: 2px 8px;
	}

.mean-container .mean-nav {
	margin-top: 68px;
	}

.mean-container .mean-nav ul li:hover > a, .mean-container .mean-nav ul li.selected > a {
	color: #ffffff !important;
	background: var(--secondary) !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(--alternate);
	}

.wabagency-content a {
	font-weight: 500;
	text-decoration: underline;
	}
	
ul.ul-listing.ul-width-new-class {
    column-count: 1;
    column-gap: 0px;
    margin-bottom: 0px;
    }
	
/* =Media Queries
-------------------------------------------------------------- */

@media (max-width: 1699.98px) {
	body, .breadcrumb-container, .pageTitle, .copyright, .form-control, .form-custom-select, .form-select, .btn-primary, .control-label, .link-btn, .link-btn1, .courseTabs-group ul.nav-tabs>li a.nav-link, ul.ul-listing, .banner_caption .captionContainerInner { font-size: 18px; }
	.nav ul, .nav>ul ul, .nav>ul ul ul, .service-btn { font-size: 13px; }
    h1, .h1, h2, .h2, .pageTitle h1, .pageTitle h2 { font-size: 36px; }
    h3, .h3, .galleryMask-container { font-size: 26px; }
    h4, .h4 { font-size: 22px; }
    h5, .h5, .team-infoBox, .teamModal-infoBox .pageTitle, .footer-head, ul.footSocial-media>li a { font-size: 18px; }
    h6, .h6 { font-size: 14px; }
	.container { max-width: 1050px; }
	.wide-container, .header-container { max-width: 1250px; }
	.notificationBar { font-size: 13px; padding: 10px 0px; }
	.logo { width: 270px; height: 65px; margin: 17px 0px; }
	ul.headerTopLinks>li a img { max-width: 20px; }
	.inner_banner_caption .captionContainer .innerBannerHeading1 { font-size: 44px; padding-bottom: 20px; }
	.breadcrumb-container ul li a:after { font-size: 12px; margin: -2px 12px 0px 14px; }
	.inner_banner_caption .captionContainerInner { min-width: 450px; padding: 40px 60px; }
	.team-modal-container .modal-dialog { max-width: 1220px; }
	.subIntro-left { padding-right: 155px; }
	.subIntro-caption { max-width: 694px; margin-left: -70px; }
	.ctcWrapper-content .pageTitle h2 { font-size: 42px; }
	.ctcWrapper-content { max-width: 599px; margin-right: 27px; }
	.ctcImg-wrapper { padding-left: 110px; }
	.contact-formBox { max-width: 725px; padding: 30px 15px; margin: 0px -100px 0px 0px; }
	.form-control, .form-custom-select, .form-select { height: 50px; }
	.contact-formBox .pageTitle { padding-bottom: 35px; }
	.cer-groupBox { padding-left: 158px; }
	textarea.form-control { min-height: 140px; }
	.btn-primary { line-height: 20px; padding: 14px 35px; }
	.thank-you-content h1 { font-size: 50px; padding-bottom: 25px; }
	.thank-you-content .link-btn { padding-top: 18px; }
	.thank-you-content-area .thank-you-content { max-width: 615px; padding: 60px 80px; }
	.link-btn a, .link-btn1 a { line-height: 24px; padding: 12px 35px; }
	.courseTitle-box h4 { font-size: 24px; }
	.courseOverlay-box { max-width: 670px; }
	.coursePrice-tag h3 { font-size: 28px; }
	.courseTitle-section .link-btn1 a { min-width: 180px; }
	ul.ul-listing li { padding: 0px 0px 15px 30px; }	
	ul.ul-listing li:before {  width: 9px; height: 9px; margin-left: -30px; }
	.galleryItem-box { width: 320px; }
	.banner_caption .captionContainer .bannerHeading1 { font-size: 50px; }
	.homeservice-pic { padding-left: 150px; }
	.homeService-leftGrid .pageTitle { float: right; max-width: 598px; margin-right: 0px; }
	.homeService-slide .serviceList-box { width: 325px; }
	.homeService-btnBlock { max-width: 683px; padding-bottom: 30px; }
	.slide-button .slick-arrow { width: 50px; height: 50px; font-size: 18px; }
	.homeService-slide .service-maskContent, .homeService-slide .service-title { padding: 25px 25px; }
	}

@media (max-width: 1499.98px) {
	.slick-prev { left: -60px; }
	.slick-next { right: -60px; }
    }

@media (max-width: 1399.98px) {
	p, .subIntro-caption p, .tabsGroup-section p { margin: 0 0 15px; }
	.section-container { padding: 60px 0px 40px; }
	.pageTitle { padding: 0px 0px 30px; }
	.section-container-full, .aboutIntro-section, .aboutWho-are-section, .peopleGrid-section { padding: 60px 0px; }
	.teamModal-infoBox .pageTitle { margin-bottom: 30px; padding-bottom: 25px; }
	.pageTitle.pb30 { padding-bottom: 20px !important; }
	.aboutFull-Banner { margin-bottom: 40px; }
	.subFooter-section { margin-top: 30px; }
	.subFootlogo { width: 240px; height: 59px; }
	.footer-top { padding: 60px 0px 35px; }
	.nobanner .breadcrumb-container { padding: 20px 0px; }
	.courseTabs-group { margin-bottom: 60px; }
	.tabsGroup-section { padding-bottom: 20px; }
	.courseSection-container { padding: 40px 0px; }
	.slick-prev, .slick-next { width: 45px; height: 45px; font-size: 16px; }
	.gallery-slider .slick-prev { left: 50px; }
	.gallery-slider .slick-next { right: 50px; }
	.slick-prev { left: -10px; }
	.slick-next { right: -10px; }
	.service-maskContent, .service-title { padding: 20px 20px; }
	.section-container-full.pt70.pb100 { padding: 40px 0px 60px !important;}
	.banner_caption .captionContainerInner { padding: 30px 30px 30px 50px; }
	.homeService-leftGrid .pageTitle { padding-bottom: 30px; }
	.homeService-btnBlock { padding-top: 30px; }
	}

@media (max-width: 1299.98px) {
	.team-modal-container .modal-dialog { max-width: 991px; }
	.aboutIntro-caption { padding-right: 0px; }
	.subIntro-caption { max-width: 120%; margin-left: -20%; }
	.contactRight-info { padding-left: 30px; }
	.gallery-slider .slick-prev { left: 15px; }
	.gallery-slider .slick-next { right: 15px; }
	.galleryItem-box { width: 220px; }
	.services-slider { margin-bottom: 20px !important; }
	.homeIntro-caption { padding: 30px 0px; }
	}

@media (max-width: 1250px) {
	.homeService-leftGrid .pageTitle { max-width: 100%; float: none; }
	.homeService-leftGrid { padding-left: 15px; margin-right: -140px; }
	.homeService-slider { margin: 0px 0px; }
	.homeService-btnBlock { max-width: 100%; margin-right: 0px; float: none; }
	}

@media (max-width: 1199.98px) {
	.notificationBar { font-size: 12px; padding: 6px 0px; }
	.logo { width: 180px; height: 44px; margin: 12px 0px; }
    .headerTop.active .nav-wrapper { z-index: 1111; }
    .mean-container a.meanmenu-reveal { top: 20px; right: 0px !important; padding: 0px 0px; width: 24px; height: auto; }
    .headerTop.active .mean-container .mean-nav { height: 367px; overflow: hidden; }
	.topRightHeader { position: absolute; left: 0px; top: 0px; width: 100%; justify-content: end; padding: 22px 45px 23px 0px; }
	.nav-wrapper { margin: 0px 0px; order: 3; position: absolute; top: 0px; right: 0px; float: none; width: 100%; }
	ul.headerTopLinks>li a img { max-width: 18px; }
	ul.headerTopLinks { margin: 0px -8px; padding: 0px 0px; }
	ul.headerTopLinks>li { padding: 0px 8px; }
	.subIntro-left { padding-right: 115px; }
	.ctcWrapper-content { max-width: 100%; margin-right: 0px; }
	.ctcImg-wrapper { padding-left: 0px; }
	.cer-groupBox { padding-left: 0px; }
	.contact-formBox { max-width: 100%; padding: 30px 15px; margin: 0px 0px; }
	.contact-formBox .form-group.pt20 { padding-top: 5px !important; }
	.courseTitle-section { padding-bottom: 40px; }
	}
	
/* Portrait tablets and medium desktops */
@media (max-width: 991.98px) {
	.inner_banner_caption, .thank-you-content-area, .banner_caption { position: relative; inset: auto; background: var(--secondary); }
	.inner_banner_caption .captionContainerInner { width: 100%; padding: 25px 15px; text-align: center; min-width: 100%; }
	.aboutIntro-section>.wide-container>.row>.col-lg-7, .aboutIntro-section>.wide-container>.row>.col-lg-5, .contactTop-section>.wide-container>.row>.col-lg-5, .contactTop-section>.wide-container>.row>.col-lg-7, .banner_caption .captionContainerInner .row .col-lg-7, .banner_caption .captionContainerInner .row .col-lg-5, .homeIntro-section .row>.col-lg-7, .homeIntro-section .row>.col-lg-5 { width: 100%; }
	.aboutIntro-caption { padding-top: 30px; }
	.subIntro-left { padding-right: 0px; }
	.subIntro-caption { max-width: 100%; margin-left: 0px; }
	.ctcWrapper-content .pageTitle h2 { padding-bottom: 18px !important; }
	.ctcWrapper-content .link-btn.pt10 { padding-top: 0px !important; }
	.contactRight-info { padding: 0px 0px 40px; }
	.map-container { height: 300px; }
	.contactLocation-box { margin-bottom: 30px; }
	.contactLocation-icon { margin-right: 0px; }
	.thank-you-content-area .thank-you-content { max-width: 100%; padding: 40px 0px; }
	.courseTitle-box { min-height: 160px; padding: 25px 15px; }
	.courseOverlay-section, .courseOverlay-box { position: relative; inset: auto; max-width: 100%; background: var(--background1); }
	.courseOverlay-box { padding: 25px 0px; }
	.courseTabs-group ul.nav-tabs>li a.nav-link { padding: 0px 25px 22px; }
	.serviceDetails-listing { padding: 0px 15px; }
	.serviceDetails-listing ul.ul-listing { column-count: 1; }
	.serviceDetails-listing ul.ul-listing>li { padding-bottom: 10px; }
	.banner_caption .captionContainerInner { padding: 30px 0px; }
	.banner_caption .captionContainer .bannerHeading1 { padding-bottom: 15px; }
	.homeIntro-caption { padding: 30px 0px 0px; }
	.homeIntro-caption .link-btn1.pt20 { padding-top: 10px !important; }
	.homeservice-pic { padding-left: 0px; }
	.homeService-leftGrid { padding: 30px 15px; margin-right: 0px; }
	.homeService-slide .serviceList-box { width: 100%; }
	.homeService-slider { margin: 0px -15px; }
	.homeCourses-section .link-btn1.mt50 { margin-top: 30px !important; }
	.footer-bottom { text-align: center; }
	.footer-bottom ul.footer-payment-options { margin-bottom: 10px; }
	}

/* Landscape phones and portrait tablets */
@media (max-width: 767.98px) {
	.banner_caption .captionContainer .bannerHeading1, .inner_banner_caption .captionContainer .innerBannerHeading1, .thank-you-content h1 { font-size: 28px !important; }
    h1, .pageTitle h1, .pageTitle h2 { font-size: 26px !important; letter-spacing: 0px !important; }
	h2 { font-size: 26px; letter-spacing: 0px !important; }
	h3, .coursePrice-tag h3, .galleryMask-container { font-size: 22px; letter-spacing: 0px !important; }
	h4 { font-size: 18px;  letter-spacing: 0px !important; }
	h5, .team-infoBox, .teamModal-infoBox .pageTitle { font-size: 16px;  letter-spacing: 0px !important; }
	h6 { font-size: 14px;  letter-spacing: 0px !important; }
	#toTop { bottom: 150px; 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, .inner_banner_caption .captionContainer .innerBannerHeading1 { padding: 0px 0px 15px; }
	.team-infoBox { padding: 25px 15px; }
	.team-infoBox h3 { margin-bottom: 10px; }
	.teamModal-infoBox { max-width: 100%; }
	.modalRight-content { padding: 30px 15px; }
	.team-modal-container .btn-close { top: 5px; right: 12px; font-size: 24px; color: #000000; }
	.team-modal-container .modal-dialog { padding: 0px 0px; }
	.thank-you-content .link-btn { padding-top: 10px; }
	.courseTitle-box { min-height: 100%; }
	.courseTitle-box h4 { font-size: 20px; }
	.courseTabs-group ul.nav-tabs { display: block; border: 1px solid #cfcfcf !important; }
	.courseTabs-group ul.nav-tabs li { width: 100%; }
	.courseTabs-group ul.nav-tabs>li a.nav-link { padding: 15px 15px; border-bottom: 1px solid #cfcfcf !important; }
	.courseTabs-group ul.nav-tabs>li:last-child a.nav-link, .courseTabs-group { border: none !important; }
	.courseTabs-group ul.nav-tabs>li a.nav-link::before { display: none !important; }
	.courseTabs-group ul.nav-tabs>li a.nav-link:hover, .courseTabs-group ul.nav-tabs>li a.nav-link.active { color: var(--white); background: var(--secondary); }
	.courseTabs-group { margin-bottom: 40px; }
	.gallery-slider { margin-bottom: 20px !important; }
	.service-maskContent, .service-title { padding: 15px 15px; }
	.homeService-btnBlock { text-align: center; }
	.slide-button { justify-content: center; margin-bottom: 10px; }
	ul.footer-nav { display: flex; flex-wrap: wrap; margin: 0px -10px; }
	ul.footer-nav li { padding: 0px 10px; }
	ul.footSocial-media { margin-bottom: 10px; }
	.ftcol { width: 100%; max-width: 100%; max-width: 100%; padding-bottom: 20px; }
	.ftcol.ftcol4 { padding-bottom: 0px; }
	.footer-head { font-size: 16px;	margin: 0px 0px 20px; }
	}

@media (max-width: 575.98px) {
	.contactLocation-icon { width: 45px; height: 45px; font-size: 16px; }
	.contactLocation-box .row>.col-auto { padding-right: 0px; }
	}

@media (max-width: 480px) {
	.logo { width: 140px; height: 34px; margin: 17px 0px; }
	ul.headerTopLinks>li a img { max-width: 16px; }
	ul.headerTopLinks { margin: 0px -5px; }
	ul.headerTopLinks>li { padding: 0px 5px; }
	}

@media (max-width: 380px) {
	}

@-ms-viewport{ width: auto !important; }
.coursesList-box .img-holder { display:none !important}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output { color:#FFF;}
.wpcf7-not-valid-tip {color:#FF0;}

.wooac-suggested .courseTitle-box.pageClass {
    padding: 20px 10px;
    min-height: auto;
    margin-bottom: 20px;
}

.wooac-suggested .courseTitle-box.pageClass h4 {
    font-size: 20px;
}
.wooac-popup .wooac-suggested .wooac-suggested-heading {
    margin-bottom: 10px;
    text-align: center;
    font-size: 17px;
    font-weight: 700;
}

.home .bannerWrapper .banner .homeBannerSlider .banner-slide{
    min-height: 400px;
}
.home .banner-slide figure img {
    min-height: 400px;
}
.home .banner_caption .captionContainerInner {
    bottom: 40px;
}

@media (min-width: 992px) and (max-width: 1100px) { 
    .home .bannerWrapper .banner .homeBannerSlider .banner-slide{
        min-height: 300px;
    }
    .home .banner-slide figure img {
        min-height: 300px;
    }
    .home .banner_caption .captionContainerInner {
        bottom: 40px;
    }
}

@media (min-width: 992px) and (max-width: 1800px) { 
    
    .page-id-94 .inner-banner {
        min-height: 200px;
    }
    .page-id-94 .inner_banner_caption .captionContainerInner {
        min-width: 350px;
        padding: 20px 20px;
    }
}
