@import url('https://fonts.googleapis.com/css2?family=Arsenal:wght@400;700&family=Asap+Condensed:wght@200;300;400;500;600;700;800;900&family=Fira+Sans+Condensed:wght@100;200;300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@100;200;300;400;500;600;700;800;900&family=Pridi:wght@200;300;400;500;600;700&family=STIX+Two+Text:wght@400;500;600;700&display=swap');
/*
	Raleway
	Playfair Display
	
	font-family: 'Arsenal', sans-serif; 
	font-family: 'Asap Condensed', sans-serif;
	font-family: 'Fira Sans Condensed', sans-serif;
	font-family: 'Playfair Display', serif;


	font-family: 'Noto Sans', sans-serif;
	font-family: 'Pridi', serif;
	font-family: 'STIX Two Text', serif;

*/
:root
{
	--color1:#0395A2;
	--color2:#FFFF01;
	--white:#fff;
	--black:#000;

}


body
{
	font-family: 'Noto Sans', sans-serif;
	font-size: 14px;
	line-height: 20px;
	word-spacing: 1px;
	color: #666;
	font-weight: 400;
	overflow-x: hidden;
}

.container
{
	max-width: 90%;
}

@media screen and (min-width: 993px)
{
	.col-left-logo .logo_close_icon .close_icons
	{
		display: none;
	}
}


ul
{
	list-style-type: none;
	padding-left: 0;
	margin-bottom: 0;
}
a
{
	text-decoration: none;
}
a:hover
{
	text-decoration: underline;
}
.text-center
{
	text-align: center;
}
.text-left
{
	text-align: left;
}
.text-right
{
	text-align: right;
}

h1,h2,h3,h4,h5,h6
{
	font-family: 'STIX Two Text', serif;
}
/*
===========================================


	
============================================
*/
.navigations
{
	padding: 10px 0;
}
.navigations .container
{
	max-width: 97%;
}
.navigations .custom_nav_rows
{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.navigations .custom_nav_rows .col-left-logo
{
	flex: 0 0 auto;
	align-self: center;
}
.navigations .custom_nav_rows .col-center-navigations
{
	flex: 0 0 auto;
	align-self: center;
}
.navigations .custom_nav_rows .col-right-contact
{
	flex: 0 0 auto;
	align-self: center;
}


.navigations .custom_nav_rows .col-left-logo .logo_anchor
{
	display: inline-block;
	width: 255px;
}
.navigations .custom_nav_rows .col-center-navigations .mainul
{
	display:flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.navigations .custom_nav_rows .col-center-navigations .mainul .mainlist
{
	flex: 0 0 auto;
}
.navigations .custom_nav_rows .col-center-navigations .mainul .mainlist > a 
{
	font-size: 16px;
	font-weight: 500;
	color: #333;
	margin: 20px 11px;
	display: block;
	position: relative;
	padding-bottom: 3px;
}

@media screen and (min-width: 993px)
{

		.navigations .custom_nav_rows .col-center-navigations .mainul .mainlist:hover > a,
		.navigations .custom_nav_rows .col-center-navigations .mainul .mainlist.active > a 
		{
			color: var(--color1);
			text-decoration: none;
		}
		.navigations .custom_nav_rows .col-center-navigations .mainul .mainlist:last-child > a 
		{
			margin-right: 0;
		}
		.navigations .custom_nav_rows .col-center-navigations .mainul .mainlist:first-child > a 
		{
			margin-left: 0;
		}
		.navigations .custom_nav_rows .col-center-navigations .mainul .mainlist > a:before
		{
			content: '';
			position: absolute;
			bottom: 0;
			left: 50%;
			transform: translateX(-50%);
			width: 0%;
			height: 2px;
			transition: .3s;
			background-color: var(--color1);
		}
		.navigations .custom_nav_rows .col-center-navigations .mainul .mainlist.active > a:before,
		.navigations .custom_nav_rows .col-center-navigations .mainul .mainlist:hover > a:before
		{
			width: 100%;

		}
		.navigations .custom_nav_rows .col-center-navigations .mainul .mainlist.dropdown1 .submenu1
		{
			opacity: 0;
			visibility: hidden;
			transform-origin: top center;		
		}
		.navigations .custom_nav_rows .col-center-navigations .mainul .mainlist.dropdown1:hover .submenu1
		{
			opacity: 1;
			visibility: visible;
		}
}

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


.navigations .custom_nav_rows .col-center-navigations .mainul .mainlist.dropdown1 
{
	position: relative;
	z-index: 5;
}
.navigations .custom_nav_rows .col-center-navigations .mainul .mainlist.dropdown1 .submenu1
{
	background-color: var(--white);
	padding: 15px;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 550px;
	border-radius:0 0 8px 8px;
	transition: .3s;
}
.navigations .custom_nav_rows .col-center-navigations .mainul .mainlist.dropdown1 .submenu1 .collections_row
{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.navigations .custom_nav_rows .col-center-navigations .mainul .mainlist.dropdown1 .submenu1 .collections_row .lists
{
	flex: 0 0 auto;
	width: 180px;
}
.navigations .custom_nav_rows .col-center-navigations .mainul .mainlist.dropdown1 .submenu1 .collections_row .submenu_image
{
	flex: 0 0 auto;
	width: calc(100% - 180px);
}
.navigations .custom_nav_rows .col-center-navigations .mainul .mainlist.dropdown1 .submenu1 .collections_row .lists ul li
{
	margin-bottom: 10px;
}
.navigations .custom_nav_rows .col-center-navigations .mainul .mainlist.dropdown1 .submenu1 .collections_row .lists ul li a
{
	color: #555;
	text-decoration: none;
	font-weight: 500;
	font-size: 15px;
	display: block;
	transition: .3s;
}
.navigations .custom_nav_rows .col-center-navigations .mainul .mainlist.dropdown1 .submenu1 .collections_row .lists ul li:hover a
{
	color: var(--color1);
	font-weight: 600;
	padding-left: 10px;
	text-decoration: underline;
}
.navigations .custom_nav_rows .col-center-navigations .mainul .mainlist.dropdown1 .submenu1 .collections_row .submenu_image img
{
	border-radius: 8px;
}
/*
	============================
*/

.navigations .custom_nav_rows .col-right-contact a
{
	display: inline-flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	text-decoration: none;
}
.navigations .custom_nav_rows .col-right-contact a i
{
	flex: 0 0 auto;
	font-size: 1.7em;
	color: var(--color1);
}
.navigations .custom_nav_rows .col-right-contact a .values 
{
	flex: 0 0 auto;
	font-size: 16px;
	font-weight: 600;
	color: #333;
	margin: 18px 11px;
	margin-left: 5px;
	display: block;
	position: relative;
	padding-bottom: 3px;
}
.navigations .custom_nav_rows .col-right-contact a .values .head
{
	display: block;
	font-size: 14px;
	line-height: 20px;
	color: #808080;
	font-weight: 400;
}
/*
	***********************************
*/

#slideControl .carousel-item img
{
	width: 100%;
	/*height: 450px;*/
	/*object-fit: cover;*/
	/*object-position: bottom;*/
}
/*#slideControl .carousel-item: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 / 20%),rgba(0 0 0 / 80%));
}*/
#slideControl .carousel-item .carousel-caption
{
	bottom: 10px;
	padding-bottom: 10px;
}
#slideControl .carousel-item .carousel-caption h5
{
	padding: 10px 20px;
	border-radius: 7px;
	font-size: 30px;
	font-weight: 300;
	font-family: 'Playfair Display', serif;
	text-shadow: 2px 2px 5px rgba(0 0 0 / 30%);
	background-color: rgba(0 0 0 / 80%);
	display: inline-block;
}
#slideControl .carousel-control-prev,
#slideControl .carousel-control-next
{
	width: 5%;
	opacity: 1;
}
#slideControl .carousel-control-prev .carousel-control-prev-icon,
#slideControl .carousel-control-next .carousel-control-next-icon
{
	width: 40px;
	height: 40px;
	border-radius: 5px;
	background-color: #000;
	background-size: 60%;
}

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

section.icon_box_section
{
	margin-top: 50px;
	margin-bottom: 20px;
}
section.icon_box_section .iconBoxRow
{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
section.icon_box_section .iconBoxRow .iconBoxColm
{
	flex: 0 0 auto;
	width: calc(25% - 30px);
	margin: 0 15px;
	display: flex;
	flex-direction: row;
}
section.icon_box_section .iconBoxRow .iconBoxColm .icon
{
	flex: 0 0 auto;
	width: 80px;
	height: 80px;
	border: 1px dashed var(--color1);
	border-radius: 50%;
	text-align: center;
}
section.icon_box_section .iconBoxRow .iconBoxColm .icon i
{
	padding: 10px;
	font-size: 39px;
	line-height: 80px;
	color: var(--color1);
}
section.icon_box_section .iconBoxRow .iconBoxColm .values
{
	align-self: center;
	padding-left: 10px;
	display: flex;
	flex-direction: column;	
}
section.icon_box_section .iconBoxRow .iconBoxColm .values span:first-child
{
	font-size: 20px;
	font-family: 'Playfair Display', serif;
	color: #222;
	font-weight: 600;
	margin-bottom: 5px;
}
section.icon_box_section .iconBoxRow .iconBoxColm .values span:last-child
{
	font-size: 15px;
	color: #666;
	font-weight: 500;
	margin-bottom: 5px;
}

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

section.profile-section
{
	margin-top: 40px;
	margin-bottom: 30px;
}
section.profile-section .desc
{
	max-width: 75%;
	margin: auto;
}
section.profile-section .desc p
{
	text-align: center;
	line-height: 24px;
	margin-bottom: 10px;
	font-size: 15px;
}
section.profile-section .desc p.style
{
	font-size: 20px;
	font-style: italic;
	font-weight: 400;
	margin-bottom: 15px;
}

body.aboutuspage .profile-section .sideimagebox
{
	float: right;
	max-width: 450px;
	margin-left: 25px;
	position: relative;
	margin-top: 20px;
}
body.aboutuspage .profile-section .sideimagebox:before
{
	position: absolute;
	content: '';
	width: 95%;
	height:95%;
	top: -4%;
	left:7%;
	border: 5px solid var(--white);
	outline: 7px solid var(--color1);
	z-index: 1;
	border-radius: 7px;
}
body.aboutuspage .profile-section .sideimagebox img
{
	border-radius: 7px;
	position: relative;
	z-index: 2;
	box-shadow: 0 0 5px 5px rgba(0 0 0 / 5%);
}
body.aboutuspage .profile-section .heading01
{
	text-align: left;
}
body.aboutuspage .profile-section .desc
{
	max-width: 100%;
}
body.aboutuspage .profile-section .desc p
{
	text-align: left;
	text-align: justify;
}

section.profile-section .desc h6
{
	margin-top: 20px;
	color: #333;
	font-size: 20px;
	font-family: 'Noto Sans', sans-serif;
	font-weight: 700;
}

/*
	**********************************
*/
section.categories-section .container
{
	max-width: 95%;
}
section.categories-section .heading01 h3
{
	/*color: var(--white);*/
}
section.categories-section .heading01 h3:after
{
	/*border-top-color: var(--white);*/
	/*border-bottom-color: var(--white);*/
}
section.categories-section
{
	margin-top: 30px;
	padding: 40px 0;
	/*background-color: var(--color1);*/
	background-color: #f9feff;
}
section.categories-section .categories_row
{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin-top: 15px;
	justify-content: center;
}
body.collectionsPages section.categories-section .categories_row
{	
	justify-content: flex-start;
}
section.categories-section .categories_row .category_colom
{
	flex: 0 0 auto;
	width: calc(33.333% - 30px);
	margin: 0 15px 25px;
}
section.categories-section .categories_row .category_colom .image
{
	position: relative;
	overflow: hidden;
}
section.categories-section .categories_row .category_colom .image .stretched-link:after
{
	z-index: 8;
}
section.categories-section .categories_row .category_colom .image img
{
	transition: .5s;
}
section.categories-section .categories_row .category_colom .image:hover img
{
	transform: scale(1.1);
}
section.categories-section .categories_row .category_colom .image:before
{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
	background-image: linear-gradient(to bottom, rgba(0 0 0 / 0%), rgba(0 0 0 / 0%), rgba(0 0 0 / 20%), rgba(0 0 0 / 90%));
}
body.infrastructure_page section.categories-section .categories_row .category_colom .image:before
{
	display: none;
}
section.categories-section .categories_row .category_colom .image .text{
	position: absolute;
	bottom: 25px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 21;
}

body.infrastructure_page section.categories-section .categories_row .category_colom .image .text{
	z-index: 6 !important;
}
section.categories-section .categories_row .category_colom .image .text a
{
	color: var(--black);
	font-family: 'Playfair Display', serif;
	font-size: 20px;
	font-weight: 500;
	text-decoration: none;	
	/*background-color: var(--white);*/
	padding: 8px 20px;
	white-space: nowrap;
}
section.categories-section .categories_row .category_colom.video .image .text a
{
	color: var(--black);
	font-family: 'Playfair Display', serif;
	font-size: 20px;
	font-weight: 500;
	text-decoration: none;	
	background-color: var(--white);
	padding: 8px 20px;
	white-space: nowrap;
}
body.infrastructure_page section.categories-section
{
	margin-top: 0;
}
body.infrastructure_page section.categories-section .categories_row .category_colom .image{
    overflow:hidden;
}
body.infrastructure_page section.categories-section .categories_row .category_colom .image img
{
	height: 259px;
	width: 100%;
	object-fit: cover;
	object-position: top;
}
body.infrastructure_page section.categories-section .categories_row .category_colom .text
{
	position: static;
	transform:translateX(-0%);
}
body.infrastructure_page section.categories-section .categories_row .category_colom .text a
{
	display: block;
	width: 100%;
	text-align: center;
	padding: 12px 20px;
	/*background-color: var(--w);*/
	color: var(--black);
	font-family: 'Noto Sans', sans-serif;
	font-size: 16px;
	font-weight: 700;
}

body.collectionsPages section.categories-section .categories_row .category_colom .image img
{
	height: 100% !important;
}
/*
	**************************
*/

.heading01
{
	text-align: center;
}
.heading01 h3
{
	display: inline-block;
	margin-bottom: 20px;
	font-family: 'Playfair Display', serif;
	font-size: 30px;
	position: relative;
	padding-bottom: 23px;
	color: #111;
}
.heading01 h3:before
{
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 21px;
    height: 21px;
    background-color: var(--color1);
    border: 5px solid var(--white);
    z-index: 4;
}
.heading01 h3:after
{
	content: '';
	position: absolute;
	bottom: 7px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 200px;
	height:3px;
	border-top: 1px solid var(--color1);
	border-bottom: 1px solid var(--color1);
}

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

.subscribe
{
	max-width: 95%;
	margin:50px auto 0;
	padding: 70px 0;
	background-size: 100%;
	background-color: #000;
	background-repeat: no-repeat;
	border-radius: 8px;
	position: relative;
	z-index: 2;
}
.subscribe .container_subscribe .subscribe_content
{
	max-width: 36%;
	margin-left: auto;
	margin-right: 40px;
}
.subscribe .container_subscribe .subscribe_content h6
{
	font-size: 16px;
	text-transform: uppercase;
	font-family: 'Noto Sans', sans-serif;
}
.subscribe .container_subscribe .subscribe_content h4
{
	font-size: 40px;
	color: #000;
}
.subscribe .container_subscribe .subscribe_content .form_subscribe
{
	background-color: var(--white);
	padding: 5px;
	border-radius: 7px;
}
.subscribe .container_subscribe .subscribe_content .form_subscribe form
{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.subscribe .container_subscribe .subscribe_content .form_subscribe form .input_value
{
	flex: 0 0 auto;
	width: 90%;
	border: 0px;
	color: #111;
	font-weight: 500;
	font-size: 14px;
}
.subscribe .container_subscribe .subscribe_content .form_subscribe form .input_value:focus
{
	box-shadow: none;
}
.subscribe .container_subscribe .subscribe_content .form_subscribe form .form-submit
{
	flex: 0 0 auto;
	width: 10%;
	font-family: bootstrap-icons!important;
	border: 0px;
	background-color: var(--color1);
	border-radius: 5px;
	color: var(--white);
}

/*
	*************************************
*/
footer
{
	background-color: #333;
	padding-top: 50px;
	padding-bottom: 30px;
	position: relative;
	margin-top: 0px;
	z-index: 1;
	position: relative;
}
footer .footer_container
{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 95%;
	margin: auto;
}
footer .footer_container .colom
{
	flex: 0 0 auto;
}
footer .footer_container .colom.ftr_colom1
{
	width: 20%;
}
footer .footer_container .colom.ftr_colom2
{
	width: 13%;
}




footer .footer_container .colom.ftr_colom1 .logo
{
	text-align: center;
	margin-bottom: 10px;
}
footer .footer_container .colom.ftr_colom1 .logo img
{
	width: 200px;
}
footer .footer_container .colom.ftr_colom1 .footer_profile p
{
    font-size: 14px;
    color: #eee;
    font-weight: 400;
    text-align: justify;
    line-height: 24px;
}
footer .footer_container .colom.ftr_colom2 .footer_links
{
	padding-top: 40px;
}
footer .footer_container .colom.ftr_colom2 .footer_links h5
{
	/*color: #fff; */
    color: #06c6d7;
    font-family: 'Playfair Display', serif;
    /* font-family: 'Noto Sans', sans-serif; */
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 12px;
}
footer .footer_container .colom.ftr_colom2 .footer_links ul
{

}
footer .footer_container .colom.ftr_colom2 .footer_links ul li
{
	margin-bottom: 8px;
}
footer .footer_container .colom.ftr_colom2 .footer_links ul li a
{
	display: block;
	color: #eee;
	font-weight: 300;
	font-size: 14px;
	text-decoration: none;
	transition: .3s;
	position: relative;
}
footer .footer_container .colom.ftr_colom2 .footer_links ul li a:before{
	content:'\F231';
	font-family: bootstrap-icons!important;
	color: #06c6d7;
	padding-right: 3px;
}
footer .footer_container .colom.ftr_colom2 .footer_links ul li:hover a
{
	margin-left: 10px;
}


footer .footer_container .colom.ftr_colom4 
{
	padding-top: 40px;
}
footer .footer_container .colom.ftr_colom4 h5
{
    color: #06c6d7;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 12px;	
}
footer .footer_container .colom.ftr_colom4 .footer_links .address_area
{
	margin-bottom: 10px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
footer .footer_container .colom.ftr_colom4 .footer_links .address_area .icon
{
	color:#06c6d7;
	flex: 0 0 auto;
	width: 23px;
}
footer .footer_container .colom.ftr_colom4 .footer_links .address_area .values
{
	flex: 0 0 auto;
}
footer .footer_container .colom.ftr_colom4 .footer_links .address_area .values
{
	color: #eee;
	font-weight: 300;
	font-size: 14px;
	line-height: 21px;
}

/*
	*****************************
*/
.copyright
{
	padding: 8px 0;
	background-color: var(--color1);
	color: var(--white);
	text-align: center;
	font-weight: 400;
	font-size: 13px;
}


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


section.innerBanner
{
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 250px;
	position: relative;
}
section.innerBanner:before
{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/*background-color: rgba(0 0 0 / 20%);*/
}
section.innerBanner .innerBanner_container
{
	position: absolute;
	bottom: 40px;
	left: 0;
	width: 100%;
	z-index: 4;
}
section.innerBanner .innerBanner_container h5
{
	text-align: center;
	color: var(--white);
	font-weight: 700;
	font-size: 32px;
	letter-spacing: 1px;
	text-shadow: 2px 2px 5px rgba(0 0 0 / 30%);
}

/*
802	==========================
*/


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

section.contact-page-section
{
	background-color: #fff;
	padding-top: 30px;
	padding-bottom: 50px;
}

.address__row
{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	background-color: var(--white);
	box-shadow: 0 15px 15px 10px rgba(0 0 0 / 5%);
	margin-bottom: 10px;
	padding:25px 20px;
	border: 1px solid #eaeaea;
}
.address__row .icon
{
	flex: 0 0 auto;
	width: 70px;
}
.address__row .icon i
{
	text-align: center;
	line-height: 50px;
	font-size: 2em;
	color: var(--white);
	width: 50px;
	height: 50px;
	/*background-image:linear-gradient(90deg,#00306e 0%,#4478eb 100%);*/
	background-color: var(--color1);
	border-radius: 50%;
	transition: .1s;
}
.address__row:hover .icon i
{
	transform: scale(1.05);
}
.address__row .value
{
	flex: 0 0 auto;
	width: calc(100% - 70px);
}
.address__row .value h6
{
	text-transform: uppercase;
	font-weight: 700;
	font-size: 16px;
	margin-bottom: 5px;
}
.address__row .value p
{
	margin-bottom: 0;
	font-weight: 500;
	font-size: 16px;
	color: #555;
}

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

.contact_form_area
{
	padding-left: 30px;
}
.contact_form_area .form_container
{
	border-radius: 10px;
    padding: 20px 50px;
    background-image:linear-gradient(90deg,#00306e 0%,#4478eb 100%);
}
.contact_form_area .form_container .heading h4
{
	color: var(--white);
	font-weight: 800;
	margin-bottom: 15px;
	font-size: 29px;
}
.contact_form_area .form_container .my__input .inputControl:focus
{
	box-shadow: none;
	outline: none;
}
.contact_form_area .form_container .my__input .inputControl
{
	padding: 22px 10px 6px;
	font-weight: 600;
	color: #333;
}
.contact_form_area .form_container .my__input
{
	position: relative;
	margin-bottom: 15px;
}
.contact_form_area .form_container .my__input label
{
	position:absolute;
	top: 12px;
	left: 15px;
	font-weight: 600;
	color: #666;
	font-size: 16px;
	transition: .3s;
}

.contact_form_area .form_container .my__input .inputControl:focus+label
{
	top: 0px;
	left: 10px;
	font-size: 13px;
	color: blue;
}

.contact_form_area .form_container .my__input .inputControl:valid+label
{
	top: 0px;
	left: 10px;
	font-size: 13px;
	color: blue;
}
.contact_form_area .form_container .submit_buttons
{
	text-align: center;
}
.contact_form_area .form_container .submit_buttons input
{
    display: inline-block;
    text-align: center;
    background-color: var(--color1);
    box-shadow: 15px 15px 38px 0 rgb(0 0 0 / 20%);
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    padding: 8px 35px;
    border-radius: 20px;
    transition: .3s;
    border: 0;
}
.contact_form_area .form_container .submit_buttons input:hover
{
	background-color: var(--color2);
}

.contact-page-section .heading01 h4
{
    font-weight: 800;
    font-size: 30px;
    position: relative;
    padding-bottom: 4px;
    margin-bottom: 27px;
    display: inline-block;
}
.contact-page-section .heading01 h4:before,
.contact-page-section .heading01 h4:after
{
	height: 3px;
}

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

section.map
{
	line-height: 0;
	height: 350px;
}

@media screen and (min-width: 993px)
{
	section.map
	{
		height: 360px;
	}
}
@media screen and (max-width: 577px)
{
	.headingForLocation
	{
		margin-top: 20px;
	}
}

.offer_banner_home img
{
	width: 100%;
}


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

section.form_contact
{
	background-image: url(../img/enquiry.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
section.form_contact .custom_conainer
{
	background-color:rgb(10 124 134 / 88%);
	padding: 45px 0;
}
.form_enquiry #contact-form
{

}
.form_enquiry #contact-form .form-groups
{
	margin-bottom: 18px;
}
.form_enquiry #contact-form .form-groups label
{
	font-weight: 400;
	margin-bottom: 8px;
	color: var(--white);
	font-size: 16px;
}
.form_enquiry #contact-form .form-groups .inputs
{
	border-radius: 5px;
	padding: 8px 10px;
}
.form_enquiry #contact-form .form-groups .inputs:focus
{
	box-shadow: none;
}
.form_enquiry #contact-form .captcha_image
{
	margin-top: 25px;
}
.form_enquiry #contact-form .btn-outline-primary
{
	margin-top: 10px;
	color: var(--white);
	border:0px;
	background-color: var(--black);
	border-radius: 0;
	padding: 10px 30px;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1px;
	transition: .3s;
}
.form_enquiry #contact-form .btn-outline-primary:hover
{
	transform: scale(1.06);
}
section.form_contact .heading01
{
	text-align: center;
}
section.form_contact .heading01 h5
{
	color: var(--white);
	font-size: 29px;
	font-weight: 700;
	position: relative;
	display: inline-block;
	padding-bottom: 5px;
	margin-bottom: 25px;
}
section.form_contact .heading01 h5:before
{
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 70px;
	height: 4px;
	background-color: var(--color4);
}

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

.categories_row.video_gallery_row .category_colom .image iframe
{
	height: 270px;
}

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

body.aboutuspage .profile-section
{

}
body.video_gallery_page .categories-section
{
	margin-top: 0;
	background-color: #fff;
}
body.video_gallery_page section.categories-section .categories_row
{
	margin-top: 0;
}
body.video_gallery_page .youtube-link, 
body.video_gallery_page .youtube-link-dark
{
	display: inherit !important;
}

/*
	*********************************
*/
body.collectionsPages .categories-section
{

}
body.collectionsPages section.categories-section .categories_row .category_colom
{
	margin: 0 5px 15px;
	width: calc(25% - 10px);
}
body.collectionsPages section.categories-section .login_links
{
	text-align: center;
	margin-top: 30px;
}
body.collectionsPages section.categories-section .login_links a
{
	display: inline-block;
	background-color: #222;
	font-weight: 500;
	font-size: 15px;
	text-decoration: none;
	padding: 14px 30px;
	border-radius: 25px;
	border:2px solid #fff;
	outline: 5px solid #222;
	color: var(--white);
	transition: .2s;
}
body.collectionsPages section.categories-section .login_links a:hover
{
	box-shadow: 0 0 10px 5px rgba(0 0 0 / 20%);
	outline: 5px solid var(--color1);
	color: var(--white);
	background-color: var(--color1);
}
body.collectionsPages section.categories-section .categories_row
{
	margin-top: 0;
}

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

.about_side_bar
{
	position: sticky;
	top:25px;
}
.about_side_bar .links
{
	/*background-color: #fff;*/
}
.about_side_bar .links .sideMenu
{
	padding:0px;
	max-height: 600px;
	overflow-y: auto;
}
.about_side_bar .links .sideMenu::-webkit-scrollbar
{
	width: 4px;
}
.about_side_bar .links .sideMenu::-webkit-scrollbar-track
{
	background-color: #ccc;
	border-radius: 8px;
}
.about_side_bar .links .sideMenu::-webkit-scrollbar-thumb
{
	background-color: #333;
	border-radius: 8px;
}


.about_side_bar .links .sideMenu li
{
	margin: 0px 0px 5px;
}
.about_side_bar .links .sideMenu li a
{
	display: block;
	background-color: #fff;
	border: 1px solid #fcf7f7;
	padding: 15px 15px;
	font-size: 15px;
	color: #333;
	font-weight: 500;
	text-decoration: none;
	position: relative;
	display: flex;
	justify-content: space-between;
	box-shadow: 0 0 5px 1px rgba(0 0 0 / 4%);
}
.about_side_bar .links .sideMenu li a span
{
	display: block;
	position: relative;
	z-index: 2;
}

.about_side_bar .links .sideMenu li a i
{
	font-size: 1.5em;
}
.about_side_bar .links .sideMenu li a:before
{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0%;
	height: 100%;
	background-color: var(--color4);
	transition: .2s;
}
.about_side_bar .links .sideMenu li:hover a,
.about_side_bar .links .sideMenu li.active a
{
	background-color: var(--color1);
}
.about_side_bar .links .sideMenu li:hover a:before
{
	width: 100%;
}
.about_side_bar .links .sideMenu li:hover a span
{
	color: var(--color1);
}
.about_side_bar .links .sideMenu li a i
{
	position: relative;
	z-index: 2;
}

.about_side_bar .links .sideMenu li:hover a:before,
.about_side_bar .links .sideMenu li.active a:before
{
	width: 100%;
}
.about_side_bar .links .sideMenu li:hover a i,
.about_side_bar .links .sideMenu li.active a i
{
	color: var(--white);
}

.about_side_bar .links .sideMenu li:hover a span,
.about_side_bar .links .sideMenu li.active a span
{
	color: var(--white);
}

.about_side_bar .heading05 h5
{
	font-size: 25px;
	font-weight: 700;
	margin-bottom: 15px;
}



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

section.login_register_section
{
	background-color: #f7f7f7;
	padding-top: 60px;
	padding-bottom:60px;
}
section.breadcrumbs_section.login_register_section{
	background-color:#e5e5e5;
}
section.login_register_section .custom_dialogue_box
{
	    background-color: #fff;
	    max-width: 500px;
	    margin: auto;
	    box-shadow: 0 0 5px 10px rgb(0 0 0 / 5%);
	    border: 1px solid #eaeaea;
}
section.login_register_section .custom_dialogue_box .padding_box
{
	padding:30px 30px;
}
section.login_register_section .custom_dialogue_box .padding_box .page_heading_row
{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
section.login_register_section .custom_dialogue_box .padding_box .page_heading_row a
{
	flex:0 0 auto;
	width: calc(50% - 5px);
	text-align: center;
	color: #666;
	font-weight: 700;
	text-transform: uppercase;
	position: relative;
	padding: 5px 10px 10px;
	text-decoration: none;
	font-size: 15px;
}
section.login_register_section .custom_dialogue_box .padding_box .page_heading_row a:hover,
section.login_register_section .custom_dialogue_box .padding_box .page_heading_row a.active
{
	color: #111;
}
section.login_register_section .custom_dialogue_box .padding_box .page_heading_row a.active
{
	font-weight: 700;
}
section.login_register_section .custom_dialogue_box .padding_box .page_heading_row a:before
{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background-color: #eaeaea;
}
section.login_register_section .custom_dialogue_box .padding_box .page_heading_row a:after
{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0%;
	height: 2px;
	background-color: #111;
	transition: .5s;
}
section.login_register_section .custom_dialogue_box .padding_box .page_heading_row a:hover:after,
section.login_register_section .custom_dialogue_box .padding_box .page_heading_row a.active:after
{
	width: 100%;
}
section.login_register_section .custom_dialogue_box .padding_box .page_heading_row a.signin
{
	margin-right: 5px;
}
section.login_register_section .custom_dialogue_box .padding_box .page_heading_row a.signup
{
	margin-left: 5px;
}

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

.login_register_section .custom_dialogue_box .form-area
{
	padding: 23px 10px;
}
.login_register_section .custom_dialogue_box .form-area .form_row
{
	margin-bottom: 15px;
}
.login_register_section .custom_dialogue_box .form-area .form_row label
{
	font-size: 14px;
	font-weight: 500;
	color: #888;
	line-height: 12px;
	margin-bottom: 10px;
}
.login_register_section .custom_dialogue_box .form-area .form_row .input_fields
{
	border-radius: 2px;
}
.login_register_section .custom_dialogue_box .form-area .form_row .input_fields:focus
{
	box-shadow: none;
	border-color: #444 !important;
}
.login_register_section .custom_dialogue_box .form-area .captcha_row
{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.login_register_section .custom_dialogue_box .form-area .captcha_row .form_row
{
	flex: 0 0 auto;
	width: calc(70% - 10px);
	margin-right: 10px;
}
.login_register_section .custom_dialogue_box .form-area .captcha_row .captcha_image
{
	flex: 0 0 auto;
	width: calc(30% - 5px);
	margin-left: 5px;
	align-self: center;
}
.login_register_section .custom_dialogue_box .form-area .submit_btn .signin
{
	display: block;
	width: 100%;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 600;
	line-height: 16px;
	color: #fff;
	background-color: var(--color1);
	padding: 10px;
	border: 2px solid var(--color1);
}
.login_register_section .custom_dialogue_box .form-area .submit_btn .signin:hover
{
	background-color: #fff;
	color: var(--color1);
	border: 2px solid var(--color1);
}
.login_register_section .custom_dialogue_box .form-area .submit_btn
{
	margin-top: 10px;
}
.login_register_section .custom_dialogue_box .form-area .signup-link
{
	text-align: center;
	font-size: 14px;
	margin-top: 15px;
	font-weight: 500;
	line-height: 22px;
	margin-bottom: 0px;
	color: #666;
}

.login_register_section .custom_dialogue_box .form-area .signup-link a
{
	font-weight: 500;
}

.fancybox-opened .fancybox-title
{
	text-align: center;
	font-size: 17px;
	font-family: 'Roboto';
	font-weight: 600;
}


@media screen and (min-width:481px) and (max-width:576px)
{
	body.collectionsPages section.categories-section .categories_row .category_colom
	{
		width: calc(50% - 10px) !important;
		border:1px solid #eaeaea;
	}
	body.collectionsPages section.categories-section .categories_row .category_colom .image img
	{
		height: 260px !important;
		object-fit: contain !important;	
	}
}
body.collectionsPages section.categories-section .categories_row .category_colom .image img
{
	height: 318px !important;
	object-fit: contain !important;	
	object-position:center;
}

@media screen and (min-width:577px) and (max-width:767px)
{
	body.collectionsPages section.categories-section .categories_row .category_colom
	{
		width: calc(50% - 10px) !important;
		border:1px solid #eaeaea;
	}
	body.collectionsPages section.categories-section .categories_row .category_colom .image img
	{
		height: 340px !important;
		object-fit: contain !important;	
	}
}

@media screen and (min-width:768px) and (max-width:992px)
{
	body.collectionsPages section.categories-section .categories_row .category_colom
	{
		width: calc(33.333% - 10px) !important;
		border:1px solid #eaeaea;
	}
	body.collectionsPages section.categories-section .categories_row .category_colom .image img
	{
		height: 340px !important;
		object-fit: contain !important;	
	}
}