@import url('common.css');

@media screen and (min-width: 993px)
{
	#navigation .logo .close
	{
		display: none;
	}
}

/*
	*************************
*/
.homeBanner
{
	background-image:var(--bgImage);
	width: 100%;
	height: 100vh;
	background-size: cover;
	background-position: center;
	position: relative;
}
.homeBanner:before
{
	content: '';
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to bottom, rgba(0 0 0 / 100%),rgba(0 0 0 / 30%),rgba(0 0 0 / 0%),rgba(0 0 0 / 0%),rgba(0 0 0 / 0%))
}

.homeBanner .textBanner
{
	text-align: left;
	padding-left: 80px;
	padding-top: 230px;
	position: relative;
	z-index: 2;
}
.homeBanner .textBanner .subHeading
{
	font-size: 20px;
	line-height: 32px;
	letter-spacing: 0.64px;
	margin: 0 0 0px;
	font-weight: 400;
	color: var(--white);
}
.homeBanner .textBanner .mainHeading
{
	font-size: 60px;
	line-height: 32px;
	letter-spacing: 0.64px;
	margin: 5px 0 0px;
	font-weight: 700;
	white-space: pre-line;
	color: var(--white);
	line-height: 1.15em;
}

/*
	**************************
*/

#navigation
{
	position: absolute;
	top: 5px;
	width: 100%;
	z-index: 20;
	padding: 15px 0 25px;
	/*background-color: var(--color1);*/
}
@media screen and (min-width: 993px)
{
	#navigation
	{
		padding: 10px 0 10px;	
	}
	.homeBanner .textBanner
	{
		padding-top: 250px;
	}
	.headerFormEnquiry
	{
		top: 160px !important;
	}
}
#navigation.showNavigation
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: var(--black);
	box-shadow: 0 0 5px 5px rgba(255 255 255 / 20%);
}
#navigation .myNavigatgions
{
	align-self: center;
}
#navigation .myNavigatgions .mainUl
{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
}
#navigation .myNavigatgions .mainUl .mainLi
{
	flex: 0 0 auto;
	margin-right: 20px;
}
#navigation .myNavigatgions .mainUl .mainLi:last-child
{
	margin-right: 0;
}
#navigation .myNavigatgions .mainUl .mainLi a
{
	display: block;
	color: var(--white);
	font-size: 16px;
	font-weight: 400;
	text-transform: uppercase;
	line-height: 12.8px;
	position: relative;	
	padding-bottom: 5px;
}
#navigation .myNavigatgions .mainUl .mainLi a:before
{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0%;
	height: 1px;
	background-color: var(--white);
	transition: .3s;
}
#navigation .myNavigatgions .mainUl .mainLi a:hover:before
{
	width: 100%;
}
#navigation .myNavigatgions .mainUl .mainLi.callButtons a:before
{
	display: none !important;
}
#navigation .myNavigatgions .mainUl .mainLi.callButtons a
{
	background-color: var(--color2);
	padding: 13px 25px;
	border-radius: 20px;
	font-weight: 600;
	display: inline-block;
	transition: .3s;
}
#navigation .myNavigatgions .mainUl .mainLi.callButtons:hover a
{
	background-color: var(--color1);
}

/*
	***************************
*/

#navigation .container
{
	max-width: 95%;
}
#navigation .logo a
{
	display: inline-block;
	font-family: 'Kanit', sans-serif;
	font-weight: 800;
	color: var(--white);
	font-size: 16px;
	text-transform: uppercase;
	text-shadow: 4px 4px 5px rgba(0 0 0 / 10%);
}
#navigation .logo a img
{
	width: 180px;
	/*filter: brightness(0) invert(1);*/
}
#navigation .logo a span
{
	display: block;
}
#navigation .logo a span:nth-child(1)
{
	font-size: 35px;
	text-transform: uppercase;
	margin-bottom: 0;
	line-height: 30px;
	text-shadow: 2px 2px 8px rgba(0 0 0 / 30%);
}
/* ========================================== */

.iconicSection
{
	background-color: var(--color1);
	padding: 80px 0;
}
.iconicSection .text_iconic_section .heading-page
{
	text-align: center;
}
.iconicSection .text_iconic_section .heading-page .subHeading
{
    font-size: 16px;
    line-height: 20px;
    color: var(--color2);
    letter-spacing: 0px;
    margin: 0 0 3px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Work Sans', sans-serif;
}
.iconicSection .text_iconic_section .heading-page .heading
{
	font-size: 45px;
    line-height: 55px;
    color: var(--white);
    letter-spacing: 1px;
    margin: 0 0 15px;
    font-weight: 500;
    white-space: pre-line;
}
.iconicSection .text_iconic_section .heading-page p
{
    color: var(--white);
    white-space: pre-line;
    max-width: 70%;
    margin: auto;
    line-height: 26px;
    font-size: 17px;
    margin-top: 5px;
    font-weight: 300;
}
/*
	**********************
*/

.iconicSection .iconsBoxRow
{
	margin-top: 34px;
}
.iconicSection .iconsBoxRow .iconicBoxColom .iconicBoxWrapper
{
	width: 100%;
	height: 220px;
	position: relative;
	transition: transform 0.6s;
	transform-style: preserve-3d;
}
.iconicSection .iconsBoxRow .iconicBoxColom:hover .iconicBoxWrapper
{
    transform: rotateY(180deg);
}

.iconicSection .iconsBoxRow .iconicBoxColom .iconicBoxWrapper .front,
.iconicSection .iconsBoxRow .iconicBoxColom .iconicBoxWrapper .back
{
	position: absolute;
	-webkit-backface-visibility: hidden;
  	backface-visibility: hidden;
}
.iconicSection .iconsBoxRow .iconicBoxColom .iconicBoxWrapper .front
{
	width: 100%;
	height: 100%;
	background-color: var(--color1);
	display: grid;
	place-items:center;
	color: var(--aaa);
	border: 1px solid #266ecb;
}
.iconicSection .iconsBoxRow .iconicBoxColom .iconicBoxWrapper .back
{
	position: absolute;
	top: 0;
	left: 0;
    width: 100%;
    height: 100%;
    background-color: #144685;
	color: var(--white);
	border: 1px solid #144685;
    display: grid;
    place-items: center;
    top: 0;
    left: 0;
    transform: rotateY(180deg);
}


.iconicSection .iconsBoxRow .iconicBoxColom .iconicBoxWrapper .iconWrapper
{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 20px;
}
.iconicSection .iconsBoxRow .iconicBoxColom .iconicBoxWrapper .iconWrapper .icon
{
	margin-bottom: 17px;
}
.iconicSection .iconsBoxRow .iconicBoxColom .iconicBoxWrapper .iconWrapper .icon img
{
	width: 70px;
	height: 70px;
	filter:  brightness(0) invert(1);
}
.iconicSection .iconsBoxRow .iconicBoxColom .iconicBoxWrapper .iconWrapper h6
{
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 10px;
    color: var(--white);
    font-family: "Work Sans",sans-serif;
}

.iconicSection .iconsBoxRow .iconicBoxColom .iconicBoxWrapper .iconWrapper p
{
    color: var(--white);
    font-weight: 300;
    line-height: 22px;
}
/*
	******************************
*/
.companyProfileSection
{
	padding:60px 0 40px;
}
.companyProfileSection .profileContentWrapper
{
	padding-right: 40px;
	margin-top: 50px;
}
.companyProfileSection .profileContentWrapper .heading01 .subHeading
{
    font-size: 12px;
    line-height: .8;
    color: var(--818181);
    letter-spacing: 1.2px;
    margin: 0 0 5px;
    font-weight: 400;
    /*text-transform: uppercase;*/
}
.companyProfileSection .profileContentWrapper .heading01 .heading
{
	font-size: 50px;
	line-height: 50px;
    color:var(--color1);
    letter-spacing: 1px;
    margin: 0 0 25px;
    font-weight: 500;
    white-space: pre-line;
}
.companyProfileSection .profileContentWrapper .heading01 h5
{
	font-size: 20px;
	line-height: 23px;
    color:var(--black);
    letter-spacing: -1px;
    margin: 0 0 20px;
    text-transform: uppercase;
    font-weight: 600;
    white-space: pre-line;
    font-family: 'Work Sans', sans-serif;
}
.companyProfileSection .profileContentWrapper .desc p
{
    margin: 0 0 9px;
    font-family: 'Work Sans', sans-serif;
    line-height: 28px;
    font-weight: 400;
    color: #424141;
    text-align: justify;
    /*letter-spacing: .64px;*/
    font-size: 16px;
}
.companyProfileSection .profileImageDiv
{
	position: relative;
}
.companyProfileSection .profileImageDiv .image01
{	
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}
.companyProfileSection .profileImageDiv .image01 img
{
    max-width: 100%;
    height: auto;
    /*box-shadow: -2px 4px 30px 0 rgb(0 0 0 / 30%);*/
    height: 400px;
    object-fit: cover;
    object-position: center;
    width: 82%;
    margin-left: 25%;
    border-radius: 8px;
}
.companyProfileSection .profileImageDiv .image02
{	
	position: absolute;
    left: 0;
    top: 131px;
    z-index: 2;
    width: 490px;
    border-radius: 8px;
}

.companyProfileSection .profileImageDiv .image02 img
{
	max-width: 90%;
    height: auto;
    /*box-shadow: -2px 4px 30px 0 rgb(0 0 0 / 30%);*/
    height: 370px;
    object-fit: cover;
    object-position: center;
    border-top: 15px solid var(--white);
    border-right: 15px solid var(--white);
    border-radius: 8px;
}


/*
	*********************************
*/

.numberContentSection
{

}
.numberContentSection .numerContentWrapper
{
    position: relative;
    background: #fff;
    padding: 85px 80px 25px 100px;
}
.numberContentSection .numerContentWrapper .heading
{
    font-size: 50px;
    letter-spacing: 2px;
    color: var(--black);
    line-height: 63px;
    text-transform: uppercase;
    margin: 0 0 43px;
    font-weight: 400;
    white-space: pre-line;
}
.numberContentSection .numerContentWrapper p
{
	margin-bottom: 55px;
}
.numberContentSection .customRowImageUp
{
	position: relative;
}
.numberContentSection .customRowImageUp .imageCol5
{
	position: absolute;
	left: 80px;
	margin-top: -200px;
}
.numberContentSection .customRowImageUp .imageCol5 img
{
	width: 100%;
	height: 600px;
	object-fit: cover;
	object-position: center;
}


/*
	*****************************
*/

.OurIndustriesSection
{
	background-color: #fdf8f8;
	padding: 60px 0;
}
.OurIndustriesSection .headingOnly
{
	text-align: center;
}
.OurIndustriesSection .headingOnly .subHeading
{
    font-size: 12px;
    line-height: .8;
    color: var(--818181);
    letter-spacing: 1.2px;
    margin: 0 0 5px;
    font-weight: 400;
    text-transform: uppercase;
    max-width: 100%;
    text-align: center !important;
}
.OurIndustriesSection .headingOnly h6
{
	font-size: 16px;
	line-height: 20px;
    color:var(--black);
    letter-spacing: 0px;
    margin: 0 0 3px;
    font-weight: 600;
    text-transform: uppercase;
   font-family: 'Work Sans', sans-serif;
}
.OurIndustriesSection .headingOnly .heading
{
	font-size: 45px;
	line-height: 45px;
    color:var(--color1);
    letter-spacing: 1px;
    margin: 0 0 15px;
    font-weight: 500;
}
.OurIndustriesSection .headingOnly p
{
    line-height: 24px;
    color: #111;
    letter-spacing: .64px;
    font-size: 17px;
    max-width: 80%;
    margin:0 auto 54px;
    white-space: pre-line;
}

/*
 *****************************
*/
.OurIndustriesSection .industriesWrapper
{
    position: relative;
    overflow: hidden;
    margin: 0 0 30px;
}
.OurIndustriesSection .industriesWrapper .image
{
	border: 1px solid #eaeaea;
}
.OurIndustriesSection .industriesWrapper .image img
{
	width: 100%;
	height: 300px;
	object-fit: cover;
	object-position: center;
	transition: .3s;
}
.OurIndustriesSection .industriesWrapper:hover .image img
{
	transform: scale(1.1) rotate(5deg);
}
.OurIndustriesSection .industriesWrapper .overlay
{
	position: absolute;
	top: 0;
	left: 0;
	width: 0%;
	height: 100%;
	background-color: rgba(230,43,74,.9);
	/*opacity: 0;*/
	/*visibility: hidden;*/
	transition: .4s;
	display: flex;
	align-items: flex-end;
}

.OurIndustriesSection .industriesWrapper:before
{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to bottom, rgba(0 0 0 / 0%), rgba(0 0 0 / 0%), rgba(0 0 0 / 40%), rgba(0 0 0 / 90%));
}
.OurIndustriesSection .industriesWrapper:hover .overlay
{
	width: 100%;
	opacity: 1;
	visibility: visible;
}
.OurIndustriesSection .industriesWrapper .overlay .overlayContent
{
	display: flex;
	flex-direction: column;
	padding-left: 30px;
	padding-bottom: 30px;
	transition: .6s;
}
.OurIndustriesSection .industriesWrapper:hover .overlay .overlayContent
{
	padding-left: 50px;
}
.OurIndustriesSection .industriesWrapper .overlay .overlayContent .span01
{
	font-size: 12px;
    line-height: 32px;
    color:var(--white);
    display: block;
    letter-spacing: 1.2px;
    margin: 0 0 3px;
    text-transform: uppercase;
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
}
.OurIndustriesSection .industriesWrapper .overlay .overlayContent .span02
{
    font-size: 20px;
    line-height: .8;
    color:var(--white);
    letter-spacing: .8px;
    margin: 0;
    text-transform: uppercase;
    white-space: nowrap;
}

/*
	*****************************
*/

.clientSection
{
	padding: 80px 0;
	background-color: #F4F4F4;
}
.clientSection .headingOnly
{
	text-align: center;
}
.clientSection .headingOnly .subHeading
{
    font-size: 12px;
    line-height: .8;
    color: var(--818181);
    letter-spacing: 1.2px;
    margin: 0 0 5px;
    font-weight: 400;
    text-transform: uppercase;
}
.clientSection .headingOnly .heading
{
	font-size: 50px;
	line-height: 60px;
    color:var(--black);
    letter-spacing: 1px;
    margin: 0 0 25px;
    font-weight: 400;
    white-space: pre-line;
}
.clientSection .headingOnly p
{
    margin: 0 0 54px;
    line-height: 28px;
    color: #818181;
    letter-spacing: .64px;
    font-size: 16px;
    white-space: pre-line;
}
/*
 *****************************
*/

.clientSection .row .twentyPer
{
	width: 16.666%;
}
.clientSection .clientsWrapper
{
	margin-bottom: 23px;
	position: relative;
}
.clientSection .clientsWrapper:after
{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 4px;
	height: 100%;
	transform: scale(0);
	background-color: #e62b4a;
	transition: .3s;
}
.clientSection .clientsWrapper:hover:after
{
	transform: scale(1);
}
.clientSection .clientsWrapper .image
{
	background-color: var(--white);
	cursor: pointer;
	border: 1px solid #eaeaea;
	box-shadow: 0 0 5px 10px rgba(0 0 0 / 3%);
}
.clientSection .clientsWrapper .image img
{
	width: 100%;
	padding:7px 15px;
	transition: .3s;
	transform: scale(.9);
}
.clientSection .clientsWrapper:hover .image img
{
	transform: scale(1.05);
}
/*
	************************************
*/

.callBackSection
{
	position: relative;
}
.callBackSection:before
{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0 0 0 / 60%);
	z-index: 2;
}
.callBackSection .callBackBackgroundImage
{
	background-image: var(--bgImage);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 1;
}
.callBackSection .textWrapper
{
	position: relative;
	z-index: 3;
	padding: 100px;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.callBackSection .textWrapper .icon
{
	width: 115px;
    height: 115px;
    background: #e62b4a;
    text-align: center;
    display: inline-block;
    margin: 0 0 49px;
}
.callBackSection .textWrapper .icon i
{
    color: #fff;
    padding: 30px 0;
    font-size: 54px;
}

.callBackSection .textWrapper .heading
{
	white-space: pre-line;
	font-size: 50px;
    line-height: 62px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 44px;
    font-weight: 500;
   	text-shadow: 2px 2px 5px rgba(0 0 0 / 20%);
}
.callBackSection .textWrapper .heading span
{
    color: #e62b4a;
}
.callBackSection .textWrapper p
{
	font-size: 20px;
    color: #fff;
    letter-spacing: .8px;
    white-space: pre-line;
    margin: 0;
}

/*
	***************************
*/

.headerFormEnquiry
{
	position: absolute;
    top: 130px;
    right: 130px;
    z-index: 5;
    background-color: var(--white);
    min-width: 370px;
    /*padding: 30px 25px;*/
    /*border-radius: 8px;*/
    box-shadow: 0 0 5px 10px rgb(62 59 59 / 30%);
}
.headerFormEnquiry .header_form h3
{
	color: var(--white);
	background-color: var(--color1);
	text-transform: capitalize;
	font-weight: 400;
	font-size: 22px;
	letter-spacing: 0px;
	word-spacing: 2px;
	text-align: center;
	margin-bottom: 25px;
	padding: 10px 20px;
	margin-left: -25px;
	margin-right: -25px;
	position: relative;
}
.headerFormEnquiry .header_form h3:before
{
    content: '';
    position: absolute;
    top: 49px;
    left: -1px;
    border-top: 16px solid #144381;
    border-bottom: 16px solid transparent;
    border-right: 13px solid #144381;
    border-left: 13px solid transparent;
}
.headerFormEnquiry .header_form h3:after
{
    content: '';
    position: absolute;
    top: 49px;
    right: -1px;
    border-top: 16px solid #144381;
    border-bottom: 16px solid transparent;
    border-left: 13px solid #144381;
    border-right: 13px solid transparent;
}
.headerFormEnquiry form
{
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
}
.headerFormEnquiry form .inputGroup
{
	margin-bottom: 15px;
}
.headerFormEnquiry form .inputGroup label
{
	font-size: 15px;
	color: #333;
	margin-bottom: 5px;
	display: block;
	font-weight: 600;
	font-family: 'Poppins', sans-serif;
}
.headerFormEnquiry form .inputGroup .form-control
{
	font-size: 16px;
	background-color: transparent;
	border: 1px solid #ccc;
	color: var(--black);
	border-radius: 5px;
	font-weight: 400;
}
.headerFormEnquiry form .inputSubmit input
{
	width: 100%;
	border: 1px solid var(--color2);
	background-color: var(--color2);
	padding: 12px 15px;
	text-align: center;
	font-size: 16px;
	letter-spacing: 0;
	text-transform: uppercase;
	font-weight: 600;
	cursor: pointer;
	color: var(--white);
	transition: .2s;
	font-family: 'Poppins', sans-serif;
}
.headerFormEnquiry form .inputSubmit:hover input
{
	background-color: var(--color1);
	color: var(--white);
	border: 1px solid var(--color1);
}

/* Chrome, Safari, Edge, Opera */
.headerFormEnquiry form .inputGroup .numbers::-webkit-outer-spin-button,
.headerFormEnquiry form .inputGroup .numbers::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.headerFormEnquiry form .inputGroup .numbers{
  -moz-appearance: textfield;
}



/*
	******************************
*/

.margin-bellow
{
	margin-bottom: 25px;
}
#projectsection
{
	width: 100%;
}
#projectsection .custom_colom
{
	height: 100%;
	width: 100%;
	background-color: var(--white);
	border:1px solid #eaeaea;
}
#projectsection .custom_colom .why_us_boxes .image a img
{
	width: 100%;
	height: 250px;
	object-fit: cover;
	object-position: center;
	border-radius: 8px;
}
#projectsection .custom_colom .why_us_boxes .image a
{
	position: relative;
	display: block;
}
#projectsection .custom_colom .why_us_boxes .image a .overlay
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0 0 0  / 30%);
	border-radius: 8px;
	transform: scale(.7);
	opacity: 0;
	visibility: hidden;
	transition: .3s;
}
#projectsection .custom_colom .why_us_boxes:hover .image a .overlay
{
	transform: scale(1.02);
	opacity: 1;
	visibility: visible;
}
#projectsection .custom_colom .why_us_boxes .details
{
	padding-top: 10px;
}
#projectsection .custom_colom .why_us_boxes .details h6
{
	text-align: left;
	font-weight: 600;
	font-size: 17px;
	color: var(--color1);
	padding: 0 15px;
	margin-bottom: 8px;
	font-family: 'Poppins', sans-serif;
}
#projectsection .custom_colom .why_us_boxes .details h6 span
{
	margin-left: 5px;
	font-weight: 600;
	font-size: 15px;
	color: #555;
	font-family: 'Poppins', sans-serif;
}
#projectsection .custom_colom .why_us_boxes .details p
{
	text-align: left;
	padding: 0 15px;
	color: #333;
	font-weight: 400;
	font-size: 15px;
	line-height: 24px;
	font-family: 'Poppins', sans-serif;
}
#projectsection .custom_colom .why_us_boxes .details ul
{
	margin-top: 20px;
}
#projectsection .custom_colom .why_us_boxes .details ul li
{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	border-bottom: 1px solid #eaeaea;
	padding-top: 8px;
}
#projectsection .custom_colom .why_us_boxes .details ul li h6 
{	
	flex: 0 0 auto;
	font-weight: 600;
	color: #1b1e7c;
	font-size: 15px;
	width: 140px;
	text-transform: capitalize;
}
#projectsection .custom_colom .why_us_boxes .details ul li p
{
	margin-bottom: 10px;
	flex: 0 0 auto;
	font-size: 14px;
	font-weight: 500;
	color: #555;
	width: calc(100% - 140px);
}

#projectsection .custom_colom .why_us_boxes .details ul li p.priceP
{
	font-size: 16px;
	font-weight: 600;
	color: #333;
}
#projectsection .custom_colom .why_us_boxes .details .sendenquiry
{
	text-align: center;
	margin-top: 15px;
	margin-bottom: 10px;
}
#projectsection .custom_colom .why_us_boxes .details .sendenquiry a {
	display: block;
	max-width: 70%;
	background-color: var(--color2);
	color: var(--white);
	margin: auto;
	font-family: 'Poppins', sans-serif;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 1px;
	padding: 10px 15px;
	border-radius: 25px;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Adding a box shadow for depth */
	transform: translate3d(0, 0, 0); /* Ensuring 3D transformation */
	transition: transform 0.3s ease, box-shadow 0.3s ease; /* Adding transition for smooth effect */
}

@media only screen and (max-width: 600px) {
#projectsection .custom_colom .why_us_boxes .details .sendenquiry a {
	display: block;
	max-width: 70%;
	background-color: var(--color2);
	color: var(--white);
	margin: auto;
	font-family: 'Poppins', sans-serif;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 10px;
	letter-spacing: 1px;
	padding: 10px 15px;
	border-radius: 25px;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); 
	transform: translate3d(0, 0, 0); /* Ensuring 3D transformation */
	transition: transform 0.3s ease, box-shadow 0.3s ease; /* Adding transition for smooth effect */
}
}
#projectsection .custom_colom .why_us_boxes .details .sendenquiry a:hover
{
	background-color: var(--color1);
	transform: translate3d(0, -2px, -4px); /* Applying a 3D transformation on hover */
	box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3); /* Adjusting box shadow on hover for a lifting effect */
}

.call-us-button {
    position: fixed;
    bottom: 0;
    left: 20px;
    z-index: 20;
    width: 200px;
    animation: abc1 2s infinite  alternate-reverse;
    -webkit-animation: abc1 2s infinite  alternate-reverse;
}

.whatsapp-icon {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 65px;
    z-index: 999999;
}


/*
	***********************
*/

body.innerPageContent section.Privacy
{
	background-color: var(--white);
	margin-top: 40px;
	margin-bottom: 40px;
}
body.innerPageContent section.Privacy .headingOnly
{
	text-align: center;
	margin-bottom: 20px;
}
body.innerPageContent section.Privacy .headingOnly .heading
{
	color: var(--color1);
	font-weight: 400;
	letter-spacing: 1px;
	font-size: 28px;
}

body.innerPageContent section.Privacy .otherConent h2
{
	font-family: 'Poppins', sans-serif;
	font-size: 20px;
	font-weight: 600;
	color: var(--color1);
	text-transform: capitalize;
	margin-bottom: 7px;
}

body.innerPageContent section.Privacy .otherConent h3
{
	font-family: 'Poppins', sans-serif;
	font-size: 17px;
	font-weight: 600;
	color: #444;
	text-transform: capitalize;
	margin-bottom: 7px;
}

body.innerPageContent section.Privacy .otherConent p
{
	 font-family: 'Work Sans', sans-serif;
	font-size: 15px;
	text-align: left;
	font-weight: 400;
	line-height: 25px;
	color: #444;
	margin-bottom: 15px;
	text-transform: capitalize;
}
body.innerPageContent section.Privacy .otherConent p a
{
	color: var(--color1);
}
body.innerPageContent section.Privacy .otherConent p a,
body.innerPageContent section.Privacy .otherConent p b
{
	font-family: 'Poppins', sans-serif !important;
	font-weight: 600 !important;
}
body.innerPageContent .homeBanner:before
{
	background-image: linear-gradient(to bottom, rgba(0 0 0 / 100%),rgba(0 0 0 / 70%),rgba(0 0 0 / 0%),rgba(0 0 0 / 0%),rgba(0 0 0 / 0%));
}
body.innerPageContent .homeBanner
{
	height: 400px;
}
body.innerPageContent .homeBanner .headerText
{
	display: none;
}
body.innerPageContent .homeBanner .headerText .headerTextWrapper
{
	display: none;
}
body.innerPageContent section.Privacy .otherConent ul 
{
	padding-left: 20px;
	margin-bottom: 20px;
}
body.innerPageContent section.Privacy .otherConent ul li
{
	list-style-type: disc;
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	text-align: left;
	font-weight: 400;
	line-height: 22px;
	color: #444;
	margin-bottom: 7px;
}
body.innerPageContent section.Privacy .otherConent ul li b
{
	font-family: 'Poppins', sans-serif !important;
	font-weight: 600 !important;
}

body.thankyou .homeBanner
{
	height: 350px;
}

body.thankyou .thankyouSection
{
	padding: 60px;
	text-align: center;
}
body.thankyou .thankyouSection h4
{
	white-space: pre-line;
	font-size: 35px;
	color: var(--black);
	line-height: 55px;
	font-weight: 600;
	margin-bottom: 40px;
	font-family: 'Poppins';
}

body.thankyou .thankyouSection .homePage
{
	margin-top: 10px;
	width: 100%;
	background-color: var(--color2);
	margin-right: 8px;
	text-align: center;
	color: var(--white);
	font-family: 'Poppins';
	font-weight: 400;
	font-size: 15px;
	text-transform: uppercase;
	padding: 10px 18px;
	border-radius: 5px;
	text-decoration: none;
	border:2px solid var(--color2);

}
body.thankyou .thankyouSection .homePage:hover
{
	background-color: var(--color1);
	color: var(--white);
	border:2px solid var(--color1);
}

@media screen and (max-width: 577px)
{
	body.thankyou .thankyouSection
	{
		padding: 40px 0;
	}
	body.thankyou .thankyouSection h4
	{
		font-size: 35px;
		line-height: 40px;
		margin-bottom: 25px;
	}
	body.thankyou .thankyouSection .homePage
	{
		font-size: 14px;
		padding: 8px 14px;
	}
}

/*
	****************************
*/

.customOrder3
{
	position: relative;
}
.customOrder3 .circularTextWithIcon
{
	position: absolute;
    left: -77px;
    top: -22px;
    width: 200px;
    height: 185px;
    z-index: 5;
}
.customOrder3 .circularTextWithIcon .wrapper
{
	background-image:linear-gradient(45deg, var(--color2), #7a4500);
	padding: 15px;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	box-shadow: 0 -4px 8px 7px rgb(0 0 0 / 10%);
}
.customOrder3 .circularTextWithIcon .wrapper .icon
{
	margin-bottom: 10px;
}
.customOrder3 .circularTextWithIcon .wrapper .icon img
{
	filter: brightness(0) invert(1);
	width: 50px;
}
.customOrder3 .circularTextWithIcon .wrapper .text
{
	text-align: center;
}
.customOrder3 .circularTextWithIcon .wrapper .text h5
{
	font-size: 50px;
	color: var(--white);
	font-family: 'Poppins';
	margin-bottom: 0;	
	line-height: 50px;
}
.customOrder3 .circularTextWithIcon .wrapper .text span
{
	font-size: 15px;
	line-height: 22px;
	font-weight: 500;
	color: var(--white);
	white-space: pre-line;
}




.customOrder3 .circularTextWithIcon2
{
	position: absolute;
    right: -46px;
    bottom: -66px;
    width: 200px;
    height: 185px;
    z-index: 5;
}
.customOrder3 .circularTextWithIcon2 .wrapper
{
	background-image:linear-gradient(45deg, var(--color1), #0c005a);
	padding: 15px;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	box-shadow: 0 -4px 8px 7px rgb(0 0 0 / 10%);
}
.customOrder3 .circularTextWithIcon2 .wrapper .icon
{
	margin-bottom: 10px;
}
.customOrder3 .circularTextWithIcon2 .wrapper .icon img
{
	filter: brightness(0) invert(1);
	width: 50px;
}
.customOrder3 .circularTextWithIcon2 .wrapper .text
{
	text-align: center;
}
.customOrder3 .circularTextWithIcon2 .wrapper .text h5
{
	font-size: 50px;
	color: var(--white);
	font-family: 'Poppins';
	margin-bottom: 0;	
	line-height: 50px;
}
.customOrder3 .circularTextWithIcon2 .wrapper .text span
{
	font-size: 15px;
	line-height: 22px;
	font-weight: 500;
	color: var(--white);
	white-space: pre-line;
}

/*
	========================
*/

.perfectSapceSection
{
	position: relative;
	padding: 45px 0;
}
.perfectSapceSection .counter-shape
{

}
.perfectSapceSection .counter-shape .image12
{
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.perfectSapceSection .counter-shape .image23
{
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

/*
	**************************
*/
.perfectSapceSection .wrapperContents
{
	position: relative;
	z-index: 5;
}
.perfectSapceSection .wrapperContents .headingOnly
{
	text-align: center;
}
.perfectSapceSection .wrapperContents .headingOnly h6
{
	font-size: 16px;
    line-height: 20px;
    color: var(--black);
    letter-spacing: 0px;
    margin: 0 0 3px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Work Sans', sans-serif;
}
.perfectSapceSection .wrapperContents .headingOnly .heading
{
	font-size: 45px;
    line-height: 55px;
    color: var(--color1);
    letter-spacing: 1px;
    margin: 0 0 15px;
    font-weight: 500;
    white-space: pre-line;
}

/*
	===============================
*/
.perfectSapceSection .wrapperContents .gridThreeColoms
{
	display: grid;
	grid-gap: 25px;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 50px;
}

.perfectSapceSection .wrapperContents .gridThreeColoms .textColom .wrapper_box
{
	display: flex;
	flex-direction:column;
}
.perfectSapceSection .wrapperContents .gridThreeColoms .textColom .wrapper_box .contentWrapper
{
	background-color: var(--white);
    padding: 35px;
    padding-top: 45px;
    box-shadow: 0 0 10px 2px rgb(0 0 0 / 5%);
    border-radius: 8px;
    position: relative;
    transition: .3s;
}
.perfectSapceSection .wrapperContents .gridThreeColoms .textColom .wrapper_box .contentWrapper:hover
{
	background-color: var(--color1);
}
.perfectSapceSection .wrapperContents .gridThreeColoms .textColom .wrapper_box .contentWrapper:nth-child(1)
{
	margin-bottom: 45px;
}
.perfectSapceSection .wrapperContents .gridThreeColoms .textColom .wrapper_box .contentWrapper .numbers
{
	position: absolute;
	top: -30px;
	left: 30px;
	width: 60px;
	height: 60px;
	background-color: var(--color2);
	color: var(--white);
	font-size: 25px;
	font-weight: 700;
	text-align: center;
	line-height: 60px;
	border-radius: 50%;
}
.perfectSapceSection .wrapperContents .gridThreeColoms .textColom .wrapper_box .contentWrapper:hover .numbers
{
	background-color: var(--white);
	color: var(--color1);
}
.perfectSapceSection .wrapperContents .gridThreeColoms .textColom .wrapper_box .contentWrapper .desc p
{
	font-family: 'Poppins';
	font-size: 15px;
	line-height: 27px;
	text-align: justify;
}.perfectSapceSection .wrapperContents .gridThreeColoms .textColom .wrapper_box .contentWrapper:hover .desc p
{
	color: var(--white);
}
.perfectSapceSection .wrapperContents .gridThreeColoms .textColom .image img
{
	border-radius: 8px;
}
/*
	=====================
*/

.smartLocationsSection
{
	background-color: #eee;
	padding: 40px 0;
}
.smartLocationsSection .headingOnly
{
	width: 100%;
}
.smartLocationsSection .headingOnly
{
	text-align: center;
}
.smartLocationsSection .headingOnly h6
{
	font-size: 16px;
    line-height: 20px;
    color: var(--black);
    letter-spacing: 0px;
    margin: 0 0 3px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Work Sans', sans-serif;
}
.smartLocationsSection .headingOnly .heading
{
    font-size: 45px;
    line-height: 45px;
    color: var(--color1);
    letter-spacing: 1px;
    margin: 0 0 15px;
    font-weight: 500;
}
.smartLocationsSection .headingOnly p
{
    line-height: 24px;
    color: #000;
    letter-spacing: .64px;
    font-size: 17px;
    max-width: 80%;
    margin: 0 auto 24px;
    white-space: pre-line;
}
.smartLocationsSection .pointerFeatures
{
	width: 100%;
	grid-column-gap: 20px;
	display: grid;
	grid-template-columns: repeat(5,1fr);
}
.smartLocationsSection .pointerFeatures .pointerFeaturesColom
{
	background-color: var(--white);
	padding:40px 25px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.smartLocationsSection .pointerFeatures .pointerFeaturesColom:hover
{
	background-color: var(--color2);
}
.smartLocationsSection .pointerFeatures .pointerFeaturesColom .number
{
	font-family: 'Poppins';
	font-weight: 700;
	color: var(--black);
	font-size: 35px;
	line-height: 30px;
	margin: 0 0 5px;
}

.smartLocationsSection .pointerFeatures .pointerFeaturesColom .locations
{
	font-weight: 500;
	color: var(--black);
	font-size: 17px;
	line-height: 24px;
	margin: 0 0 0px;
}


.smartLocationsSection .pointerFeatures .pointerFeaturesColom:hover .number,
.smartLocationsSection .pointerFeatures .pointerFeaturesColom:hover .locations
{
	color: var(--white);
}

/*
	**************************
*/

.galelrySection
{
	margin-top: 40px;
}
.gallerySectionHomePage .galleryGridContainer
{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-template-rows: auto auto;
	grid-gap: 5px;
}

.gallerySectionHomePage .galleryGridContainer .galleryGridColom .textContainer
{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
	color: var(--white);
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 50px;
	transition: .6s;
	opacity: 0;
	visibility: hidden;

}
.gallerySectionHomePage .galleryGridContainer .galleryGridColom:hover .textContainer
{	
	transform: scale(1);
	opacity: 1;
	visibility: visible;
}
.gallerySectionHomePage .galleryGridContainer .galleryGridColom .textContainer h4
{
	text-align: center;
	font-size: 23px;
	line-height: 25px;
	text-shadow: 2px 2px 10px rgba(0 0 0 / 15%);
}

.gallerySectionHomePage .galleryGridContainer .galleryGridColom
{
	overflow: hidden;
}
.gallerySectionHomePage .galleryGridContainer .galleryGridColom img
{
	width: 100%;
	object-fit: cover;
	object-position: center;
	transition: .3s;
}
.gallerySectionHomePage .galleryGridContainer .galleryGridColom:hover img
{
	transform: scale(1.05);
}
.gallerySectionHomePage .galleryGridContainer .galleryGridColom
{
	border:0px solid #fff;
}
@media screen and (min-width: 768px)
{

.gallerySectionHomePage .galleryGridContainer .galleryGridColom.colom1
{
	grid-column-start: 1;
	grid-column-end: 2;
	grid-row-start: 1;
	grid-row-end: 3;
}
.gallerySectionHomePage .galleryGridContainer .galleryGridColom.colom2
{
	grid-column-start: 2;
	grid-column-end: 4;
	grid-row-start: 1;
	grid-row-end: 2;
}
.gallerySectionHomePage .galleryGridContainer .galleryGridColom.colom3
{
	grid-column-start: 4;
	grid-column-end: 5;
	grid-row-start: 1;
	grid-row-end: 2;
}
.gallerySectionHomePage .galleryGridContainer .galleryGridColom.colom4
{
	grid-column-start: 2;
	grid-column-end: 3;
	grid-row-start: 2;
	grid-row-end: 3;
}
.gallerySectionHomePage .galleryGridContainer .galleryGridColom.colom5
{
	grid-column-start: 3;
	grid-column-end: 5;
	grid-row-start: 2;
	grid-row-end: 3;
}

.gallerySectionHomePage .galleryGridContainer .galleryGridColom.colom1 img
{
	height: 505px;
}
.gallerySectionHomePage .galleryGridContainer .galleryGridColom.colom2 img
{
	height: 250px;
}
.gallerySectionHomePage .galleryGridContainer .galleryGridColom.colom3 img
{
	height: 250px;
}
.gallerySectionHomePage .galleryGridContainer .galleryGridColom.colom4 img
{
	height: 250px;
}
.gallerySectionHomePage .galleryGridContainer .galleryGridColom.colom5 img
{
	height: 250px;
}


}

.gallerySectionHomePage .galleryGridContainer .galleryGridColom .imageWrapper
{
	position: relative;
	display: block;
	cursor: auto;
}
.gallerySectionHomePage .galleryGridContainer .galleryGridColom .imageWrapper:before
{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color:rgba(0 0 0 / 40%);
	z-index: 2;
	transform: scale(.8);
	transition: .3s;
	opacity: 0;
	visibility: hidden;
}
.gallerySectionHomePage .galleryGridContainer .galleryGridColom:hover .imageWrapper:before
{
	transform: scale(1);
	opacity: 1;
	visibility: visible;
}


.gallerySectionHomePage .heading2
{
	text-align: center;
	margin-bottom: 25px;
}
.gallerySectionHomePage .heading2 .medHeading
{
	font-size:30px;
	line-height: 30px;
	margin-bottom: 20px;
	font-weight: 500;
	text-transform: uppercase;
	color: #111;
}


.galelrySection .headingOnly
{
	text-align: center;
	margin-bottom: 20px;
}
.galelrySection .headingOnly h6
{
    font-size: 16px;
    line-height: 20px;
    color: var(--black);
    letter-spacing: 0px;
    margin: 0 0 3px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Work Sans', sans-serif;
}
.galelrySection .headingOnly .heading
{
	font-size: 40px;
	line-height: 40px;
    color:var(--color1);
    letter-spacing: 1px;
    margin: 0 0 25px;
    font-weight: 400;
    white-space: pre-line;
}

/*
	*****************************************
*/
.map_details_address
{
	margin-top: 40px;
}
.map_details_address .splitScreenRow
{
	display: grid;
	grid-template-columns: 60% 40%;
}
.map_details_address .splitScreenRow .locaitonMap
{
	line-height: 0;
}
.map_details_address .splitScreenRow .detailBox
{
	background-color: #eee;
	padding: 50px 50px;
}
.map_details_address .splitScreenRow .detailBox .headingOnly h6
{
    font-size: 16px;
    line-height: 20px;
    color: var(--black);
    letter-spacing: 0px;
    margin: 0 0 3px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Work Sans', sans-serif;
}
.map_details_address .splitScreenRow .detailBox .headingOnly .heading
{
	font-size: 40px;
	line-height: 45px;
    color:var(--color1);
    letter-spacing: 1px;
    margin: 0 0 25px;
    font-weight: 400;
    white-space: pre-line;
}
.map_details_address .splitScreenRow .detailBox .addressWrapperRow .addressRow
{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin-bottom: 20px;
	align-items: center;
}
.map_details_address .splitScreenRow .detailBox .addressWrapperRow .addressRow:last-child
{
	margin-bottom: 0;
}	
.map_details_address .splitScreenRow .detailBox .addressWrapperRow .addressRow .icon
{
	width: 50px;
	height: 50px;
}
.map_details_address .splitScreenRow .detailBox .addressWrapperRow .addressRow .icon i
{
	color: var(--white);
	text-align: center;
	display: block;
	line-height: 50px;
	background-color: var(--color2);
	border-radius: 50%;
}
.map_details_address .splitScreenRow .detailBox .addressWrapperRow .addressRow .value
{
	flex: 0 0 auto;
	width: calc(100% - 50px);
	padding-left: 15px;
}
.map_details_address .splitScreenRow .detailBox .addressWrapperRow .addressRow .value.add
{
	white-space: pre-line;
}
.map_details_address .splitScreenRow .detailBox .addressWrapperRow .addressRow .value
{
	font-size: 18px;
	line-height: 24px;
	font-weight: 500;
	color: var(--black);
}

/*
	***************************
*/

.copyrightText
{
	background-color: var(--black);
	padding: 35px;
}
.copyrightText p
{
	max-width: 90%;
    margin: auto;
    text-align: justify;
    font-size: 14px;
    color: var(--white);
    font-weight: 200;
    font-family: 'Poppins';
    line-height: 23px;
    margin-bottom: 0;
}
.copyrightText p span
{
    font-family: 'Poppins';
	display: inline-block;
	font-weight: 600;
	margin-right: 5px;
}
.call-us-button {
    position: fixed;
    bottom: 0;
    left: 20px;
    z-index: 20;
    width: 180px;
    animation: abc1 2s infinite alternate-reverse;
    -webkit-animation: abc1 2s infinite alternate-reverse;
}

.homeBanner
{
	position: relative;
}
.homeBanner .headerText
{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-image:linear-gradient(to right, rgba(0 0 0 / 80%), rgba(0 0 0 / 50%), rgba(0 0 0 / 0%));
}
.homeBanner .headerText .headerTextWrapper
{
	position: relative;
	z-index: 5;
	padding-top: 200px;
	padding-left: 100px;
}
.homeBanner .headerText .headerTextWrapper .heading h6
{
	color: var(--white);
	font-family: 'Work Sans';
	text-transform:uppercase;
	font-weight: 700;
	font-size: 18px;
	background-color: var(--color2);
	display: inline-block;
	padding: 7px 15px;
	margin-bottom: 10px;
}
.homeBanner .headerText .headerTextWrapper .heading h4
{	
	margin-top: 5px;
	color: var(--white);
	text-transform:capitalize;
	font-weight: 400;
	font-size: 45px;
	word-spacing: 2px;
	line-height: 45px;
	white-space: pre-line;
	margin-bottom: 15px;
}
.homeBanner .headerText .headerTextWrapper .highlight
{
	display: inline-flex;	
	margin-top: 5px;
	color: var(--white);
	text-transform:capitalize;
	background-color: var(--color1);
	font-weight: 400;
	font-size: 16px;
	margin-bottom: 15px;
	padding: 7px 15px;
}
.homeBanner .headerText .headerTextWrapper .highlight span
{
	display: inline-block;
	margin-right: 15px;
	font-size: 15px;
	position: relative;
	padding-left: 14px;
}
.homeBanner .headerText .headerTextWrapper .highlight span:before
{
	position: absolute;
	left: 0;
	top: 4px;
	content: '';
	width: 5px;
	height: 5px;
	background-color: var(--white);
	border:2px solid var(--white);
	border-radius: 50%;
}
.homeBanner .headerText .headerTextWrapper .highlight span:last-child
{
	margin-right: 0;
}

.homeBanner .headerText .headerTextWrapper .bulltesPoints 
{
	margin-top: 15px;
}
.homeBanner .headerText .headerTextWrapper .bulltesPoints ul
{
	list-style-type: disc;
	padding-left: 20px;
}

.homeBanner .headerText .headerTextWrapper .bulltesPoints ul li
{
	font-weight: 500;
	font-size: 20px;
	color: var(--white);
	margin-bottom: 8px;
}



/*
	**************************************
*/
footer
{
	background-image: var(--callBackBG);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;	
	padding: 40px 0 0px;
	margin-top: 30px;	
}
footer .footerAbout
{
    margin-top: -8px;
    position: relative;
	padding-right: 80px;
}
footer .footerAbout h4
{
	font-size: 25px;
    line-height: 60px;
    color:var(--white);
    letter-spacing: 2px;
    margin: 0 0 20px;
    font-weight: 500;
}
footer .footerAbout p b
{
	font-family: 'Poppins', sans-serif;
	color: #cbc6c6;
	font-weight: 500;
	text-transform: uppercase;
	margin-right: 3px;
}
footer .footerAbout p
{
	font-size: 16px;
    color: #cbc6c6;
    margin: 0;
    text-align: center;
	font-family: 'Poppins', sans-serif;
}

footer .footerAbout .links_pages
{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 15px;
}
footer .footerAbout .links_pages a
{
	font-size: 14px;
    color: #fff;
    margin: 0 10px;
    font-weight: 500;
    text-align: center;
	font-family: 'Poppins', sans-serif;
	transition: .3s;
}
footer .footerAbout .links_pages a:hover
{
	color: var(--color2);
    text-decoration: underline;
}
footer .footerContact h4
{
    font-size: 18px;
    letter-spacing: .72px;
    font-weight: 400;
    color: var(--white);
    line-height: .8;
    margin: 0 0 43px;
    position: relative;
    text-transform: uppercase;
}
footer .footerContact p
{
	margin-bottom: 7px;
	color: var(--aaa);
}
footer .footerContact p.preline
{
	white-space: pre-line;
	margin-bottom: 20px;
}
footer .footerContact .links
{
	display: flex;
	flex-direction: column;
}
footer .footerContact .links a
{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	color: var(--aaa);
	display: block;
	margin-bottom: 5px;
}
footer .footerContact .links a i
{

}
footer .footerContact .links a span
{
	font-weight: 300;
	padding-left: 5px;
}
footer .copyright
{	
    border-top: 1px solid #1a1a1a;
    font-size: 14px;
    line-height: 1.8;
    color: #eee;
    text-align: center;
    text-transform: capitalize;
    padding: 21px 0;
    font-family: 'Poppins', sans-serif;
    max-width: 80%;
    margin: auto;
    font-weight: 300;
	margin-top: 30px;
}
footer .copyright span
{
    font-family: 'Poppins', sans-serif;
    /*font-weight: 500;*/
}
footer .copyright span a
{
	color: var(--white);
	font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

