@font-face {
	font-family: "HelveticaNeueCondensedBold";
	src: url("assets/fonts/HelveticaNeueLTStd-77BoldCondensed.woff") format("woff");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "Avenir Next";
	src: url("../fonts/AvenirNextLTPro-Regular.woff") format("woff2");
}

@font-face {
	font-family: "Avenir-bold";
	src: url("../fonts/Avenir Next LT Pro Bold.otf");
}


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Avenir Next";
	color: #0F172A;
}

.header {
	position: fixed;
	width: 100%;
	z-index: 2;
	top: 5%;
	transition: all 0.3s ease;
}

.header.scrolled {
	position: fixed;
	top: 0;
	left: 0;
	transform: none;
	width: 100%;
}

.header.scrolled .container {
	max-width: 100%;
	width: 100%;
	padding: 0;
	z-index: 100;
	position: relative;
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 5px 40px;
	transition: all 0.3s ease;
	background: #ffffffe1;
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 20px rgb(0 0 0 / 34%);
	border-radius: 5px;
}

.header.scrolled nav {
	border-radius: 0;
	padding: 10px 40px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo-img {
	max-height: 60px;
}

.right-nav-block {
	display: flex;
	align-items: center;
	gap: 50px;
}

nav ul {
	display: flex;
	list-style: none;
	gap: 30px;
	margin-top: 15px;
	align-items: center;
}

nav ul a {
	text-decoration: none;
}

nav ul li {
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	transition: 0.3s;
	cursor: pointer;
}


nav ul a:hover {
	color: #9c1b20;
}

.item {
	color: #1d1b1b;
}

.nav-menu li a {
	position: relative;
	display: inline-block;
}

.nav-menu li a::after {
	content: "";
	background-color: #9c1b20;
	height: 2px;
	width: 0;
	position: absolute;
	left: 0;
	bottom: -5px;
	transition: 0.3s;
}

.nav-menu li:hover a::after {
	width: 70%;
}

nav div:last-child img {
	width: 30px;
	cursor: pointer;
	display: block;
}

.sidebar {
	position: fixed;
	top: 0;
	right: -100%;
	width: 40%;
	height: 100vh;
	background: #ffffff;
	padding: 30px;
	transition: 0.4s ease;
	z-index: 1000;
	overflow-y: auto;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.sidebar.active {
	right: 0;
}

.sidebar-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.close-btn {
	font-size: 45px;
	cursor: pointer;
}

.contact-item img {
	width: 20px;
	height: 20px;
}

.contact-item {
	padding-left: 10px;
}

.contact-item span {
	display: flex;
	align-items: center;
	gap: 10px;
}

.contact-item a{
	color: #0F172A;
	text-decoration: none;
}

.sidebar-content h2 {
	margin: 30px 0px;
	font-size: 24px;
	position: relative;
	font-family: "HelveticaNeueCondensedBold";
}

.sidebar-content p {
	margin-top: 15px;
	color: #666;
	line-height: 1.6;
	padding-left: 10px;
}

.sidebar-content button {
	margin-left: 10px;
}

.contact-heading {
	margin-top: 40px;
}


.sidebarul {
	display: none;
}

.hero-section {
	background-image: url('../images/0Irvv38w.jpeg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 230px 0px 0px 0px;
}


.hero-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.55);
}

.hero-content {
	position: relative;
	color: white;
	text-align: start;
	z-index: 1;
	width: 95%;
}

.hero-content h1 {
	font-size: 55px;
	margin-bottom: 15px;
	font-family: "HelveticaNeueCondensedBold";
}

.hero-content p {
	font-size: 18px;
	margin-bottom: 20px;
}

.hero-content a {
	text-decoration: none;
}

.same-btn {
	padding: 10px 25px;
	background: #9c1b20;
	color: #ffffff;
	font-weight: bold;
	cursor: pointer;
	border: 1px solid #9c1b20;
	border-radius: 5px;
	transition: all 0.3s ease;
	text-decoration: none;
}

.same-btn:hover {
	background: #ffffff;
	color: #9c1b20;
}

.expert-solutions-section {
	position: relative;
	padding-top: 90px;
}

.all-same-heading {
	font-weight: 400;
	font-size: 40px;
	line-height: 120%;
	letter-spacing: -1%;
	text-align: center;
	font-family: "HelveticaNeueCondensedBold";
}

.expert-solutions-section-main .all-same-heading {
	color: #020708;
	font-weight: 500;
}

.expert-solutions-meta {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	margin-top: 40px;
}

.expert-solutions-card {
	display: flex;
	align-items: flex-end;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	box-shadow: 0px 12px 16px -4px #00000014;
	border-radius: 16px;
	overflow: hidden;
	position: relative;
	transition: transform 0.3s ease;
	height: 420px;
}

.expert-solutions-card:hover {
	transform: translateY(-2px);
}

.expert-card-1 {
	background-image: url(../images/ZJIYLmPw.png);
}

.expert-card-2 {
	background-image: url(../images/qWJOtBrQ.jpeg);
}

.expert-card-3 {
	background-image: url(../images/nlpN_cEw.jpeg);
}

.expert-card-4 {
	background-image: url(../images/cAM_RPNg.jpeg);
}

.expert-card-5 {
	background-image: url(../images/7gBaHByQ.jpeg);
}

.expert-card-6 {
	background-image: url(../images/YwujZS-Q.jpeg);
}

.expert-solutions-card::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.45);
	z-index: 1;
	transition: 0.3s ease;
}

.expert-solutions-card:hover::before {
	background: rgba(0, 0, 0, 0.75);
}

.expert-solutions-card * {
	position: relative;
	z-index: 1;
}

.expert-solutions-card__content {
	position: relative;
	padding: 30px 25px;
}

.expert-solutions-card__title {
	color: #ffffff;
	font-weight: 700;
	font-size: 22px;
	line-height: 130%;
	letter-spacing: -1%;
	margin-bottom: 16px;
	transition: 0.3s;
}

.expert-solutions-card__content p {
	color: #ffffff;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	opacity: 0;
	transform: translateY(20px);
	/* niche se start */
	transition: 0.4s ease;
	height: 0;
	overflow: hidden;
	margin: 0;
}

/* Show on hover */
.expert-solutions-card:hover .expert-solutions-card__content p {
	opacity: 1;
	transform: translateY(0);
	/* upar aaye */
	height: auto;
	margin: 10px 0 15px;
}

.expert-solutions-card__content a {
	color: #000000;
	background-color: white;
	border-radius: 100px;
	padding: 10px 20px;
	font-weight: 800;
	font-size: 14px;
	text-decoration: none;
}

.expert-solutions-card__content a img {
	height: 18px;
	width: 18px;
	margin-bottom: 1px;
}

.expert-solutions-card:hover .expert-solutions-card__content a {
	background-color: #ffffff;
	color: #000000;
}

.geographical-section {
	position: relative;
	padding-top: 90px;
}

.geographical-images {
	display: flex;
	gap: 16px;
}

.our-sty-img:nth-child(2) {
	margin-top: 80px;
}

.our-sty-img {
	width: 100%;
	height: 20rem;
}

.our-sty-img img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	/* object-position: calc(63%); */
}

.geo-heading {
	color: #9c1b20;
	font-weight: 500;
	font-size: 34px;
	line-height: 48.73px;
	letter-spacing: 0%;
	text-align: left;
	font-family: "HelveticaNeueCondensedBold";
}

.geographical-meta p {
	font-weight: 500;
	font-size: 16px;
	line-height: 27px;
	letter-spacing: 0%;
	margin-bottom: 30px;
}


.sub-heading {
	font-size: 14px;
	color: black;
	font-weight: 700;
	display: inline-block;
	margin-bottom: 12px;
	text-transform: uppercase;
	position: relative;
	padding-left: 48px;
}

.sub-heading::before {
	content: ' ';
	position: absolute;
	width: 40px;
	height: 1px;
	background: #9c1b20;
	left: 0;
	top: 47%;
	transform: translatey(-50%);
}


.geo-story-read {
	text-decoration: none;
	color: #ffffff;
	background-color: #9c1b20;
	padding: 10px 20px;
	border-radius: 100px;
	font-size: 14px;
}

.about-section {
	padding-top: 90px;
}

.about-us-tittle {
	margin-bottom: 50px;
}

.about-us-tittle p {
	font-size: 16px;
	font-weight: 500;
}


.about-geo-card-box h5 {
	margin-top: 10px;
	font-weight: 600;
}

.about-geo-card-box p {
	font-size: 14px;
}


.image-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
}

.image-grid img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 5px;
}

.image-grid img:nth-child(2),
.image-grid img:nth-child(3) {
	height: 220px;
}

.we-work {
	position: relative;
	padding-top: 90px;
	text-align: center;
}


.we-work-main h2 span {
	color: #9c1b20;
}

.we-work-meta {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
	margin-top: 60px;
}

.we-work-single {
	background: #babbbc2b;
	padding: 20px;
	border-radius: 16px;
}

span.we-work-icon {
	background: #9c1b20d9;
	color: #ffffff;
	width: 60px;
	height: 60px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 100px;
	font-size: 20px;
	font-weight: 800;
	margin-bottom: 20px;
}

.we-work-single h4 {
	font-size: 20px;
	margin-bottom: 15px;
	font-weight: 600;
	line-height: normal;
	letter-spacing: 1px;
}

.we-work-single p {
	font-size: 15px;
	font-weight: 500;
	line-height: 22px;
	letter-spacing: normal;
}

.stats-section {
	position: relative;
	background-image: url(../images/7gBaHByQ.jpeg);
	background-position: center;
	background-size: cover;
	width: 100%;
	color: #fff;
	padding: 30px 0;
	z-index: 1;
	margin-top: 90px;
}

.stats-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.70);
	z-index: -1;
}


.stat-box h2 {
	font-size: 40px;
	font-weight: 700;
	color: #ffffff;
}

.stat-box p {
	margin: 0px;
	font-size: 16px;
}

.stat-box {
	transition: 0.3s;
}

.stat-box:hover {
	transform: translateY(-5px);
}


.footer-section {
	background: #babbbc;
	color: black;
	padding: 60px 0px 30px 0px;
	font-size: 16px;
	margin-top: 90px;
}

.footer-section h4,
.footer-section h5 {
	color: #9c1b20;
	margin-bottom: 25px;
	font-weight: 700;
}

.footer-links {
	list-style: none;
	padding: 0;
}

.footer-links li {
	margin-bottom: 8px;
	font-size: 16px;
}

.footer-address {
	font-size: 16px;
}

.footer-links a {
	color: black;
	text-decoration: none;
	transition: 0.3s;
}

.footer-links a:hover {
	color: #9c1b20;
}

.email-box {
	background: #9c1b20;
	padding: 10px;
	margin-bottom: 20px;
}

.email-box a {
	color: #fff;
	font-size: 13px;
	text-decoration: none;
}

.map-img {
	width: 100%;
	/* max-width: 300px; */
	margin-top: 10px;
	opacity: 0.8;
}


/*<-------------------- Wall-Panels page CSS -----------------------------> */

.wall-hero-section {
	background-image: url('../images/ZJIYLmPw.png');
	height: 90vh;
	padding: 270px 0px 0px 0px;
}

.wall-hero-section h1 {
	font-size: 50px;
}


.wall-panels-section {
	padding-top: 90px;
}

.wall-panels-section h2 {
	margin-bottom: 45px;
}

.panel-block-section {
	margin-bottom: 60px;
}

.panel-title {
	font-size: 20px;
	margin-bottom: 20px;
	font-weight: 900;
	line-height: normal;
	letter-spacing: 1px;
}

.panel-desc {
	font-size: 14px;
	margin-bottom: 20px;
}

.img-box-wall {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
}

.img-box-wall img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	transition: 0.5s ease;
}

.overlay-wall {
	position: absolute;
	bottom: 0;
	width: 100%;
	padding: 20px;
	background: linear-gradient(to top, #020100, #000000ad, #00000000);
	color: #ffffff;
	font-size: 18px;
	font-weight: 600;
	text-align: left;
	transform: translateY(100%);
	transition: 0.4s ease;
}

.img-box-wall:hover img {
	transform: scale(1.1);
}

.img-box-wall:hover .overlay-wall {
	transform: translateY(0);
}


/*<-------------------- Dock Canopies page CSS -----------------------------> */

.dock-hero-section {
	background-image: url('../images/6GEa78DQ.jpeg');
	height: 90vh;
	padding: 270px 0px 0px 0px;
}

.dock-hero-section h1 {
	font-size: 50px;
}

/*<-------------------- Entrance Canopies page CSS -----------------------------> */

.entrance-canopies-section {
	background-image: url('../images/qWJOtBrQ.jpeg');
	height: 90vh;
	padding: 270px 0px 0px 0px;
}

.entrance-canopies-section h1 {
	font-size: 50px;
}

/*<-------------------- About Us page CSS -----------------------------> */

.about-us-page-section {
	background-image: url('../images/about-banner.jpg');
	height: 90vh;
	background-position-y: 25%;
	padding: 270px 0px 0px 0px;
}

.about-us-page-section h1 {
	font-size: 50px;
}

.ts-about-sec {
	padding-top: 90px;
}

.ts-about-title {
	text-align: start;
	color: #9c1b20;
}

.ts-about-text {
	font-size: 18px;
	font-weight: 500;
}


.ts-about-img-wrap {
	position: relative;
}

.ts-about-img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 3.4/2;
}

.ts-about-badge {
	position: absolute;
	bottom: 0;
	left: 0;
	background: #9c1b20;
	color: #fff;
	padding: 30px 40px;
	border-top-right-radius: 60px;
}

.ts-about-badge-sub {
	letter-spacing: 4px;
	font-size: 12px;
	display: block;
}

.ts-about-badge-year {
	font-size: 48px;
	font-weight: 700;
	margin: 0;
}

.how-work {
	padding-top: 90px;
}

.how-work-p {
	width: 70%;
	margin: auto;
	color: #666;
	margin-bottom: 30px;
}

.how-work-img-sec {
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: url('../images/QYB36PnQ.jpeg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 400px;
	width: 80%;
	margin: auto;
	border-radius: 20px;
}

.how-work-play-btn {
	width: 65px;
	object-fit: cover;
}

.about-four-reason {
	padding-top: 60px;
}

/*<-------------------- careers-page-section -----------------------------> */

.careers-page-section {
	background-image: url('../images/careers-banner.jpg');
	height: 90vh;
	background-position-x: 60%;
	padding: 270px 0px 0px 0px;
}

.careers-sec1 {
	padding-top: 90px;
}

.careers-sec1 p {
	font-weight: 500;
	font-size: 16px;
	line-height: 27px;
	letter-spacing: 0%;
	width: 75%;
	text-align: center;
	margin: auto;
}

.careers-sec1 a {
	border-radius: 120px;
	text-decoration: none;
}

.join-us-btn {
	text-align: center;
	margin-top: 30px;
}

.why-join-us-section {
	padding-top: 90px;
}

.why-join-us-section-main {
	margin-top: 60px;
	display: grid;
	grid-template-columns: repeat(3, 3fr);
	gap: 30px;
}

.why-join-us-a {
	text-decoration: none;
}

.why-join-us-card {
	padding: 30px;
	border-radius: 10px;
	color: #fff;
	position: relative;
	text-align: center;
	transition: 0.3s;
	background-color: #9c1b20d9;
}

.why-join-card-img {
	position: absolute;
	top: -40px;
	left: 50%;
	transform: translateX(-50%);
	background: #fff;
	padding: 5px;
	border-radius: 50%;
}

.why-join-card-img img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
}

.why-join-us-card h5 {
	margin-top: 50px;
	font-size: 25px;
	letter-spacing: 1px;
}

.why-join-us-card p {
	font-size: 16px;
	margin-top: 10px;
	line-height: 1.6;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	line-clamp: 4;
	overflow: hidden;
}

.why-join-us-card:hover {
	transform: translateY(-10px);
}

.career-work-right-img {
	background-image: url(../images/careerwork.jpg);
	height: 420px;
}

.copy-right-section {
	position: relative;
	padding-top: 32px;
	margin-top: 20px;
	border-top: 1px solid #000000;
	text-align: center;
}


.capital-right {
	background-image: url('../images/0HKgAQdA.jpeg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 466px;
	border-radius: 16px;
	display: flex;
	align-items: end;
	margin-left: 38px;
}

.capital-right-image {
	width: 260px;
	background: white;
	padding: 20px;
	border-radius: 16px;
	overflow: hidden;
	margin-left: -45px;
	margin-bottom: -55px;
}

.capital-right-image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	border-radius: 16px;
}

/*----------------------------------------------------->Geographic Area Page<--------------------------------------------------*/

.geographic-area-page-section {
	background-image: url('../images/geographic-banner.jpg');
	background-position-y: 100%;
	height: 90vh;
	background-position-x: 60%;
	padding: 270px 0px 0px 0px;
}

.geo-unique-geo-sec2 {
	text-align: center;
	padding-top: 90px;
	position: relative;
}


.geo-map-area-geo-sec2 {
	position: relative;
	max-width: 700px;
	margin: auto;
}

.geo-unique-geo-sec2 h2 {
	color: #9c1b20;
	margin-bottom: 20px;
}

.map-center-geo-sec2 img {
	max-width: 35rem;
	border-radius: 16px;
	width: 100%;
}

/* .region-geo-sec2 {
	position: absolute;
	background: #fff;
	padding: 10px 20px;
	border-radius: 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	font-size: 14px;
	transition: 0.3s;
	cursor: pointer;
}

.region-geo-sec2:hover {
	transform: translateY(-5px);
	background-color: #9c1b20;
	color: #fff;
	font-weight: 700;
}


.north-geo-sec2 {
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

.south-geo-sec2 {
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.west-geo-sec2 {
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.east-geo-sec2 {
	right: 0px;
	top: 50%;
	transform: translateY(-50%);
} */

.geo-area-sec3 {
	padding-top: 90px;
}

.geo-area-sec3-p {
	width: 80%;
	text-align: center;
}

.geo-sec3-tap-ul {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	list-style: none;
	padding: 0;
	margin: 0 0 30px 0;
	flex-wrap: nowrap;
	overflow-x: auto;
	scrollbar-width: none;
}

.geo-sec3-tap-ul::-webkit-scrollbar {
	display: none;
}

.geo-sec3-tap-ul li {
	flex: 0 0 auto;
}

.geo-sec3-tap {
	padding: 10px 18px;
	border-radius: 30px;
	white-space: nowrap;
	color: #9c1b20;
	font-weight: 400;
	cursor: pointer;
	transition: all 0.3s ease;
	background-color: transparent;
	font-size: 18px;
	border: 1px solid #9c1b20;
}

.geo-sec3-tap:hover {
	background: #9c1b20;
	color: #ffffff;
	font-weight: 600;
	border-color: #9c1b20;
}

.geo-sec3-tap-active {
	background: #9c1b20;
	color: #ffffff;
	font-weight: 600;
	border-color: #9c1b20;
}


.geo-sec3-tap-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}

/*----------------------------------------------------->SafetyPage<--------------------------------------------------*/

.safety-page-section {
	background-image: url('../images/saftey-banner.jpg');
	background-position-y: 100%;
	height: 90vh;
	background-position-x: 60%;
	padding: 270px 0px 0px 0px;
}

.safety-by-company {
	padding: 90px 30px 0px 30px;
}


.safety-by-grid {
	margin-top: 60px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.safety-by-grid-card {
	background-color: #f5f5f5;
	text-align: center;
	padding: 40px;
	transition: all 0.3s ease;
	border: 1px solid #e0e0e0;
}


.safety-by-grid-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.safety-by-grid-card h3 {
	color: #0F172A;
	font-size: 24px;
	margin: auto;
}

.safety-by-grid-card p {
	font-size: 16px;
	margin-top: 10px;
}

.safety-by-grid-card img {
	height: 70px;
	width: 70px;
	margin: 25px 0;
}

.safety-sec3-img img {
	border-radius: 1rem;
}

/* -------------------------------------------------SunShades---------------------------------- */

.sunshades-section {
	background-image: url(../images/nlpN_cEw.jpeg);
	height: 90vh;
}
.sunshade-section{
	padding-top: 90px;
}

.sunshade-section-content{
	margin-bottom: auto;
}
.sunshade-section-content h2{
	color: #9c1b20;
	text-align: start;
	font-size: 35px;
}

.sunshade-section-content p{
	color: #666;
	font-size: 16px;
}

.sunshade-features{
	padding-top: 90px;
}

.sunshade-section-inner img{
    aspect-ratio: 3/2;
    object-fit: cover;
}

.sunshade-features-grid{
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
	margin-top: 30px;
}
.sunshade-features-grid-card{
	background-color: #9c1b20;
	text-align: center;
	padding: 20px;
	transition: all 0.3s ease;
	border: 1px solid #e0e0e0;
	border-radius: 5px;
}

.sunshade-features-grid-card:hover{
	transform: translateY(-8px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.sunshade-features-grid-card h3{
	color: #ffffff;
}

.sunshade-features-grid-card p{
	color: #ffffff;
}
/* -------------------------------------------------Screens---------------------------------- */

.screens-section {
    background-image: url(../images/10BtXv6Q.jpeg);
    background-position-y: -7rem;
}

/* -------------------------------------------------Walk Way Canpopies---------------------------------- */

.walkway-canopies-section {
	background-image: url(../images/YwujZS-Q.jpeg);
	height: 90vh;
}


/* ------------------------contact US-------------------------------- */
.contact-us-section{
	padding-top: 90px;
}

.contact-map-container{
	height: 500px;
	width: 100%;
}

.contact-map-container iframe{
	height: 100%;
	width: 100%;
}