@charset "utf-8";
html{
	overflow-x: hidden !important;
	overflow-y: auto !important;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
html, body{
	min-height: 100%;
	margin: 0 !important;
	padding: 0 !important;
	max-width: 100% !important;
	background-color: #FFF;
	direction: ltr !important;
}
body {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	font-family: "Open Sans", sans-serif;
	color: #444444;
	overflow: hidden !important;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	text-justify: distribute;
}
img{
	text-decoration: none;
	outline: none !important;
}
a{
	color: #D7B03B;
	text-decoration: none;
	outline: none !important;
}
a:hover {
  color: #ffd584;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}
.slogan{
	color: #D7B03B;
	font-size: 16px;
	margin: 20px auto 0;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #D7B03B;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #151515;
  line-height: 0;
}

.back-to-top:hover {
  background: #151515;
}

.back-to-top:hover i {
  color: #D7B03B;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #151515;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid #D7B03B;
  border-top-color: #151515;
  border-bottom-color: #151515;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(0, 0, 0, 0.8);
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo a span {
  color: #D7B03B;
}
.theme_color_border {
	border-color: #D7B03B;
}
#header .logo img {
  max-height: 40px;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus,
.dropdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a,
.dropdown:hover {
  color: #D7B03B;
}
.navbar .dropdown ul {
	font-family: "HDTC", sans-serif;
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
	font-family: "HDTC", sans-serif;
  min-width: 200px;
}
.navbar .dropdown ul a {
	font-family: "HDTC", sans-serif;
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  color: #151515;
  font-weight: 600;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  background-color: #D7B03B;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #151515;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #151515;
  background-color: #D7B03B;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
  color: #151515;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  background-color: #D7B03B;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  min-height: 100vh;
  background: url("../images/header_banners/hero-bg.jpg") top center;
  background-size: cover !important;
  position: relative;
}

#hero:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  position: relative;
  padding-top: 74px;
  text-align: center;
}

#hero h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

#hero h1 span {
  color: #D7B03B;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 0 0;
  font-size: 24px;
}

#hero .icon-box {
  padding: 37px 10px;
  transition: ease-in-out 0.3s;
  border: 1px solid #D7B03B;
  height: 100%;
  text-align: center;
  aspect-ratio: 1/1;
  border-radius: 50%;
  max-height: 190px;
  max-width: 190px;
}

#hero .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: #D7B03B;
}

#hero .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}

#hero .icon-box h3 a {
  color: #fff;
  transition: ease-in-out 0.3s;
}

#hero .icon-box h3 a:hover {
  color: #D7B03B;
}

#hero .icon-box:hover {
  border-color: #333;
}
.brands_div{
	max-width: 265px;
}
@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 20px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 100px 0;
  overflow: hidden;
}

.section-title {
  padding-bottom: 26px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #D7B03B;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #151515;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 28px;
  font-family: "Poppins", sans-serif;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: #D7B03B;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
	padding: 80px 0;
	background: url("../images/header_banners/clients-bg.jpg") no-repeat;
	background-position: center center;
	background-size: cover;
	position: relative;
}
.clients::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.7);
}
.clients .section-header {
	margin-bottom: 40px;
}
.clients .section-title{
	filter: none;
	opacity: 1;
	color: #ffffff;
	z-index: 100;
}
.clients h3 {
	text-align: center;
	color: #ffffffff;
	margin-bottom: 20px;
}
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}
.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}
.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  background-color: #ddd;
}
.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #D7B03B;
}
@media (min-width: 1024px) {
	.clients {
		background-attachment: fixed;
	}
}
/*--------------------------------------------------------------
# Ceo
--------------------------------------------------------------*/
.ceo {
	background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../images/header_banners/ceo-bg.jpg") fixed center center;
  background-size: cover;
  padding: 60px 0;
}
.ceo h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}
.ceo p {
  color: #fff;
}
.ceo .ceo-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}
.ceo .ceo-btn:hover {
  background: #D7B03B;
  border-color: #D7B03B;
  color: #151515;
}
/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts .content {
  padding: 30px 0;
}
.counts .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: #151515;
}
.counts .content p {
  margin-bottom: 0;
}
.counts .content .count-box {
  padding: 20px 0;
  width: 100%;
}
.counts .content .count-box i {
  display: block;
  font-size: 36px;
  color: #D7B03B;
  float: left;
}
.counts .content .count-box span {
  font-size: 36px;
  line-height: 30px;
  display: block;
  font-weight: 700;
  color: #151515;
  margin-left: 50px;
}
.counts .content .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 50px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #3b3b3b;
}
.counts .content .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #3b3b3b;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}
.counts .content .count-box a:hover {
  color: #626262;
}
.counts .image {
  background-size: cover;
  min-height: 320px;
}
@media (max-width: 991px) {
  .counts .image {
    text-align: center;
  }
  .counts .image img {
    max-width: 80%;
  }
}
@media (max-width: 667px) {
  .counts .image img {
    max-width: 100%;
  }
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}
.contact .info i {
  font-size: 20px;
  background: #D7B03B;
  color: #fff;
  float: left;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  text-shadow: 1px 1px 1px #333;
}
.info_text{
	padding: 0 0 0 10px;
	display: inline-block;
	max-width: 86%;
}
.contact .info_text h4 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #151515;
}
.contact .info_text p {
  margin-bottom: 0;
  font-size: 14px;
  color: #484848;
}
.contact .info .email,
.contact .info .phone {
  margin-top: 0px;
}
.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}
.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #D7B03B;
}
.contact .php-email-form input {
  height: 44px;
}
.contact .php-email-form textarea {
  padding: 10px 12px;
}
.contact .php-email-form button[type=submit] {
  background: #D7B03B;
  border: 0;
  padding: 10px 24px;
  color: #151515;
  transition: 0.4s;
  border-radius: 4px;
}
.contact .php-email-form button[type=submit]:hover {
	background: #505357;
	color: #D7B03B;
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: black;
  padding:30px 0 20px;
  color: #fff;
  font-size: 14px;
}
#footer .social-link a {
	display: inline-block;
	margin: 0 0 0 5px;
	color: #D7B03B;
	font-size: 20px;
}
#footer .social-link.circle a {
	width: 35px;
	height: 35px;
	text-align: center;
	border: 1px solid #D7B03B;
	border-radius: 50%;
	line-height: 34px;
}
#footer .social-link.circle a:hover {
	color: #fff;
	border: 1px solid #ddd;
	background: transparent;
}

@media screen and (max-width:1024px){
	#footer .social-link a {
		display: inline-block;
		margin: 15px 4px 5px;
	}
}
@media screen and (max-width:992px){
	#footer .social-link a {
		margin: 0 0 0 5px;
	}
}
@media screen and (max-width: 639px) {
	#footer .social-link.circle a {
		width: 32px;
		height: 32px;
		line-height: 30px;
	}
	#footer .social-link a{
		margin: 10px 5px 5px;
	}
}

@media screen and (max-width: 480px) {
	#footer .social-link.circle a {
		width: 23px;
		height: 23px;
		line-height: 16px;
		padding: 3px 0;
		font-size: 16px;
		margin-left: 3px;
		margin-right: 3px;
	}
}
@media screen and (max-width: 320px) {
	#footer .social-link a {
		display: inline-block;
		margin: 15px 1px 5px;
	}
}
.tiktok-svg, .twitter-svg {
	fill: #D7B03B;
}
.tiktok-svg:hover, .twitter-svg:hover {
	fill: #fff;
}
.con-tiktok-svg:hover, .con-twitter-svg:hover {
	fill: #000000;
}
.portfolio-hover {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: 0;
	-webkit-transition: all .3s;
	transition: all .3s;
	opacity: 0;
	border: 20px solid rgba(0, 0, 0, .1);
	background-color: rgba(255, 255, 255, .9);
}
.portfolio-item:hover .portfolio-hover,
.portfolio-item:hover .portfolio-hover .portfolio-description,
.portfolio-item:hover .portfolio-hover .action-btn {
	opacity: 1;
}
.portfolio-item:hover .portfolio-hover .portfolio-description {
	bottom: 45%;
	margin-bottom: -90px;
}
.portfolio-item:hover .portfolio-hover .action-btn {
	top: 40%;
	margin-top: -55px;
}
.portfolio-hover .portfolio-description {
	position: absolute;
	bottom: 0;
	width: 100%;
	-webkit-transition: all .3s;
	transition: all .3s;
	-webkit-transform: translateY(-55%);
	-ms-transform: translateY(-55%);
	transform: translateY(-55%);
	opacity: 0;
}
.portfolio-hover .action-btn {
	position: absolute;
	top: 0;
	/*left:0;*/
	width: 100%;
	-webkit-transition: all .3s;
	transition: all .3s;
	-webkit-transform: translateY(45%);
	-ms-transform: translateY(45%);
	transform: translateY(45%);
	text-align: center;
	opacity: 0;
	font-size: 35px;
}
.portfolio-description,
.portfolio-description h2 a,
.portfolio-description h4 a,
.portfolio-hover .action-btn a {
	text-align: center;
	color: #222;
}
.btn-theme-color{
	background: #D7B03B none repeat scroll 0 0;
	color: #FFF !important;
}
.btn-theme-color:hover{
	background: #505357 none repeat scroll 0 0;
	color: #FFF !important;
}
.btn-theme-border-color{
	border: 1px solid #D7B03B;
}
.btn-theme-border-color:hover{
	border: 1px solid #D7B03B;
}
.formdiv_main_text{height:22px; width:100%; padding:0px; margin:0px 0px 20px 0px; float:left; text-align:left;}
.formtextdiv, .formtextdivB{
    margin-bottom:10px;
    padding:0px;
    float:left;
    font-family:'ralewayregular',sans-serif;
    color:#666;
    font-size:16px;
    font-style:normal;
    font-weight:200;
    line-height:18px;
}
.formtextdiv{width:46%; margin-left:0px; margin-right:4%;}
.formtextedg{width:50% !important; margin-right:0 !important;}
.contmainform{padding-right:0 !important; padding-left:60px !important; margin-top:0 !important; padding-bottom:30px !important; display:table;}
.formtextdivB{width:100%; margin-left:0px; margin-right:0px;}
.formtextdiv label, .formtextdivB label{font-weight:300; font-size:16px; color:#666;}
.mandatory_text{font-size:14px; width:98%; margin:8px auto 0; color:#999; text-align:right !important; display:block;}
.formtextdiv span sub, .formtextdivB span sub, .mandatory_text sub{color:#F00; font-size:20px; margin:0px 5px;}
.form_textBox{font-size:16px; height:32px; width:100%; margin-top:5px; border:1px solid #999; padding:10px;}
.form_captsha_text{font-size:28px; font-weight:bold; width:40%; max-width:160px; height:60px; max-height:60px; margin:10px 5% 0; border:1px solid #999; padding:6px 20px;}
.form_captsha_img{width:40%; max-width:160px; height:60px; max-height:60px; margin:-10px 0 0 !important; border:1px solid #999; padding:0px 10px; cursor:none; 
user-select: none;
-ms-user-select: none;
-moz-user-select: none;
-o-user-select: none;
-webkit-user-select: none;
user-drag: none;
-ms-user-drag: none;
-moz-user-drag: none;
-o-user-drag: none;
-webkit-user-drag: none;
pointer-events: none;}
.form_captsha_refresh{ width:10%; max-width:25px; cursor:pointer; margin:27px 0 0 !important;}
.form_textArea{width:100%; resize:none; margin-top:5px; border:1px solid #999; font-size:16px;}
.form_textSelect{
    width:100% !important;
    height:32px !important;
    margin:5px auto 0 !important;
    padding:0px 2px;
    border:1px solid #999;
    color:#666;
    font-size:16px;
    text-indent: 1px;
    text-overflow: '';
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent url("../images/div/select-btn.png") no-repeat scroll 98% center;
    cursor:pointer;
}
.form_textSelect option{padding:3px 10px; text-transform:capitalize;}
.form_btn{height:28px; width:100%; text-align:center; margin-top:15px; margin-bottom:0px; float:left;}
.message_text{ width:75%; padding:0; margin:30px auto 50px; color:#FF6507;}
.message_text p{line-height:30px; text-align:center;}
/*------------------------------------------------
 Responsive
------------------------------------------------*/
@media screen and (max-width:992px){
    .contmainform{padding-right:0 !important; padding-left:0px !important; margin-top:50px !important; padding-bottom:30px !important; display:table;}
    .map_container{padding:0px;}
    .contacthr{display:inline-block; visibility:visible;}
    .contactdetail{padding-left:30px !important; margin-top:35px;}
}
@media screen and (max-width:767px){
    .contacts_container, .contacts_container_a{width:90%; padding:0px; margin:0px 5% 20px 5%; height:360px; float:none;}
    .gmap {
	    height: 270px;
	width: calc(100% - 20px);
	margin: 20px 10px;
    }
    .map_container{padding:0px 15px;}
    .map_frame{width:100%; height:270px;}
    .contactdetail{margin-top:0px;}
    .contacttable{
        float:none;
        width:90%;
        margin:0px 5% 0px 5%;
        font-size:14px;
        font-weight:200;
    }
    .formdiv_main_text{text-align:center;}
    .formtextdiv, .formtextdivB{
        width:100%;
        margin-left:0;
        margin-right:0;
        margin-bottom:10px;
        font-size:14px;
    }
    .formtextdivB{width:100%;}
    .formtextedg{width:100% !important;}
    .message_text{margin-left:auto; margin-right:auto; padding:18px 3%;}
    .message_text p{line-height:18px; font-size:13px;}
}