/*
Theme Name: Ironfitness
Author: Ioannis Bakas
Version: 1.0 2025
Company Name: Digital Revolution Ltd. 2025 All Rights Reserved
*/

/* * Globals */

html,
body {
	margin: 0;
	padding: 0;
}
html {
  scroll-behavior: smooth;
}
/*
Colours and Palettes--------------------
*/

:root {
  --black: #000;  	 /* BLACK */
  --white: #ffffff;  /* WHITE */
  --primary: #FB5B21; /* PRIMARY BRAND COLOUR (ORANGE) */
  --secondary: #FC8357; /* SECONDARY BRAND COLOUR (LIGHT ORANGE) */
  --yellow: #f5ba5d;
  --gray: #5F5F5F;
  --darkgray: #252525;
  --lightgray: #f6f6f6;
  --icegray: #ededed;
  --icegray2: #d2d2d2;
  --backgroundgray: #f2f2f2;
  --regulargray: #c8c8c8;
}

/* Gothic Fonts */
@font-face {
	font-family: 'gothic';
	src: local('gothic'), url('../fonts/gothic.woff') format('woff');
}
@font-face {
    font-family: "Century Gothic Bold";
    src: url("../fonts/0d78b12d6be09203d1fbeb76871a369a.eot");
    src: url("../fonts/0d78b12d6be09203d1fbeb76871a369a.eot?#iefix")format("embedded-opentype"),
    url("../fonts/0d78b12d6be09203d1fbeb76871a369a.woff2")format("woff2"),
    url("../fonts/0d78b12d6be09203d1fbeb76871a369a.woff")format("woff"),
    url("../fonts/0d78b12d6be09203d1fbeb76871a369a.ttf")format("truetype"),
    url("../fonts/0d78b12d6be09203d1fbeb76871a369a.svg#Century Gothic Bold")format("svg");
}
 
 
body {
	color:  var(--black);
	background-color: var(--white);
	font: 400 16px 'Poppins', 'gothic', sans-serif;
	line-height:inherit;
	min-width: 320px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	height: 100%;
}

html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}
 


/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

address {
	font-style: normal;
	margin-top: 0;
	font-family: 'Poppins', 'gothic', sans-serif;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
}

.clearfix {
	height: 0pt;
	clear: both;
}

[class^="icon-"],
[class*=" icon-"] {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

div,
a,
input,
img,
textarea,
button,
button:focus,
input[type="checkbox"]:focus,
input[type="radio"]:focus {
	outline: none;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
}

.clearfix {
	height: 0pt;
	clear: both;
}


/*
paragraphs
----------
*/

p {
	margin: 0 0 20px 0;
	font-size:16px;
	line-height: inherit;
	font-family: 'Poppins', 'gothic', sans-serif;
	white-space:normal;
	word-wrap:break-word;
	color: var(--black);
}

[class^="icon-"],
[class*=" icon-"] {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}


/* 
headings
--------
*/

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Poppins', 'Century Gothic Bold', sans-serif;
	font-weight: 600;
	margin: 0 0 20px;
}

h1 {
	font-size: 50px;
}

h2 {
	font-size: 40px;
}

h3 {
	font-size: 20px;
}

h4 {
	font-size: 25px;
}

h5 {
	font-size: 22px;
}

h6 {
	font-size: 20px;
}

@media only screen and (max-width:767px) {
	h1 {
		font-size: 40px;
	}
	h2 {
		font-size: 30px;
	}
	h3 {
		font-size: 20px;
	}
	h4 {
		font-size: 20px;
	}
	h5 {
		font-size: 18px;
	}
	h6 {
		font-size: 20px;
	}
	.slider h1 {
		font-size: 30px!important;
	}
	
}


/*
sidebar h2
----------
*/

aside h2 {
	font-sizE:30px;
}

/*
links
-----
*/

a,
a:link {
	-webkit-transition: 0.5s ease-in all;
	-moz-transition: 0.5s ease-in all;
	transition: 0.5s ease-in all;
	color:var(--primary);
	text-decoration: none;
	cursor:pointer;
}

a:hover,
a:focus,
a:active {
	color: var(--black);
	text-decoration:underline;
}
a i {
    font-size:16px;
}


/* 
lists 
------
*/

ul,
ol {
	margin: 20px 0;
}

ol {
	list-style: decimal;
}

ul {
	list-style: disc;
}

ul li,
ol li {
	margin: 0 0 5px;
	font-size: 16px;
	line-height: inherit;
}

::marker {
	color:var(--primary);
}

.section ul,
.section ol {
	 
}
.section ul ul li,
.section ol ol li {
	padding-left:20px;
}

/* definition lists */
dl {
    border: 3px double #ccc;
    padding: 0.5em;
}
dt {
	float: left;
	clear: left;
	width: 100px;
	text-align: right;
	font-weight: bold;
	color: var(--primary);
}
dt::after {
	content: ":";
}
dd {
	margin: 0 0 0 110px;
	padding: 0 0 0.5em 0;
}

/* tables , forms */

table,
tr,
td,
tdoby,
th {
	border-collapse: collapse;
	border:1px solid;
}

form,
legend,
input,
select,
textarea {}

 
/* * Override Bootstrap's default container. */

.list-unstyled {
	padding-left: 0;
	list-style: none;
}


/* margins */
.nomargintop {
	margin-top: 0!important;
}


/* paddings */
.nopaddingtop {
	padding-top: 0!important;
}
.nomargin {
	margin:0!important;
}
.nopadding {
	padding:0!important;
}


/*
---------------
floats & blocks
---------------
*/

.float-left {
	float: left;
}

.float-right{
	float: right;
}

.inline {
	display: inline;
}

.inline-block {
	display: -moz-inline-stack;
	display: inline-block;
	zoom: 100%;
	*display: inline;
}

.block {
	display: block;
}


/*
----------------------
alignments and flexbox
----------------------
*/

.align-left {
	text-align: left;
}

.align-right {
	text-align: right;
}

.align-center {
	text-align: center;
}

.marginauto {
	margin: 0 auto!important;
}

.valign-top {
	vertical-align: top!important;
}

.valign-middle,
.valign-middle-children>* {
	vertical-align: middle!important;
}

.valign-bottom {
	vertical-align: bottom!important;
}

.fullwidth {
	width: 100%;
}

.fullheight {
	height: 100%;
}


/* Row with equal height columns -------------------------------------------------- */

.vertical-align-all {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
}

@media (min-width: 768px) {
	.vertical-align-no-xs {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
	}
}

@media (max-width: 991px) {
	.vertical-align-no-md {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
	}
}

@media (min-width: 992px) {
	.vertical-align-no-sm {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
	}
	.row-eq-height-no-sm {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
	}
}

@media (min-width: 1200px) {
	.row-eq-height,
	.row-eq-height-no-md {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
	}
}

@media(min-width:768px) {
	.vertical-align-no-xs {
		margin: 0 auto;
		/* IE9 */
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
	}
}

@media(min-width:992px) {
	.vertical-align-no-sm {
		/* NO IE9 */
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
	}
}

.only-vertical-align {
	/* NO IE9 */
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}



/*
Wrapper
-------
*/

#wrapper {
	width: 100%;
}


/*
(1) Header
----------
*/


#nav {
	width: 100%;
	background: rgba(0, 0, 0, 85%);
	position: relative;
	z-index: 100;
}

#nav .container {
	max-width: 100%;
	padding-left: 0;
	padding-right: 0;
}

#nav .logo {
	display: -moz-inline-stack;
	display: flex;
	zoom: 1;
	*display: inline;
	display: flex;
	justify-content: flex-start;
}
#nav .logo h1 {
	color:var(--white);
	font-size:30px;
	margin: 0;
	font-weight: bold;
}
#nav .logo img {
	max-width: 100%;
	-webkit-border-radius:100px;
	-moz-border-radius:100px;
	border-radius: 0;
	vertical-align: middle;
	/* display: none; */
}
#nav .logo a {
	font-weight: 600;
	text-decoration: none!important;
}

#nav .logo span {
	display:  inline-block;
	color: var(--primary);
	font-size: 30px;
	font-weight: bold;
}
#nav .social-icons a i {
	font-size: 30px;
	display: inline-block;
	margin: 15px 3px;
}
@media only screen and (max-width:767px) {
	#nav {
		background-color:var(--black);
	}
}
@media only screen and (max-width:1199px) {
	#nav .container {
		padding-left: 0;
		padding-right: 0;
		width:100%;
		display: flex;
		align-items: center;
		justify-content: space-around;
		flex-basis: 100%;
		padding: 15px;
	}
}

@media only screen and (min-width:1200px) {
	#nav .container {
		padding: 0 20px!important;
		display: flex;
		align-items: center;
		justify-content: space-around;
		width: 100%;
		flex-basis: 100%;
		max-width: 1320px;
		min-height: 98px;
	}
}


/*
-------------------------
2. Top Nav Menu (Level 1)
-------------------------
*/

#navbarNavDropdown {
	margin-top: 0;
	/* float: right; */
	flex-grow: 2;
	/* justify-content: center; */
	align-items: center;
	display: flex;
	text-align: center;
}
#navbarNavDropdown .navbar-nav>li {
	position:relative;
}
#navbarNavDropdown a.nav-link {
	color: var(--white);
	text-transform: capitalize;
	display: inline-block;
	padding: 9px 16px;
	position: relative;
	font-weight: 300;
	font-size: 20px;
}

#navbarNavDropdown a.nav-link:hover {
	color: var(--primary);
	text-decoration:none;
}

#navbarNavDropdown li.active a.nav-link
 {
    color: var(--primary);
    font-weight: bold;
}
 
#navbarNavDropdown li:last-child a.nav-link {
	padding-right: 10px;
}

#navbarNavDropdown li:first-child a.nav-link {
	/* border:none; */
}

@media (min-width: 1200px) {
	#navbarNavDropdown .navbar-nav {
		padding: 0px;
		margin: 0 auto;
		display: flex;
		animation: c;
		justify-content: center;
		flex-basis: 100%;
		width: 100%;
	}
	#navbarNavDropdown .navbar-nav>li {
		float: left;
		list-style: none;
		margin: 0;
		padding: 0;
	}
	.navbar-collapse.collapse {
		display: block!important;
	}
}

@media only screen and (max-width: 1199px) {
	.navbar-collapse.collapse {
		display: none!important;
	}
	.navbar-collapse.collapse.in {
		display: block!important;
	}
	#navbarNavDropdown .navbar-nav,
	#navbarNavDropdown .navbar-nav>li {
		float: none;
		list-style: none;
		margin: 0;
		padding: 0;
	}
	#navbarNavDropdown {
		width: 100%;
		background: rgba(0,0,0, 85%);
		margin: 0;
		padding: 25px 25px 20px;
		margin-left: 0;
		margin-right: 0;
		position: absolute;
		top: 78px;
		/* transition: none; */
	}
	#navbarNavDropdown .navbar-nav {
		margin: 0;
		padding: 0;
	}
	#navbarNavDropdown li a.nav-link {
		display: block;
		text-align: left;
		width: 100%;
		margin: 0 0 10px;
		border-bottom: 0;
		padding: 5px 0;
		border-left: 0;
		color: var(--white);
		text-transform: none;
		font-size: 18px;
		transition: 0.3s ease-in all;
	}
	#navbarNavDropdown li:last-child > a.nav-link {
	}
	#navbarNavDropdown li a.nav-link:after,
	#navbarNavDropdown li a.nav-link:hover:after {
		content: ''!important;
		width: 0!important;
	}
}


/*
-------------
navbar toggle 
-------------
*/

.navbar-toggler {
	border: 0;
	background: transparent;
	color: var(--white);
	font-size: 20px;
	margin-top:6px;
	padding-left: 0!important;
	padding-right: 0!important;
}

.glyphicon-menu-hamburger:before {
	content: "\e236";
	color: var(--white);
	font-size: 27px;
}


/*
-------------------------
5.2 Top Nav Menu (Level 2)
-------------------------
*/

.navbar-nav>li>.dropdown-menu {
	margin-top: 0;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	background: var(--primary);
	box-shadow: none;
	border-radius: 0;
	margin-top: 14px;
}

.navbar-nav>li>.dropdown-menu a {
	display: block;
	color: var(--white);
	padding: 4px 14px;
}
/*
-----------------------------------
Customize default Wordpress Submenu
-----------------------------------
*/

.navbar-nav .sub-menu {
	/* display:none; */
	position:absolute;
	left:0;
	z-index:99;
	margin-top: 0;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	background: rgba(0,0,0, 85%);
	box-shadow: none;
	border-radius: 0;
	margin-top: 14px;
	opacity:0;
	-webkit-transition: .6s ease;
	-moz-transition: .6s ease;
	-ms-transition: .6s ease;
	-o-transition: .6s ease;
	width: 100%;
	min-width: 220px;
	margin-top: 28px!important;
	border-top: 2px solid var(--primary);
}
.navbar-nav li:hover .sub-menu,
.navbar-nav li:hover a .sub-menu,
.navbar-nav li:hover a:hover .sub-menu,
.navbar-nav li a:hover .sub-menu {
	display:block;
	opacity:1;
}
.navbar-nav .sub-menu,
.navbar-nav .sub-menu li {
	margin:0;
	padding:0;
	list-style-type:none;
}
#navbarNavDropdown .navbar-nav .sub-menu li a {
	displaY: block;
	color: var(--white);
	padding: 15px;
	font-size: 16px;
}
#navbarNavDropdown  .navbar-nav .sub-menu li a:after,
#navbarNavDropdown  .navbar-nav .sub-menu li a:hover:after {
	content: ''!important;
	width: 0!important;
}
 

/*
------------------------------
5.3 Main Navigation Search box
------------------------------
*/

#nav .header-search {
	position: relative;
	/* margin: 10px 0; */
}

#nav .header-search .search-toggle {
	width: 50px;
	height: 50px;
	border-radius:50%;
	background:var(--white) url(../img/IronFitnessSearchMagnifier.jpg) center center no-repeat;
	display:inline-block;
	vertical-align:middle;
	text-align:center;
}

.search-form-wrapper {
    position: absolute;
    background: rgba(0,0,0, 85%);
    padding: 0 0 20px;
    z-index: 999;
    width:100%;
}

.search-form-wrapper .container {
	margin:0 auto;
}

.search-form-wrapper .container form > div  {
	display:flex;
}
.search-form-wrapper label {
	display:none;
}

.search-form-wrapper input[type="text"] {
	border: 0;
	background: transparent;
	padding: 15px;
	font-size:20px;
	width: 100%;
	outline: none;
	border: 1px solid var(--primary);
	height: 42px;
	border-radius: 30px;
	font-weight: bold;
	font-size: 20px;
	font-weight: bold;
	color: var(--primary);
	margin-right: 20px;
}

.search-form-wrapper input[type="submit"] {
	width: 147px;
    height: 42px;
    background: var(--primary);
    border-radius: 30px;
    color: var(--white);
    font-weight: 500;
    text-transform: uppercase;
	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	transition: all .2s;
	text-shadow: none;
	border:0;
}

.search-form-wrapper input[type="submit"]:hover {
	color:var(--primary)!important;
	background-color:var(--white);
}

@media only screen and (min-width:1320px) {
	.search-form-wrapper .container {
		width:1320px;
	}
}
	

@media (max-width: 1199px) {
	/*
	logo 
	*/
	#nav .logo,
	#nav .languages {
		text-align: center;
		flex-grow: 2;
		align-items: center;
		justify-content: center;
	}
	#nav .logo img {
		max-width: 60px;
		margin: 0 10px 6px;
		display: none;
	}
	/* search box */
	#nav .header-search {
		max-width: 180px;
	}
}

@media all and (min-width: 768px) {
	#nav .container:before {
		content: '';
		display: inline-block;
		vertical-align: middle;
		height: 100%;
	}
}

@media only screen and (max-width:767px) {
	.search-form-wrapper {
		background:black!important;
	}
}


 
/*
--------------------------
Slider /* plain background
--------------------------
*/

.slider {
	position: relative;
	color: var(--white);
	width: 100%;
	/* background-size: cover!important; */
}

.slider.about {
	position: relative;
	color: var(--white);
	width: 100%;
	background-attachment: fixed!important;
	background-size: cover!important;
	background-position: 100% 70%!important;
}

.slider .overlay {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
	background-position: 50% -29%;
	background-attachment: scroll;
	background-size: cover;
}

.slider .container {
	text-align: center;
	color: var(--white);
	z-index: 9;
	position: relative;
	padding: 20px;
}

.slider.about .container {
	text-align: center;
	color: var(--white);
	z-index: 9;
	position: relative;
}

.slider.contact .container {
	text-align: left;
	color: var(--white);
	z-index: 9;
	position: relative;
}

.slider h1 {
	font-size: 50px;
	margin: 30px 0;
}

.slider.about h1,
.slider.about h2 {
	margin-bottom: 25px;
}

.slider p {
	margin-bottom: 25px;
}
@media only screen and (max-width:767px) {
	.section.slider.nopadding .container {
		padding-top: 40px!important;
		padding-bottom: 39px!important;
	}
}
@media only screen and (min-width: 1024px) {
	.slider {
		min-height: 447px;
		text-align: center;
	}
	.slider .container {
		padding:0;
	}
	.slider.about {
		/* min-height:900px; */
		padding: 110px 0;
		/* background-position: 110% 0%!important; */
	}
	.slider.contact {
		min-height: 120px;
	}
}


/*
-----
Video
-----
*/

.videoWrapper {
	width: 100%;
	max-height: 973px;
	overflow: hidden;
}

@media all and (max-width:991px) {
	.videoWrapper {
		max-height: 400px;
	}
}

 


/* 
(3) Main 
--------
*/


/*
3. Large screens
----------------
 */

@media only screen and (min-width: 1200px) {
	.container {
		width: 1200px;
	}
}


/*
4. Sections (Blocks) 
--------------------
*/

.section .container {
	padding: 80px;
	width:auto; /* overrides bootstrap container widths */
}

.section.section-lesspadding {
	padding-top: 40px;
	padding-bottom: 20px;
}
.section.slider {
	background-color:var(--black)!important;
}
.gray-section {
	background: var(--lightgray);
}

section.padding {
	padding: 120px;
}

 @media only screen and (max-width:767px) { 
	.section .container {
		padding: 25px;
	}
}

@media only screen and (min-width:1300px) {
	.section .container {
		padding: 165px 20px;
	}
}

@media only screen and (min-width:1237px) {
	.section .container {
		width:1237px;
	}
	.section.slider .container {
		width:1237px;
		padding: 166px 20px;
	}
}

.button-container {max-width: 1264px;margin: 0 auto 45px;}
.button-container > * {
	vertical-align:middle;
}
.button-container > a {
	margin:0 7px;
}

@media only screen and (max-width:767px) {
	.button-container > a {
	margin:0 2px;
}  
}

/*
5. Section headers
------------------
*/

.section-header {
	/* font-size: 40px; */
	color: var(--primary);
	font-weight: bold;
	margin: 0;
}
.section-header span {
	color:var(--black);
	text-transform:uppercase;
}
.section-header h1:after,
.section-header h2:after {
	content:'';
	width: 110px;
	height:4px;
	background:var(--primary);
	display:block;
	margin:0 auto;
	/* margin-top: 25px; */
	position: relative;
	top: 25px;
	/* bottom: 25px; */
	margin-bottom: 25px;
}
.section-header svg {
	stroke: var(--primary);
	vertical-align: middle;
	height: 20px;
	width: 60px;
	-webkit-transition: stroke .3s ease-out 0s;
	-moz-transition: stroke .3s ease-out 0s;
	transition: stroke .3s ease-out 0s;
}

.section-content {
	padding-top: 50px;
}

.section-bottom-content {
	padding-top: 10px;
}

.section-content .title h2 {
	font-size: 25px;
	color: #000;
	line-height: 1.1em;
	font-weight: 900;
	margin: 40px 0 20px 0;
}

@media only screen and (max-width:991px) {
	.section-header {
		/* font-size: 30px; */
		margin-top: 0;
		text-align: center;
		line-height: 1.1em;
	}
}

@media only screen and (max-width:767px) {
	.section-content {
	    padding-top: 25px;
	 }
	.section-header h1:after,
    .section-header h2:after   {
       	top: 20px;
       	margin-bottom: 25px;
     }
}
/*
6. Home Carousel
----------------
*/
#carousel-example-generic {
	width: 100%;
	z-index: 99;
	position: relative;
	margin-top: -98px;
}

#carousel-example-generic img {
	width: 100%;
}

#carousel-example-generic .item,
#carousel-example-generic.home .item {
	max-height: 862px;
	overflow: hidden;
	min-height: 200px;
	background-size: cover!important;
}




/*
carousel caption
---------------- 
*/
/*
Create two extra divs and make them as tables to display content always vertically aligned
------------------------------------------------------------------------------------------
*/
.carousel-caption {
	top: 20px;
	right: 0;
	left: 0;
	width:100%;
	height:100%;
	padding-bottom: 0;
}
.carousel-caption > div {
	display:table;
	width:100%;
	text-align:center;
	height:100%;
}
.carousel-caption > div > div {
	display:table-cell;
	vertical-align:middle;
	max-width: 1188px;
}

#carousel-example-generic .carousel-caption h2 {
	font-size: 30px;
	font-weight: 600;
	margin: 0 auto;
	margin-bottom: 45px;
}

#carousel-example-generic .carousel-caption h2 span {
	font-size: 50px;
	margin: 0!important;
	padding: 0;
	color: var(--primary);
	font-weight: 700;
}
 
#carousel-example-generic .carousel-caption p {
	font-weight: normal;
	text-shadow: none;
	margin: 0 auto 23px;
	color: var(--white);
}

#carousel-example-generic .btn {
	width:147px;
}

.carousel-control, .carousel-control:focus, .carousel-control:hover, .carousel-control:active {
    color: var(--primary) !important;
	display:none;
}
 

/*
Image heights 
-------------
*/

#carousel-example-generic .item,
#carousel-example-generic .item > div
	{
		min-height: 500px;
	}
@media only screen and (min-width:480px)  {
	#carousel-example-generic .item,
	#carousel-example-generic .item > div
	{
		min-height: 500px;
	}
}

@media screen and (min-width: 768px) {
	#carousel-example-generic .item,
	#carousel-example-generic .item > div	{
		min-height: 768px;
	}
	#carousel-example-generic .carousel-caption {
		padding-left:25px;
		padding-right:25px;
	}
}

@media screen and (min-width: 992px) {
	#carousel-example-generic .item,
	#carousel-example-generic .item > div
	{
		height: 750px;
		background-position: 0 !important;
	}
}
 

@media only screen and (min-width:1200px) {
	#carousel-example-generic img {
		position: relative;
		top: -98px;
	}
	#carousel-example-generic .item ,
	#carousel-example-generic .item > div{
		min-height: auto;
	}
	#carousel-example-generic.home .item,
	#carousel-example-generic.home .item > div	{
		min-height: 821px;
	}
	#carousel-example-generic .carousel-caption h2 {
		font-size: 50px;
		max-width: 1237px;
		margin: 0 auto;
		margin-bottom: 39px;
		padding: 0 20px;
		line-height: 1.4em;
	}
	#carousel-example-generic .carousel-caption h2 span {
		margin: 0 0 20px 0;
		font-size: 80px;
		color: var(--primary);
		max-width: 1200px;
		display: block;
		margin-left: auto !important;
		margin-right: auto !important;
	}
 
	#carousel-example-generic .carousel-caption p {
		font-size: 20px;
		max-width: 797px;
	}
}

@media only screen and (max-width:767px) {
	#carousel-example-generic .carousel-caption h2 {
		margin-bottom:25px;
	}
	#carousel-example-generic .carousel-caption h2 span {
		font-size: 35px;
	}
	#carousel-example-generic  {
		margin-top:0;
	}
	#carousel-example-generic .carousel-caption h2:after {
		margin: 10px auto;
	}
	#carousel-example-generic .carousel-caption {
		left: 0;
		right: 0;
		width: 100%;
		padding: 0 5%;
		top: -25px;
	}
	#carousel-example-generic .carousel-indicators {
		bottom:20px;
	}
}

@media only screen and (min-width:1300px) {
	#carousel-example-generic .carousel-caption h2 span {
		 line-height: inherit;
	}
}

/*
Carousel Indicators
-------------------
*/

#carousel-example-generic  .carousel-indicators {
	display: flex;
    flex-basis: 60%;
    align-items: center;
    justify-content: center;
}

#carousel-example-generic  .carousel-indicators li {
  text-indent: 0;
  width: auto;
  height: auto;
  background: none; /* remove bullet background */
  border: none;     /* remove default border */
  margin: 0 5px;
  font-size: 40px;
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
  LINE-HEIGHT: 11PX;
}

#carousel-example-generic  .carousel-indicators li:before {
	content:'';
	width:1px;
	height:39px;
	background:var(--lightgray);
	display:inline-block;
	vertical-align: middle;
	margin-left: 5PX;
	margin-right: 5px;
}

#carousel-example-generic  .carousel-indicators li:first-child:before {
	width:0;
	margin:0;
}

#carousel-example-generic  .carousel-indicators .active {
  font-size: 29px;
  color: var(--primary);
}




/*
7. Portfolio
------------
*/

#portfolio .circle {
	display: block;
	margin: 0 auto;
	width: 170px;
	height: 170px;
	position: relative;
	border: 2px solid #ccbba9;
	border-radius: 50%;
	background: 0 0;
	margin: 0 auto;
	color: #000;
	background-color:#fff;
}

#portfolio .circle .circle-inner {
	display: table-cell;
	vertical-align: middle;
	width: 170px;
	height: 170px;
 
}

#portfolio .circle span {
	display: block;
}

#portfolio .circle span.icon i {
	font-size:50px;
}

#portfolio .circle span.number {
	font-size: 50px;
	position: absolute;
	left: 0;
	top: 30%;
	width: 100%;
	text-align: center;
}

#portfolio .column {
	margin: 0;
}

#portfolio .column p {
	margin: 0 0 10px 0;
}

#portfolio .column .content {
	padding: 0 7px 10px;
}
@media only screen and (max0width:767px) {
	#portfolio .column .content {
	    padding: 0 7px 10px;
	    min-height: 150px;
    }
}
@media only screen and (max-width:1199px) {
	#portfolio .column {
		margin-bottom: 20px;
	}
}


/*
8. Case Studies
---------------
*/

#case-studies .section {
	padding-bottom: 90px;
}

#case-studies .section-content {
	text-align: left;
}

#case-studies .section-content .image {
	margin-bottom: 45px;
}

#case-studies .section-content .category h5 {
	font-size: 14px;
	margin: 0 0 9px 0;
	font-weight: 700;
}

#case-studies .section-content .title h2 {
	font-size: 30px;
	font-weight: 900;
	margin: 0 0 16px 0;
}

#case-studies .column {
	margin-bottom: 65px;
}

#case-studies .column p {
	margin: 0 0 10px 0;
}


/*
9. Partners - brands
--------------------
*/

#partners {
	border-bottom: 1px solid #ccc;
}

#partners .section-header {
	margin-top: 0;
}

#partners .brands div {
	display: -moz-inline-stack;
	display: inline-block;
	zoom: 100%;
	*display: inline;
	width: 20%;
	float: left;
}

#partners .brands img {
	max-width: 100%;
}

@media only screen and (max-width:767px) {
	#partners .brands div {
		width: 100%;
		float: none;
	}
}


/* 
10. tables 
----------
*/

.table-bordered {
	border: 1px solid #ddd !important;
}

table caption {
	padding: .5em 0;
}

table tfoot tr td {
	text-align: center !important;
}


/* 
responsive tables 
------------------
*/

.responsiveTbl table {
	text-align: left;
	width: 100%;
}

.responsiveTbl tr {
	background: #fff;
}

.responsiveTbl tr:nth-child(2n) {
	background: #f2f2f2;
}

.responsiveTbl tr:hover .msg {
	opacity: 1;
	top: 0;
}

.responsiveTbl th,
.responsiveTbl td {
	padding: 15px 20px;
	vertical-align: middle;
}

.responsiveTbl th:nth-child(2),
.responsiveTbl td:nth-child(2) {
	text-align: left;
}

.responsiveTbl th {
	font-weight: 500;
	text-transform: uppercase;
	padding: 25px 20px;
	border-collapse: collapse;
	border-bottom: 0!important;
	background: #ddd;
}

@media only screen and (max-width: 767px) {
	.responsiveTbl {
		overflow: auto;
	}
	.responsiveTbl table {
		width: 767px;
	}
}

@media only screen and (max-width: 640px) {
	.responsiveTbl table {
		width: 640px;
	}
}


/*
Hide show dekstop / mobile / tablet
-----------------------------------
*/

/* Show on Desktop Only */

.hideonmobile {
	display:none;
}

.showondesktop {
	display:block;
}

/* Show on Tablet and Mobile Devices */

@media only screen and (max-width:1024px) {
	.hideonmobile {
		display:block!important;
	}

	.showondesktop {
		display:none!important;
	}
}

/* 
11.forms 
--------
*/

input::-webkit-input-placeholder {
	color: #333;
	font: 300 18px/1.6 'Poppins', 'gothic', sans-serif;
}

input::-moz-input-placeholder {
	color: #333;
	font: 300 18px/1.6 'Poppins', 'gothic', sans-serif;
}

input::-moz-input-placeholder {
	color: #333;
	font: 300 18px/1.6 'Poppins', 'gothic', sans-serif;
}

input::-ms-input-placeholder {
	color: #333;
	font: 300 18px/1.6 'Poppins', 'gothic', sans-serif;
}


/* 
.formContainer class in front to limit only to contact us page) 
---------------------------------------------------------------
*/
@media only screen and (min-width:992px) {
	.wpcf7-form > div {
		width: 47%;
		float: left;
		margin: 0 1% 10px;
	}
}
.formContainer .row {
	text-align: left;
	margin:0 0 20px 0;
}
div[role="form"] {
	text-align:left;
}
/*
form error
*/
div[role="form"] span.wpcf7-not-valid-tip {
    color: #f00;
    font-size: 1em;
    font-weight: normal;
    display: block;
    position: absolute;
    font-style: italic;
}
/*
label 
*/
div[role="form"] label {
	display:block;
	font-style:italic;
	width: 100%;
}
@media only screen and (min-width:992px) {
	div[role="form"] p {
	}
}
/*
legends
-------
*/

div[role="form"] legend {
    box-sizing: border-box;
    font-style: italic;
    padding: 0 0 20px 0;
    margin: 20px 0;
    font-size: 30px;
    line-height: inherit;
    color: #9c5105;
    border: 0;
    border-bottom: 1px dotted;
    position:relative;
    display:block;
    clear: both;
    text-align:center;
    float: left;
}
div[role="form"] legend:before {
	/* content:''; */
	width:40%;
	display:block;
	position:absolute;
	top:50%;
	z-index:1;
	left:0;
	border: 1px dotted;
}
div[role="form"] legend:after {
	/* content:''; */
	width:40%;
	height:1px;
	background:brown;
	display:block;
	position:absolute;
	top:50%;
	z-index:1;
	right:0;
}
div[role="form"] input[type="text"],
div[role="form"] input[type="password"],
div[role="form"] input[type="email"],
div[role="form"] input[type="tel"],
div[role="form"] input[type="url"],
div[role="form"] textarea,
div[role="form"] select {
	 box-sizing: border-box;
	 -moz-box-sizing: border-box;
	 -webkit-box-sizing: border-box;
	 background: none;
	 border: none;
	 border-bottom: 1px solid #666;
	 padding: 20px 0;
	 width: 100%;
	 color: #333;
	 transition: border 0.3s linear, color 0.3s linear;
	 height: 65px;
}

div[role="form"] textarea {
	min-height: 200px;
	resize: none;
}

div[role="form"] input[type="text"]+.fas,
div[role="form"] input[type="password"]+.fas,
div[role="form"] input[type="email"]+.fas,
div[role="form"] input[type="tel"]+.fas,
div[role="form"] textarea+.fas {
	position: absolute;
	top: 30px;
	left: 0;
	transform: translateY(-50%);
	transition: 0.3s ease-in all;
	color: #333;
}

div[role="form"] input[type="text"]:focus,
div[role="form"] input[type="password"]:focus,
div[role="form"] input[type="email"]:focus,
div[role="form"] input[type="tel"]:focus,
div[role="form"] textarea:focus {
	outline: none;
	border-color: var(--primary);
	color: var(--primary);
}

div[role="form"] input[type="text"]:focus+.fas,
div[role="form"] input[type="password"]:focus+.fas,
div[role="form"] input[type="email"]:focus+.fas,
div[role="form"] input[type="tel"]:focus+.fas,
div[role="form"] textarea:focus+.fas {
	color: var(--primary);
}

/*
Comments forms
--------------
*/

.comment-form input[type="text"],
.blog-sidebar form[role="search"] input[type="text"],
.comment-form input[type="password"],
.comment-form input[type="email"],
.comment-form input[type="tel"],
.comment-form textarea {
	background: none;
	border: none;
	border-bottom: 1px solid #bfbfbf;
	padding: 12px 25px;
	width: 100%;
	color: #333;
	transition: border 0.3s linear, color 0.3s linear;
	background: #efefef;
	border-radius: 30px;
}
.blog-sidebar form[role="search"] input[type="text"] {
	margin:0 0 20px 0;
	padding:12px!important;
}
.comment-form label {
    display: inline-block;
    max-width: 100%;
    margin: 0 0 20px 0;
    font-weight: 700;
    font-size: 16px;
}
.comment-form textarea {
	min-height: 120px;
	resize: none;
}
.comment-form .btn-primaryinput[type="submit"] {
}

.comment-form input[type="text"]+.fas,
.comment-form input[type="password"]+.fas,
.comment-form input[type="email"]+.fas,
.comment-form input[type="tel"]+.fas,
.comment-form textarea+.fas {
	position: absolute;
	top: 30px;
	left: 0;
	transform: translateY(-50%);
	transition: 0.3s ease-in all;
	color: #333;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="password"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="tel"]:focus,
.comment-form textarea:focus,
.comment-form input[type="text"]:active,
.comment-form input[type="password"]:active,
.comment-form input[type="email"]:active,
.comment-form input[type="tel"]:active,
.comment-form textarea:active {
	outline: none;
	border-color: var(--primary);
	color: var(--primary);
}

.comment-form input[type="text"]:focus+.fas,
.comment-form input[type="password"]:focus+.fas,
.comment-form input[type="email"]:focus+.fas,
.comment-form input[type="tel"]:focus+.fas,
.comment-form textarea:focus+.fas,
.comment-form input[type="text"]:active+.fas,
.comment-form input[type="password"]:active+.fas,
.comment-form input[type="email"]:active+.fas,
.comment-form input[type="tel"]:active+.fas,
.comment-form textarea:active+.fas {
	color: var(--primary);
}


/* 
radio buttons 
-------------
*/
/*
div[role="form"] input[type="radio"] {
	position:absolute;
	left:-9999px;
}
*/
div[role="form"] input[type="radio"] + label {
	position:relative;
	cursor:pointer;
	padding: 0px 0 0 40px;
	display: inline-block;
	vertical-align: middle;
	font-size: 17px;
	font-weight: 500;
}
div[role="form"] input[type="radio"] + label:before {
    content: '';
    position: absolute;
    left:0;
    top:0;
    border: 1px solid #333;
    width: 30px;
    height: 30px;
    background: #fff;
    display: inline-block;
    vertical-align: middle;
    border-radius: 50px;
}
div[role="form"] input[type="radio"] + label:after {
	content: '';
	position:absolute;
	top: 9px;
	left: 9px;
	width: 12px;
	height: 12px;
	background:#333;
	opacity: 0;
	transform: scale(3); /* scale it up for smooth animation */
	transition: transform 0.3s linear, opacity 0.3s linear;
	border-radius: 50px;
}
div[role="form"] input[type="radio"]:checked+label:after {
	opacity:1;
	transform:scale(1); /* scale it down fom smooth animation */
}
/* 
checkboxes 
-----------
*/
/*
div[role="form"] input[type="checkbox"] {
	position:absolute;
	left:-9999px;
}
*/
div[role="form"] input[type="checkbox"] + label {
	position:relative;
	cursor:pointer;
	padding: 0px 0 10px 40px;
	display: inline-block;
	vertical-align: middle;
	font-size: 17px;
	font-weight: 500;
}
div[role="form"] input[type="checkbox"] + label:before {
    content: '';
    position: absolute;
    left:0;
    top:0;
    border: 1px solid #333;
    width: 30px;
    height: 30px;
    background: #fff;
    display: inline-block;
    vertical-align: middle;
    border-radius: 0;
}
div[role="form"] input[type="checkbox"] + label:after {
	content: '';
	border-style: solid;
	border-width: 0 0 2px 2px;
	border-color: transparent transparent #333 #333;
	width: 17px;
	height: 10px;
	position: absolute;
	top: 7px;
	left: 6px;
	opacity: 0;
	transform: scale(2) rotate(-45deg);
	transition: transform 0.3s linear, opacity 0.3s linear, background-color 0.3s ease;
}
div[role="form"] input[type="checkbox"]:checked+label:after {
	opacity:1;
	transform:scale(1) rotate(-45deg);
	border-color: transparent transparent #333 #333;
}

/*
--------------------------------------------------
custom checkboxes and radio buttons without labels
--------------------------------
*/
div[role="form"] input[type="checkbox"],
div[role="form"] input[type="radio"] {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background-color: #fff !important;
  border: 1px solid #9e9890;
  display: inline-block !important;
  vertical-align: middle !important;
  color: #4d4f53 !important;
  padding: 0 !important;
  position: relative !important;
  margin: 0 15px 0 0 !important;
  width: 30px;
  height: 30px;
  -webkit-transition: ease-in all 0.5s;
  -moz-transition: ease-in all 0.5s;
  transition: ease-in all 0.5s;
  cursor: pointer;
  border-radius: 0;
}
div[role="form"] input[type="checkbox"]:focus,
div[role="form"] input[type="checkbox"]:active,
div[role="form"] input[type="radio"]:focus,
div[role="form"] input[type="radio"]:active {
	outline:0!important;
}
div[role="form"] input[type="radio"] {
	border-radius:50px;
}

div[role="form"] input[type="checkbox"]:checked,
div[role="form"] input[type="radio"]:checked  {
  color: var(--black);
}

div[role="form"] input[type="checkbox"]:checked:after {
  width: 6px;
  height: 6px;
  content: '';
  border-style: solid;
  border-width: 0 0 2px 2px;
  border-color: transparent transparent #333 #333;
  width: 10px;
  height: 6px;
  transform: scale(2) rotate(-45deg);
  transition: transform 0.3s linear, opacity 0.3s linear, background-color 0.3s ease;
  position: absolute;
  top: 50%;
  margin-top: -6px;
  left: 47%;
  font-size: 14px;
  margin-left: -4px;
}
div[role="form"] input[type="radio"]:checked:after {
	content: '';
	position: absolute;
	top: 7px;
	width: 14px;
	height: 14px;
	background:#000;
	border-radius:50px;
	left: 7px;
}
/*
-------------
checkbox rows
-------------
*/
span.wpcf7-form-control.wpcf7-checkbox > span {
	display:block;
	width:100%;
	margin: 0 0 20px 0;
}
@media only screen and (min-width:992px) {
	span.wpcf7-form-control.wpcf7-checkbox > span {
		display: inline-block;
		width: 33.3%;
		float: left;
	}
}

/*
form button
-----------
*/

.formContainer .btn {
	border-radius:0;
	border:0; 
}
 

/*
12. Animations
--------------
*/

@-webkit-keyframes slidein {
	from {
		margin-left: 100%;
		width: 300%;
	}
	to {
		margin-left: 0%;
		width: 100%;
	}
}

@-moz-keyframes slidein {
	from {
		margin-left: 100%;
		width: 300%;
	}
	to {
		margin-left: 0%;
		width: 100%;
	}
}

@-o-keyframes slidein {
	from {
		margin-left: 100%;
		width: 300%;
	}
	to {
		margin-left: 0%;
		width: 100%;
	}
}

@keyframes slidein {
	from {
		margin-left: 100%;
		width: 300%;
	}
	to {
		margin-left: 0%;
		width: 100%;
	}
}




/*
13. Buttons
-----------
*/

/*
Common Styles
-------------
*/

.btn, 
button,
input[type="button"],
input[type="submit"],
button[type="submit"],
button[type="button"] {
	font-family:'Poppins', 'gothic',sans-serif;
	padding:0;
	padding-left:20px;
	padding-right:20px;
	width:auto;
	font-size:inherit; 
}


/* 
scroll to top
-------------
*/

.scrollToTop {
	position: fixed;
	width: 50px;
	height: 50px;
	right: 58px;
	bottom: 120px;
	margin: 0;
	text-align: center;
	z-index: 10000;
	line-height: 50px;
	border-radius:30px;
	background-color: var(--white);
}

.scrollToTop i {
	position: relative;
	z-index: 9;
	font-size: 25px;
	color: var(--primary);
}

.scrollToTop:hover i {
	color: var(--white);
}

.scrollToTop:before {
	content: '';
	position: absolute;
	z-index: 2;
	left: 0;
	bottom: 0;
	right: 0;
	height: 0;
	background-color: var(--primary);
	-webkit-transition: height .2s;
	-moz-transition: height .2s;
	transition: height .2s;
	border-radius:30px;
}

.scrollToTop:hover:before {
	height: 100%;
}


/*
primary button
--------------
*/

a.btn-primary,
.btn-primary,
div.btn-primary,
button.btn-primary,
input[type="submit"].btn-primary,
input[type="button"].btn-primary,
.comment-form input[type="submit"],
div[role="form"] input[type="submit"] {
	display: inline-block;
	position: relative;
	outline: 0;
	line-height: 42px;
	font-style: normal;
	width: auto;
	height: 42px;
	background: var(--primary);
	border-radius: 30px;
	color: var(--white);
	font-weight: 600;
	text-transform: uppercase;
	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	transition: all .2s;
	text-shadow: none;
	border:1px solid var(--primary);
	box-shadow:none;
}

a.btn-primary:hover,
.btn-primary:hover,
div.btn-primary:hover,
button.btn-primary:hover,
input[type="submit"].btn-primary:hover,
input[type="button"].btn-primary:hover,
input[type="submit"]:hover,
a.btn-primary:focus,
.btn-primary:focus,
div.btn-primary:focus,
button.btn-primary:focus,
input[type="submit"].btn-primary:focus,
input[type="button"].btn-primary:focus, 
a.btn-primary:active,
.btn-primary:active,
div.btn-primary:active,
button.btn-primary:active,
input[type="submit"].btn-primary:active,
input[type="button"].btn-primary:active,
div[role="form"] input[type="submit"]:hover {
	background-color: var(--white);
	color: var(--primary);
	text-decoration: none;
	text-shadow: none;
	border-color:var(--primary);
}
/* focus states */
a.btn-primary:focus,
.btn-primary:focus,
div.btn-primary:focus,
button.btn-primary:focus,
input[type="submit"].btn-primary:focus,
input[type="button"].btn-primary:focus, 
a.btn-primary:active,
.btn-primary:active,
div.btn-primary:active,
button.btn-primary:active,
input[type="submit"].btn-primary:active,
input[type="button"].btn-primary:active,
.comment-form input[type="submit"]:hover {
	background-color: var(--white)!important;
	color: var(--primary)!important;
	border-color:var(--primary)!important;
}


/*
Search Blog Button
------------------
*/

#searchsubmit {
	display: inline-block;
	position: relative;
	outline: 0;
	line-height: 42px;
	font-style: normal;
	width: auto;
	height: 42px;
	background: var(--primary);
	border-radius: 30px;
	color: var(--white);
	font-weight: 600;
	text-transform: uppercase;
	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	transition: all .2s;
	text-shadow: none;
	border:1px solid var(--primary);
	box-shadow:none;
}

#searchsubmit:hover,
#searchsubmit:focus,
#searchsubmit:active {
	background-color: var(--white)!important;
	color: var(--primary)!important;
	border-color:var(--primary);
}

/*
fullwidth button
----------------
*/

.btn-fullwidth {
	display: block;
	width: 100%;
}


/*
secodary button
---------------
*/

a.btn-secondary,
.btn-secondary,
div.btn-secondary,
button.btn-secondary,
input[type="submit"].btn-secondary,
input[type="button"].btn-secondary {
	display:inline-block;
	position: relative;
	outline: 0;
	height: 42px;
	background-color: transparent;
	border: 1px solid var(--white);
	border-radius: 30px;
	color: var(--white);
	font-weight: 600;
	text-transform: uppercase;
	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	transition: all .2s;
	line-height: 42px;
}

a.btn-secondary:hover,
.btn-secondary:hover,
div.btn-secondary:hover,
button.btn-secondary:hover,
input[type="submit"].btn-secondary:hover,
input[type="button"].btn-secondary:hover,
input[type="submit"]:hover,
a.btn-secondary:focus,
.btn-secondary:focus,
div.btn-secondary:focus,
button.btn-secondary:focus,
input[type="submit"].btn-secondary:focus,
input[type="button"].btn-secondary:focus, 
a.btn-secondary:active,
.btn-secondary:active,
div.btn-secondary:active,
button.btn-secondary:active,
input[type="submit"].btn-secondary:active,
input[type="button"].btn-secondary:active {
	background: var(--black);
	text-decoration: none;
	border-color: var(--black);
	color:var(--white)!important;
}


@media all and (max-width:767px) {
	.scrollToTop {
		width: 38px;
		height: 38px;
		line-height: 38px;
		right: 18px;
		bottom: 70px;
		margin: 0;
		text-align: center;
		z-index: 10000;
	}
	.scrollToTop i {
		font-size: 18px;
	}
}

/*
large button
------------
*/

.btn-large {
	width:100%;
	max-width:227px;
}

/*
14. Footer
----------
*/

#footer {
	background-color: var(--black);
	width: 100%;
	color: var(--white);
}

#footer h6 {
	font-weight:600;
	color:var(--primary);
	/* font-size:20px; */
	line-height:135%;
}
 
#footer p {
	line-height:22px;
	text-align: justify;
	color: var(--wite);
	margin: 25px 0;
}

#footer .socials p {
	 margin-bottom:0px;
}
#footer .logo span {
	display:  inline-block;
	color: var(--white);
	font-size: 30px;
	font-weight: bold;
	margin: 0;
	margin-left: 0;
}
#footer .logo span span {
	color:var(--primary)!important;
}
#footer .footer-container {
	margin: 0 auto;
	line-height: 30px;
	padding: 94px 25px;
	max-width: 1220px;
}
#footer a {
	color: var(--white);
	vertical-align: middle;
	margin: 0;
}

#footer .row {
	margin-left:0;
	margin-right: 0;
	display:flex;
	flex-wrap:nowrap;
	flex-basis:100%;
	justify-content: space-around;
	gap: 47px;
}
#footer .row .footer-col {
	flex-basis:33.3%;
	width:33.3%;
}

#footer .row .footer-col:nth-child(2) {
	padding-left:90px;
}

#footer .row .footer-col:last-child {
  margin-right: 20px; /* smaller left gap */
}

#footer .row .footer-col:last-child p {
	line-height:20px;
}

#footer .socials p br {
	display:none;
}
#footer .socials a  {
	color: var(--white);
	border-radius: 30px;
	background: var(--primary);
	width: 50px;
	height: 50px;
	text-align: center;
	vertical-align: middle;
	display: inline-block;
	line-height: 50px;
	margin: 15px 0 0;
	transition:0.3s ease-in all;
	margin-right: 25px;
}

#footer .socials a img {
	max-width: 25px;
	vertical-align:middle;
	display:inline-block;
}

#footer .socials a:first-child img {
	max-width: 16px;
}

#footer ul,
#footer ul li {
	margin-bottom:0;
	padding:0;
	list-style-type: none;
	margin-top: 0;
}

#footer ul li a {
	color: var(--white);
	margin: 0;
	line-height: 196%;
}
#footer a:hover,
#footer ul li a:hover {
	color:var(--primary);
	text-decoration:none;
}


@media all and (max-width:1099px) {
	
	#footer p {
		text-align:left;
	}

}	
@media all and (max-width:1000px) {
	#footer .footer-container {
	    padding: 40px 80px;
	}
	#footer .row {
		flex-wrap:wrap!important;
		gap: 40px;
	}
	#footer .row .footer-col {
		flex-basis:100%!important;
		gap:0;
		padding:0;
	}
	#footer .row .footer-col:nth-child(2) {
		padding-left:0;
	}

	#footer .row .footer-col:last-child {
		margin-right:0;
	}

	#footer .socials a {
		margin-top:0;
	}

	#footer .email {
		/* margin-bottom:0!important; */
	}
}

@media only screen and (max-width:767px) {
	#footer .footer-container {
		padding-top: 1px;
		padding-bottom: 1px;
		padding-left:25px;
		padding-right:25px;
	}
	#footer .row {
		flex-wrap:wrap!important;
		gap: 25px;
	}
	#footer .row .footer-col:last-child p, #footer address {
		margin: 0 0 12px 0;
	}
	#footer .row .footer-col:last-child p:last-child {
		margin-bottom:0;
	}
}

#footer .copyright {
	background-color:var(--primary);
	padding: 25px;
	text-align: center;
}

#footer .copyright p {
	color:var(--white);
	font-size:20px;
	margin: 0;
	text-align:center;
	font-weight: 300;
}
#footer .copyright p strong {
	font-weight:500;
}

#footer address {
	background:url(../img/IronFitness-Home.png) no-repeat;
	background-size:20px;
	padding-left:35px;
}

#footer .tel {
	background:url(../img/IronFitness-Telephone.png) no-repeat;
	background-size:20px;
	padding-left:35px;
}

#footer .email {
	background: url(../img/IronFitness-Mail.png) no-repeat;
	background-size:20px;
	padding-left:35px;
	margin-bottom:0;
}
 
@media only screen and (max-width:767px) {
	#footer .copyright p {
		font-size:16px;
	}
}
 

#overlay {
	background: rgba(0, 0, 0, 0.7);
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 10;
	display: none;
	text-align: center;
}
#overlay .wrap {
	border: 8px solid #fff;
	border-radius: 3px;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation-name: ligboxZoom;
	animation-duration: 0.3s;
}
#overlay .wrap img {
	margin: 0 0 10px;
	position: relative;
	max-height: 800px;
}
#overlay .wrap p {
	margin: 0 0 5px;
}
#overlay .close {
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	width: 30px;
	height: 30px;
	color: var(--white);
	cursor: pointer;
	background: #000;
	border-radius: 50%;
	font-size: 26px;
	/* line-height: 20px; */
	text-decoration: none!important;
	position: absolute;
	top: 10px;
	right: 10px;
	padding: 3px;
}
#overlay .close:hover {
	transform: rotate(180deg);
}
@-webkit-keyframes ligboxZoom {
	from {
		transform: translate(-50%, -50%) scale(0);
	}
	to {
		transform: translate(-50%, -50%) scale(1);
	}
}
@keyframes ligboxZoom {
	from {
		transform: translate(-50%, -50%) scale(0);
	}
	to {
		transform: translate(-50%, -50%) scale(1);
	}
}

/*
17. Responsive Videos
---------------------
*/
@media only screen and (min-width:768px) {
	.Flexible-container {
		position: relative;
		padding-bottom: 56.25%;
		padding-top: 0;
		height: 0;
		overflow: hidden;
	}

	.Flexible-container iframe,   
	.Flexible-container object,
	.Flexible-container video, /* for html5 video embeds */
	.Flexible-container embed {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
 
}
/*
18. 2 Col Page Layout (Used in Our Story, Services Details & Client details
---------------------------------------------------------------------------
*/
main {
	background: var(--white);
}
main .col-left > div,
main .col-right > div {
	padding: 0;
}
main .col-left {
}
main > div {
	margin:0 auto;
	max-width:1280px;
}
main .story-img,
main #clientDetails img {
	margin: 0 0 20px 0;
}
@media only screen and (min-width:768px) {
	
	main #clientDetails .container {
		/* align-items:center; */
	}
	main .col-left {
	}	
	main .col-right  {
	}
}
@media only screen and (min-width:992px) {
	main .col-left > div,
	main .col-right > div {
		padding: 0;
	}
}
@media only screen and (min-width:992px) {
	main .col-left > div {
		padding-right: 150px;
	}
	main .story-img {
		margin: 0 0 60px 0;
		position:relative;
		width: 100%;
	}
}
 
/*
20. Blog Posts
--------------
*/
/* Blog Masthead Links */
.blog-nav-item {
    display:inline-block;
    position:relative;
    padding:10px;
    font-weight: 500;
    color: #cdddeb;
}
.blog-nav-item.active {
    color:#fff;
}
.blog-nav-item.active {
  color: var(--white);
}
.blog-nav-item:hover,
.blog-nav-item:focus {
     color: var(--white);
    text-decoration:none;
}
.blog-nav .active:after {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -5px;
    vertical-align: middle;
    content: " ";
    border-right: 5px solid transparent;
    border-bottom: 5px solid;
    border-left: 5px solid transparent;
}
/* Blog Header */
.blog-header {
    padding-top:20px;
    padding-bottom:20px;
}
.blog-title {
    font-size:60px;
    margin-top:30px;
    margin-bottom:0;
}
/* Blog Description */
.blog-description {
    color:#999;
}
.lead {
    font-size: 1.25rem;
    font-weight: 300;
}
/* Blog container */
.blog-container {
    margin-top: 0;
    background: #f5eee1!important;
}
/* Blog Main */
.blog-main {
    font-size:14px;
    line-height:1.6em;
}

/* Blog Sidebar */
.blog-sidebar {} /* leave emopty please :) */

/* sidebar modules */
.sidebar-module {
    padding: 15px;
    margin: 0 -15px 15px;
}
.sidebar-module-inset {
    padding: 15px;
    background-color: #f5f5f5;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}
 
/* Blog posts */
.blog-post {
  margin-bottom: 40px;
  box-shadow: none;
  padding: 0;
  border-bottom: 2px dashed #ccc;
}
.blog-post-title {
  margin-bottom: 25px;
  font-size: 50px;
}
.blog-post-meta {
  margin-bottom: 20px;
  color: #999;
}
/* Pagination */
.pager {
  margin-bottom: 60px;
  text-align: left;
}
.pager > li > a {
  width: 140px;
  padding: 10px 20px;
  text-align: center;
  border-radius: 30px;
}

/* blog footer */
.blog-footer {
    padding: 40px 0;
    color: #999;
    text-align: center;
    background-color: #f9f9f9;
    border-top: 1px solid #e5e5e5;
}


@media only screen and (max-width:767px) {
	.blog-post-title {
		font-size:30px;
	}
}

/* showcases */
.showcase {
    height:600px;
    padding:100px 20px;
    text-align:center;
    border-bottom:1px solid #ccc;
    margin-bottom:30px;
    color:#fff;
    background:url('../img/showcase.jpg') no-repeat center center;
}
.showcase h1 {
    font-size:55px;
    padding-bottom:20px;
    color:#fff;
}
.showcase p {
    font-size:20px;
    margin-bottom:50px;
}
/* boxes */
.boxes {
    text-align:center;
    background-color:#fff;
    margin-bottom:30px;
}
.box .fa {
    font-size:45px!important;
    margin-bottom:10px;
}
.box {
    padding:15px;
    border:#ccc 1px solid;
}
.post-thumb img {width:100%;height:auto;}

.sidebar-module ul,
.sidebar-module li,
.sidebar-module ul li {
	padding-left: 0;
	list-style: none;
}
/* custom forms */
.comments li {
	list-style:none;
}
.comments{
	border:1px solid #ccc;
	padding:10px;
	margin-bottom:20px;
	margin-top:10px;
}
.comments h3, .comments h2 {
	background: #f4f4f4;
	color:#333;
	padding:5px;
}
.comment-body {
	border: 0;
	margin-bottom:10px;
	padding: 25px;
	background: #eee;
}
.comment-meta{
	background: transparent;
	color: #666;
	padding:10px;
	overflow: auto;
}
.comment-meta img {
	float:left;
	margin-right: 10px;
}
.comment-reply-link{
	background: var(--primary);
	display: inline-block;
	display: inline-block;
	position: relative;
	padding: 10px 25px;
	outline: 0;
	font-style: normal;
	width: auto;
	border-radius: 30px;
	color: var(--white)!important;
	font-weight: 600;
	text-transform: uppercase;
	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	transition: all .2s;
	text-shadow: none;
	border: 1px solid var(--primary);
	box-shadow: none;
}
/*
21. Sidebar Search form
-----------------------
*/
form#searchform {
    margin: 15px 0;
}


/* 
22.formContainer class in front to limit only to contact us page) 
---------------------------------------------------------------
*/

.formContainer .row {
	text-align: left;
	margin:0 0 20px 0;
}
/*
legends
-------
*/

.formContainer legend {
    box-sizing: border-box;
    font-style: italic;
    padding: 0 0 20px 0;
    margin: 20px 0;
    font-size: 30px;
    line-height: inherit;
    color: #9c5105;
    border: 0;
    border-bottom: 1px dotted;
    position:relative;
    display:block;
    clear: both;
}
.formContainer legend:before {
	/* content:''; */
	width:40%;
	display:block;
	position:absolute;
	top:50%;
	z-index:1;
	left:0;
	border: 1px dotted;
}
.formContainer legend:after {
	/* content:''; */
	width:40%;
	height:1px;
	background:orange;
	display:block;
	position:absolute;
	top:50%;
	z-index:1;
	right:0;
}
.formContainer input[type="text"],
.formContainer input[type="password"],
.formContainer input[type="email"],
.formContainer input[type="tel"],
.formContainer textarea {
	background: none;
	border: none;
	border-bottom: 1px solid #666;
	padding: 20px 0;
	padding-top:5px;
	width: 100%;
	color: #333;
	transition: border 0.3s linear, color 0.3s linear;
	font: 300 18px/1.6 'Poppins', 'gothic', sans-serif;
}

.formContainer textarea {
	min-height: 120px;
	resize: none;
}

.formContainer input[type="text"]+.fas,
.formContainer input[type="password"]+.fas,
.formContainer input[type="email"]+.fas,
.formContainer input[type="tel"]+.fas,
.formContainer textarea+.fas {
	position: absolute;
	top: 30px;
	left: 0;
	transform: translateY(-50%);
	transition: 0.3s ease-in all;
	color: #333;
}

.formContainer input[type="text"]:focus,
.formContainer input[type="password"]:focus,
.formContainer input[type="email"]:focus,
.formContainer input[type="tel"]:focus,
.formContainer textarea:focus {
	outline: none;
	border-color: var(--primary);
	color: var(--primary);
}

.formContainer input[type="text"]:focus+.fas,
.formContainer input[type="password"]:focus+.fas,
.formContainer input[type="email"]:focus+.fas,
.formContainer input[type="tel"]:focus+.fas,
.formContainer textarea:focus+.fas {
	color: var(--primary);
}



/*
22. Cookie Alerts
-----------------
*/

/*
22. Cookie Alerts
-----------------
*/

/*
--------
IE Alert
--------
*/
.AlertContainer {
	display:none!important;
	position: fixed;
	background: rgba(0,0,0, 0.7);
	top: 0;
	left: 0;
	z-index: 1000;
	width: 100%;
	height: 100%;
	-webkit-transition:0.4s ease-in all;
	-moz-transition:0.4s ease-in all;
	transition:0.4s ease-in all;
	
}
.AlertContainer .container {
	position:relative;
	width: 100%;
    height: 100%;
     -webkit-transition:0.4s ease-in all;
    -moz-transition:0.4s ease-in all;
    transition:0.4s ease-in all;
}
.AlertContainer .container .popupbox {
	position: absolute;
	top: 40%;
	max-width: 600px;
	left: 50%;
	margin-left: 0;
	z-index: 999;
	background: #fff;
	padding: 25px 25px 5px;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	-webkit-transform: translate(-40%);
	-moz-transform: translate(-40%);
	transform: translate(-40%);
	text-align: center;
	border-radius: 0;
}
/*
---------------------
text button and links
---------------------
*/
.AlertContainer .container .popupbox h2 {
    margin: 0 0 20px 0;
    font-family: inherit;
    font-size: 24px;
    font-weight: 700;
}

.AlertContainer .container .popupbox p {
    margin: 0 0 20px 0;
}
.AlertContainer .container .popupbox a {
    color: var(--black);
    font-size: 16px;
}

.AlertContainer .container .popupbox .btn {
    display: inline-block;
    position: relative;
    outline: 0;
    font-style: normal;
    width: 147px;
    height: 42px;
    background: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 30px;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    transition: all .2s;
    text-shadow: none;
}
.AlertContainer .container .popupbox .btn:hover {
	background-color: var(--white);
	color: var(--primary);
	text-decoration: none;
	text-shadow: none;
}

@media only screen and (max-width:767px) {
	.AlertContainer .container .popupbox {
		top:0;
		left:0;
		margin: 0 20px;
		margin-top: 20px;
		-webkit-transform: translate(0%);
		-moz-transform: translate(0%);
		transform: translate(0%);
		max-width: 100%;
		box-sizing: border-box;
	}
}
 
/* 
-------------
Popup overlay 
-------------
*/
#mainOverlay {
    overflow-x: hidden;
    overflow-y: hidden;
    position: fixed;
	top:0;
	left:0;
    display: none!important;
    z-index: 9999;
    height: 100%;
    width: 100%;
    opacity: .8;
    background:rgba(0, 0, 0, 0.7);
}

/*
----------------------------------
HOMEPAGE STYLES (08/08/2025) Start
----------------------------------
*/

/*
-------------
Main Headings
-------------
*/

.section-header {
    position:relative;
    z-index:10;
    position: relative;
}
.section-header span {
	color:var(--black);
	text-transform:uppercase;
}

/*
-------------------------
Transparent Headings Text
-------------------------
*/


.section-header:before {
    z-index: -1;
    right: 0;
    content: attr(data-text);
    font-family: 'Poppins', 'Century Gothic Bold', sans-serif;
    font-size: 80px;
    font-weight: 700;
    color: transparent;
    font-style: italic;
    -webkit-text-stroke: 1px var(--icegray);
    width: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 0; /* Or adjust for horizontal alignment */
    transform: translateY(-50%);
    font-size: 80px; /* Example */
     /* Light background look */
    pointer-events: none; /* Click-through */
     /* Prevent line break for background text */
    line-height: 80px;
    text-align: center!important;
    width: 100%;
}

@media only screen and (max-width:767px) {
	.section-header:before {
		font-size:40px!important;
		line-height: 1.1em;
		text-align: center!important;
	}
}

 
/*
---------------
Homepage styles
---------------
*/

/*
------------------ 
HOMEPAGE PROGRAMME
------------------
*/

 
#program .section-content {
    display: flex;
    flex-wrap:wrap;
    flex-basis:100%;
    gap: 43px;
}

#program .section-content .block {
    flex: 1 1 calc(33.333% - 43px); /* 3 items per row with gap compensation */
    box-sizing: border-box;
    border: 1px solid var(--regulargray);
    overflow: hidden;
	min-height:497px;
}

#program .section-content .block .image {
    /* overflow:hidden; */
}

#program .section-content .block .image img {
    width:  100%;
    height:auto;
    max-width:100%;
}

#program .section-content .block .content {
    padding: 30px 20px;
}

#program .section-content .block .content h3 {
    position:relative;
    margin-bottom: 25px;
    padding-left:0px;
}
#program .section-content .block .content h3:before {
    content:'';
    width: 7px;
    height: 7px;
    background-color:var(--primary);
    display:inline-block;
    vertical-align:middle;
    border-radius:30px;
    margin-right: 10px;
}
#program .section-content .block .content p {
    margin: 0;
    color: var(--gray);
}
 

@media only screen and (max-width:992px) {
	#program .section-content .block {
		flex: 1 1 calc(50% - 40px); /* 3 items per row with gap compensation */
	}
}

@media only screen and (max-width:767px) {

	#program .section-content .block .content {
	    padding: 25px;
	}
	#program .section-content .block .content h3 {
		margin-bottom:20px;
	}
	#program .section-content {
		gap:25px
	}
}
@media only screen and (max-width:600px) {
	#program .section-content .block {
		flex: 1 1 calc(100% - 40px); /* 3 items per row with gap compensation */
	}
	#program .section-content .block img {
		width:100%!important;
	}
	#program .section-content .block {
		min-height:auto;
	}
}

@media only screen and (min-width:1200px) {
	#program .section-content .block .content p {
	    text-align: justify;
	}
}

/*
----------------------
(3) About and Features 
----------------------
*/

#about  {
	max-width:100%;
	background:var(--backgroundgray);
}

#about .container {
	display:flex;
	width:100%;
	flex-basis:100%;
	position:relative;
	flex-wrap:nowrap;
	justify-content: space-around;
	gap: 0px;
}

#about .section-header {
	margin-top:0;
}
#about .container > div {
	display:flex;
	flex-basis: 47%;
	width: 47%;
	gap: 0;
	background-size: cover;
}

@media only screen and (max-width: 1400px) {
	#about .container > div{
		background-size:cover!important;
	}
}

#about .container > div:first-child {
	width: 53%;
	flex-basis: 53%;
	gap: 0;
}

@media only screen and (min-width:992px) {
	#about img	{
		position:relative;
		left:0;
		margin-top:40px;
		margin-bottom:40px;
	}
	#about .col-left > div	{
	    padding-right: 0;
	   }
	#about .section-header:before {
		text-align:left!important;
	}
	/*
	client details page only
	-------------------------
	*/
 
}

@media only screen and (min-width: 1267px) {
    #about  .container {
        width: 1267px;
    }
}
@media only screen and (min-width: 1200px) {
    #about  .container {
        padding: 0;
    }
	#about .container > div:first-child {
		padding:70px;
	 
	}
}

@media only screen and (min-width: 1300px) {
    #about   .container {
        width: 1300px;
        max-height: 100%;
    }
}

 

@media only screen and (min-width: 1400px) {
    #about   .container {
        width: 1400px;
    }
}

@media only screen and (min-width: 1440px) {
    #about   .container {
        width: 1440px;
    }
}

/*
@media only screen and (min-width: 1500px) {
    #about   .container {
        width: 1500px!important;
      
    }
}

@media only screen and (min-width: 1536px) {
    #about   .container {
        width: 1536px!important;
 
    }
}
*/

#about .section-header:before {
	-webkit-text-stroke: 1px var(--icegray2);
	left: -30px;
}
#about .section-header:after {
	margin:0;
	height:0;
}

#about .section-content {
	padding-top:25px;
	text-align:justify;
}

.features {
  border-left: 2px solid var(--regulargray);
  padding-left: 25px;
  margin-left: 4px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  font-family: 'Poppins', 'gothic', sans-serif;
  max-width: 690px;
}

.feature-item {
  display: flex;
  gap: 5px;
  align-items: flex-start;
  position: relative;
}

.feature-item::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 0;
  width: 12px;
  height: 12px;
  background-color: var(--white);
  border: 2px solid var(--primary);
  border-radius: 50%;
}

.feature-number {
  color: var(--primary);
  font-weight: 700;
  font-size: 25px;
  line-height: 1;
  margin-top: 0;
}

.feature-content h3 {
  font-size: 20px;
  margin: 2px 0 20px;
  text-transform: uppercase;
  font-weight: 600;
}

.feature-content p {
  color: var(--black);
  margin: 0;
  margin-left: -25px;
}

@media only screen and (max-width:1299px) {
 
	#about .container {
		flex-wrap:wrap;
		padding: 0;
	}
	#about .section-header:before {
		left:0;
	}
	#about .container > div {
		width:100%!important;
		flex-basis:100%!important;
		height: 55vh;
		background-position: center!important;
		background-size: cover;
	}
	#about .container > div:first-child {
		height:auto;
		padding:80px;
	}

	.features {
		max-width:100%;
		padding-right:0;
	}
}

@media only screen and (min-width:1300px) {
	#about .section-content > p {
		max-width: 610px;
	}
}

@media only screen and (max-width:767px) {
	#about .section-content {
		text-align:left;
	}
	#about .section-header:before  {
		text-align:center;
		left:0;
	}
	#about .container > div {
		height:40vh;
	}
	#about .container > div:first-child {
		padding:25px;
	}
}

/*
-------------------------
(4) Testimonials Carousel
-------------------------
*/

/*
6. Home Carousel
----------------
*/
#testimonials {
	width: 100%;
	z-index: 99;
	position: relative;
	overflow: hidden;
}

#testimonials img {
	width: 100%;
}

#testimonials .item,
#testimonials.home .item {
	overflow: hidden;
	background-size: cover!important;
}


/*
carousel caption
---------------- 
*/

#testimonials .carousel-caption {
	top:0;
	bottom:0!important;
	padding-top:0;
}

#testimonials .carousel-caption .title {
	margin: 0 auto;
	margin-bottom: 0;
	padding: 0;
	color: var(--white);
	position:relative;
}

#testimonials .carousel-caption .title:before {
	content: attr(data-text);
	-webkit-text-stroke: 1px var(--darkgray);
	text-align: center;
}

#testimonials .carousel-caption .title p {
	font-weight: 600;
	font-size:50px;
	line-height: 1.1;
	font-family: 'Poppins', 'Century Gothic Bold';
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}

#testimonials .carousel-caption .title p:first-child span {
	color:var(--primary)
}

#testimonials .carousel-caption p {
	font-weight: normal;
	text-shadow: none;
	margin: 0 auto;
	color: var(--white);
}

#testimonials .carousel-caption .title + p {
	max-width: 544px;
	margin: 70px auto 35px auto;
}

#testimonials .testimonials-member {
	color:var(--primary);
	text-transform:uppercase;
	font-weight:bold;
	
}

#testimonials .button-container {
	margin-bottom:0px;
}


/*
Image heights 
-------------
*/

#testimonials .item,
#testimonials .item > div
	{
		min-height: 380px;
	}
@media only screen and (min-width: 480px)  {
	#testimonials .item,
	#testimonials .item > div
	{
		min-height: 380px;
	}
}

@media screen and (min-width: 768px) {
	#testimonials .item,
	#testimonials .item > div	{
		min-height: 480px;
	}
}

@media screen and (min-width: 992px) {
	#testimonials .item,
	#testimonials .item > div
	{
		height: 481px;
		background-position: 0 !important;
	}
}
 

@media only screen and (min-width:1200px) {
	#testimonials img {
		position: relative;
		 
	}
	#testimonials .item ,
	#testimonials .item > div{
		min-height: auto;
	}
	#testimonials.home .item,
	#testimonials.home .item > div	{
	height: 481px;
	}
	#testimonials .carousel-caption .title {
		font-size: 50px;
		max-width: 1237px;
		margin: 0 auto;
		margin-bottom: 46px;
		padding: 0 20px;
	}
	#testimonials .carousel-caption .title {
		margin: 0;
		font-size: 50px;
		color: var(--primary);
		max-width: 1200px;
		display: block;
		margin-left: auto !important;
		margin-right: auto !important;
		font-weight: 600;
		line-height: 70px;
	}
 
	#testimonials .carousel-caption p {
		font-size: 16px;
		max-width: 797px;
		padding-left: 0!important;
		padding-right: 0!important;
	}
}

@media only screen and (max-width:767px) {
	#testimonials .carousel-caption .title p {
		font-size:30px;
		font-weight: 700;
	 
	}
	 
	#testimonials .carousel-caption .title:before {
		font-size:40px;
	}
	#testimonials  {
		margin-top:0;
	}
	 
	#testimonials .carousel-caption {
		left: 0;
		right: 0;
		width: 100%;
		padding: 0 5%;
		top: -20px;
	}
	#testimonials .carousel-caption .title + p {
		margin-top: 45px;
		margin-bottom: 25px;
	}
}

@media only screen and (min-width:1300px) {
	#testimonials .carousel-caption .title {
	}
}

/*
Carousel Indicatom[rs
-------------------
*/

#testimonials  .carousel-indicators {
	display: flex;
	flex-basis: 60%;
	align-items: center;
	justify-content: center;
	bottom: 20px;
}

#testimonials  .carousel-indicators li {
  width: 14px;
  height: 14px;
  background: none; /* remove bullet background */
  border: none;     /* remove default border */
  margin: 0 6px;
  background-color: var(--white);
  font-weight: 600;
  cursor: pointer;
  border-radius: 30px;
  display: inline-block;
}
 

#testimonials  .carousel-indicators li:first-child:before {
	width:0;
	margin:0;
}

#testimonials  .carousel-indicators .active {
  background-color: var(--secondary);
}

/*
-----------------------
(5) READY TO TRANSFORM?
-----------------------
*/

#transform  {
	max-width:100%;
	background:var(--backgroundgray);
}

 

#transform .section-content {
	padding-top:0px;
	z-index: 11;
	position: relative;
}

#transform .section-header:before {
	-webkit-text-stroke: 1px var(--icegray2);
	text-align: left;
	z-index: -1;
}
#transform .section-header:after {
	height:0;
	margin:0;
	padding:0;
}

#transform .section-header p {
	font-weight: bold;
	font-size:40px;
	color:var(--primary);
	margin:  0 0 5px;
	z-index: 99;
	position: relative;
	font-family: 'Poppins','Century Gothic Bold';
}
#transform .section-header p span:first-child {
	color:var(--primary);
	text-transform: none;
}


#transform  p {
	font-size:20px;
	color:var(--black);
}

#transform .btn {
	text-transform:capitalize;
	padding-left: 54px;
	padding-right: 54px;
	min-width: 227px;
}

@media only screen and (min-width:992px) {
	#transform .container {
		display:flex;
		width:100%;
		flex-basis:100%;
		position:relative;
		flex-wrap:nowrap;
		align-items:center;
		justify-content: center;
		gap: 0px;
	}
	#testimonials  .carousel-indicators {
		bottom: 60px;
	}
	
	#transform .container > div {
		display:flex;
		flex-basis: 35%;
		width: 35%;
	}

	#transform .container > div:first-child {
		width: 65%;
		flex-basis: 65%;
		gap: 0;
	}

	#transform .container > div.col-right {
		justify-content: space-around;
		align-items:center;
		gap: 70px;
	}
	
	#transform .col-left > div	{
	    padding-right: 0;
	}
	
	#transform .container > div.col-right:before {
		content:'';
		width:4px;
		height:115px;
		background-color:var(--primary);
		vertical-align:middle;
		display:inline-block;
		margin: 0 0 0px  30px;
	}
}
@media only screen and (max-width:991px) {
	#transform {
		text-align:center;
	}
	#transform .section-header p {
		font-size:30px;
		margin: 0 0 25px;
	}
}
@media only screen and (max-width:767px) {
	 
	#transform .section-header p {
		font-size:30px;
		margin: 0 0 25px 0;
		line-height: 1.1em;
	}
	#transform p {
		font-size:16px;
	}
	#transform .section-header:before{
		text-align: center;
	}
}
@media only screen and (min-width: 1267px) {
    #transform  .container {
        width: 1267px;
    }
	#transform .section-header:before {
		text-align:left!important;
		top: 46px;
		/* line-height: 75px; */
	}
}
@media only screen and (min-width: 1200px) {
    #transform  .container {
        padding: 100px 80px;
    }
 
}

@media only screen and (min-width: 1300px) {
    #transform   .container {
        width: 1300px;
        max-height: 293px;
    }
}

@media only screen and (min-width: 1400px) {
    #transform   .container {
        width: 1400px;
    }
}

@media only screen and (min-width: 1440px) {
    #transform   .container {
        width: 1440px;
    }
}

/* Archives */
.container.post-category article {
    margin: 20px 0;
    border-bottom: 1px dashed #ccc;
    padding: 20px 0;
}

.container.post-category article h2 {
	font-size:30px;
}

 
/*
23. Print styles
----------------
*/

.print {
	display:none!important;
}

.slider .section-header:before {
    -webkit-text-stroke: 1px var(--icegray2);
}

@media print {
    html, body {
        width: 100%;
        max-width: 100%;
        font-size: 16px; /* Match your large screen font size */
        background: #fff !important;
		color:inherit!important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
	
	/* Print your background images */
    .has-print-bg {
        background-repeat: no-repeat !important;
        background-size: cover !important; /* or contain */
        background-position: center !important;
    }

  
    body {
        margin: 0;
    }

    /* Adaprt font size to be fit for papers print */
    body, p, h1, h2, h3, h4, h5, h6 {
        font-size: 100% !important;
        line-height: 1.4 !important;
    }
	
	/* Hide text Urls */ 
	a[href]:after {
        content: "" !important;  /* Remove the appended URL */
    }

    /* Keep Bootstrap's lg desktop container width */
    .container {
        max-width: 1440px !important; /* Bootstrap 3 lg container width */
        width: 100% !important;
    }

    /* Prevent Bootstrap 3 from stacking columns in print */
    .row {
        display: flex !important;
        flex-wrap: wrap !important;
    }
    [class*="col-"] {
        float: none !important;
        display: block !important;
        flex: 0 0 auto !important;
    }

    /* Keep images full size */
    img {
        max-width: 100% !important;
        height: auto !important;
    }

    /* Restore background colors */
    * {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }


    /* Hide unnecessary parts in print */
    nav, header, #nav, .navbar, .dropdown-menu, .modal, .no-print, .section-header:before {
        display: none !important;
    }

    /* Avoid page breaks inside important blocks */
    .section, .panel, .content-block {
        page-break-inside: avoid;
    }
	
	.print {
		display:block!important;
	}
	
	#carousel-example-generic .carousel-caption h2 span,
	#testimonials .carousel-caption .title p:first-child span {
		color:var(--primary)!important;
	}
	
	#carousel-example-generic .carousel-caption p,
	#testimonials .carousel-caption p {
		color:var(--white)!important;
	}
	
	#testimonials .testimonials-member {
		color:var(--primary)!important;
	}

	#testimonials .testimonials-member-date {
		color:var(--white)!important;
	}
}
/*
@media print {
	.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
	  float: left;
	}
	.col-sm-12 {
	  width: 100%;
	}
	.col-sm-11 {
	  width: 91.66666666666666%;
	}
	.col-sm-10 {
	  width: 83.33333333333334%;
	}
	.col-sm-9 {
	  width: 75%;
	}
	.col-sm-8 {
	  width: 66.66666666666666%;
	}
	.col-sm-7 {
	  width: 58.333333333333336%;
	}
	.col-sm-6 {
	  width: 50%;
	}
	.col-sm-5 {
	  width: 41.66666666666667%;
	}
	.col-sm-4 {
	  width: 33.33333333333333%;
	 }
	 .col-sm-3 {
	   width: 25%;
	 }
	 .col-sm-2 {
	   width: 16.666666666666664%;
	 }
	 .col-sm-1 {
	  width: 8.333333333333332%;
	 }
}
*/
	