/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/****************************************/
/* HubSpot Style Boilerplate            */
/****************************************/

/* These includes are optional, but helpful. */

@font-face {
	font-family: 'Conv_Sensations and Qualities';
	src: url('https://cdn2.hubspot.net/hubfs/5834572/font/Fonts/Sensations%20and%20Qualities.eot');
  src: url('https://cdn2.hubspot.net/hubfs/5834572/font/Fonts/Sensations%20and%20Qualities.otf');
	src: local('☺'), url('https://cdn2.hubspot.net/hubfs/5834572/font/Fonts/Sensations%20and%20Qualities.woff') format('woff'),
	 url('https://cdn2.hubspot.net/hubfs/5834572/font/Fonts/Sensations%20and%20Qualities.ttf') format('truetype'),
	 url('https://cdn2.hubspot.net/hubfs/5834572/font/Fonts/Sensations%20and%20Qualities.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}
html{height:100%;}
body{
  font-size:16px;
  line-height:24px;
  font-weight:400;
  color:#999999;
  min-width:320px;
  margin:0 auto !important;
	padding:0;
  font-family: 'Conv_Sensations and Qualities';
  font-family: 'Oswald', sans-serif;
  font-family: 'Poppins', sans-serif;
}
::-moz-placeholder {
  color: #a8a8a8;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #a8a8a8;
}
::-webkit-input-placeholder {
  color: #a8a8a8;
}
h1,h2 ,h3,h4,h5,h6{
	color:#231f20;
	text-transform:none;
	font-weight:bold;
}
span{
	color:#999999;
}
a{transition: all 200ms ease 0s;}
a{color:#e4e516; text-decoration:none;}
a:hover{text-decoration:none;}
a:focus{outline:none !important;}


/* ==========================================================================
   Custom Menu Primary
   ========================================================================== */


 /* Set ul background color */
 /* Set li background Color */
 /* Set link Color */
 /* Set link Hover Color */

/* Parent List */
.custom-menu-primary .hs-menu-wrapper > ul{ 
  background:;
}
.custom-menu-primary .hs-menu-wrapper > ul > li{
  background:;
}
.custom-menu-primary .hs-menu-wrapper > ul > li > a{
  color:;
}
.custom-menu-primary .hs-menu-wrapper > ul > li > a:hover{
  color:;
}

/* Child List */
.custom-menu-primary .hs-menu-wrapper > ul ul{}
.custom-menu-primary .hs-menu-wrapper > ul ul li{
  background:;
}
.custom-menu-primary .hs-menu-wrapper > ul ul li a{
  color:;
}
.custom-menu-primary .hs-menu-wrapper > ul ul li a:hover{
  color:;
}

/* Override max width on menu links */
.custom-menu-primary .hs-menu-wrapper > ul li a, 
.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
  overflow: visible !important;
  max-width: none !important;
  width: auto !important;
}

/* Fix menu disappearing on desktop after toggling mobile menu */
@media screen and (min-width:768px) {
      .custom-menu-primary .hs-menu-wrapper { 
          display:block !important;
      }
  }




/* ==========================================================================
   Mobile Menu - Hubspot Standard Toggle Menu
   ========================================================================== */


/**
 * Special Note
 *
 * When the menu is open, a class of .mobile-open is applied to the body. You can 
 * use this for custom styling on any element when the menu is in the open position.                     
 */

.mobile-trigger, .child-trigger{
    display: none; /* Hide button on Desktop */
}

@media (max-width: 767px){


  /* Variables
     ========================================================================== */

     /* Set Mobile Menu Background Color */
        /* Set Link Color */
   /* Set Link Hover Color */

  /* 
    * Menu Reset
    *
    * Remove styling from desktop version of custom-menu-primary. Place any 
    * additional CSS you want removed from the mobile menu in this reset 
    */

  .custom-menu-primary,
  .custom-menu-primary .hs-menu-wrapper > ul,
  .custom-menu-primary .hs-menu-wrapper > ul li,
  .custom-menu-primary .hs-menu-wrapper > ul li a{
    display: block;
    float: none;
    position: static;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    padding: 0px;
    margin: 0px;
    background-image: none;
    background-color: transparent;
    border: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-box-shadow: none;
    -moz-box-shadow:    none;
    box-shadow:         none; 
    max-width: none;
    width: 100%;
    height: auto;
    line-height: 1;  
    font-weight: normal;
    text-decoration: none;
    text-indent: 0px;
    text-align: left;
    color:#ffffff;
  }


  /* Toggle Button
     ========================================================================== */

  .mobile-trigger{
    display: inline-block !important; /* Show button on mobile */
    cursor: pointer; /* Mouse pointer type on hover */
    position: absolute; /*******************************************/
    top: 0px;          /* Position Button at right of screen  */
    right: 10px;        /*******************************************/
    width: auto; /* Button width */
    height: auto; /* Button height */      
    padding: 7px 10px 8px 10px;
    background: #ffffff; /* Background color */
    border: 1px solid #0c8c9f;
    font-size: 16px;
    font-weight: normal;
    text-align: left;
    text-transform: uppercase;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    color: #0c8c9f; 
  }
  .mobile-trigger:hover{
    text-decoration: none; /* Removes link text underline on button */
    color:#e4e516;
    background-color: #0c8c9f; 
    border-color: transparent;
  }

  /* Change button when menu is open */
  .mobile-open .mobile-trigger{
    color:#e4e516;
    background-color: #0c8c9f; 
    border-color: transparent;
  }


  /* Toggle Button Icon
     ========================================================================== */

  .mobile-trigger i{
    display: inline;
    position: relative;
    top: -4px;
  }
  .mobile-trigger i:before, .mobile-trigger i:after{
    position: absolute;
    content: '';
  }
  .mobile-trigger i, .mobile-trigger i:before, .mobile-trigger i:after{
    width: 22px; /* Icon line width */
    height: 2px; /* Icon line height */
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    background-color: #0c8c9f; /* Icon color */
    display: inline-block;
  }
  .mobile-trigger i:before{
    top: -6px; /* Position top line */
  }
  .mobile-trigger i:after{
    top: 6px; /* Position bottom line */
  }
  
  .mobile-trigger:hover i, .mobile-trigger:hover i:before, .mobile-trigger:hover i:after,  
  .mobile-open .mobile-trigger i, .mobile-open .mobile-trigger i:before, .mobile-open .mobile-trigger i:after{
      background-color: #e4e516; /* Icon color */
  }


  /* Child Toggle Button
     ========================================================================== */

  .child-trigger{
    display: block !important; /* Hide button on Desktop */
    cursor: pointer; /* Mouse pointer type on hover */
    position: absolute;
    top: 0px;
    right: 0px;
    width: 55px !important; /* Button width */
    min-width: 55px !important;
    height: 45px !important; /* Button height */  
    padding: 0 !important;
    border-left: 1px dotted rgba(255, 255, 255, .20);
  }
  .child-trigger:hover{
    text-decoration: none;
  }
  .child-trigger i{
    position: relative;
    top: 50%; /* Centers icon inside button */
    margin: 0 auto !important;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  .child-trigger i:after{
    position: absolute;
    content: '';
  }
  .child-trigger i, .child-trigger i:after{
    width: 10px; /* Icon line width */
    height: 1px; /* Icon line height */
    background-color:#ffffff; /* Icon color */
    display: block;

  }
  .child-trigger i:after{
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  .child-trigger.child-open i:after{
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  .child-trigger.child-open i{
  }

    
  /* Menu Styles on Mobile Devices
     ========================================================================== */  
     
   .custom-menu-primary.js-enabled{
       position: relative;
       padding-top: 44px; /* Makes room for button */
       margin: 10px 0 10px 0;
   }

  /* Hide menu on mobile */
  .custom-menu-primary.js-enabled .hs-menu-wrapper,
  .custom-menu-primary.js-enabled .hs-menu-children-wrapper{
    display: none;
  }  

  /* Make child lists appear below parent items */
  .custom-menu-primary ul.hs-menu-children-wrapper{
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    display: none;
  }

  /* Mobile Menu Styles */ 
  .custom-menu-primary.js-enabled .hs-menu-wrapper{
    width: 100%;
    position: relative; /**************************************************************/
    top: 0;             /* Positions the menu to drop from the very top of the screen */
    left: 0;          /**************************************************************/
    padding: 0;
  }
  .custom-menu-primary .hs-menu-wrapper{
    background-color:#0c8c9f; /* Menu background color set off global menuColorMobile variable */
    width: 100%; /* Full screen width */
  }

   /* Level 1 Menu List Styles */
  .custom-menu-primary .hs-menu-wrapper > ul > li{
    position: relative;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li a{
    font-size: 22px; /* Font size of top level list items */
    line-height: 45px;
    overflow: visible;
  }

  /* Level 1 and Higher Menu List Styles */
  .custom-menu-primary .hs-menu-wrapper > ul li{
    border-top: 1px dotted rgba(255, 255, 255, .35); /* Adds transparent dark highlights to top of top level list items */
  }
  .custom-menu-primary .hs-menu-wrapper >  ul li a{
    padding: 0 20px;
    color:#ffffff; /* link color set by global mobile-aColor variable */
  }
  .custom-menu-primary .hs-menu-wrapper > ul li a:hover{
    color:#e4e516; /* link hover color set by global mobile-aColorHover variable */
  }

  /* Level 2 and Higher Menu List Styles */
  .custom-menu-primary .hs-menu-wrapper > ul ul li{
    background-color: rgba(255, 255, 255, .08);
  }
  .custom-menu-primary .hs-menu-wrapper > ul ul li a{
    text-indent: 10px; /* Indent Child lists */
    font-size: 16px; /* Font size of child lists */
  }

  /* Level 3 and Higher Menu List Styles */
  .custom-menu-primary .hs-menu-wrapper > ul ul ul li a{
    text-indent: 30px; /* Indent Child lists */
  }
  .custom-menu-primary .hs-menu-wrapper > ul ul ul ul li a{
    text-indent: 50px; /* Indent Child lists */
  }
}
#map {
  width: 100%;
  height: 500px;
}
.page-center {
    display: block !important;
    max-width: 1200px;
    overflow: hidden;
    margin: 0 auto !important;
    float: none !important;
}
.header-container-wrapper {
    position: absolute;
    z-index: 999;
}
.fixheader #outer-header {
    min-height: 95px;
}
#outer-header {
    min-height: 135px;
}
.widget-span.hs-header-wrapper {
    position: fixed;
    top: 0;
    z-index: 9;
    background: none;
    left: 0;
    width: 100%;
}
/* .fixheader .hs-header-wrapper {
    box-shadow: 0 0 10px 2px #004e64;
    background-color: #09bad7;
    padding: 0px;
} */

.fixheader .hs-header-wrapper {
    box-shadow: 0 0 10px 2px #231f20;
    background-color: #231f20;
    padding: 0px;
}
.hs-header-bottom-bar {
    padding: 36px 0;
}
.fixheader .hs-header-wrapper .hs-header-bottom-bar {
    padding: 12px 0 6px;
}
.logo {
    max-width: 193px;
    height: auto;
}
.logo img{
  width:100%;
  height:auto;
  display:block;
}
.fixheader .hs-header-wrapper .logo{
  max-width: 125px;
}
.fixheader .hs-header-wrapper  .Header-nav ul{
  padding: 22px 0 0;
}
.Header-nav {
    overflow: hidden;
}
.Header-nav ul {
    list-style: none;
    margin: 0;
    padding: 40px 0 0;
    overflow: hidden;
  text-align: right;
}
.Header-nav ul li {
    display: inline-block;
    vertical-align: top;
  padding:0 40px 0 0;
}
.Header-nav ul li a {
    display: block;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    font-family: 'Oswald', sans-serif;
  word-spacing: 0px;
letter-spacing: 3px;
  color:#f4f4f4;
}
.Header-nav ul li a:hover,
.Header-nav ul li.active-branch a{
  color:#e4e516;
}
.banner-box {
    padding: 200px 0 0;
  overflow:hidden;
  background-position: center center;
background-repeat: no-repeat;
background-size: 100% 100%;
}
.testimonial-slider {
    position: relative;
    z-index: 99;
    width: 100%;
    overflow: hidden;
  padding:0 0 70px;
}
.testimonial {
    width: 100%;
    overflow: hidden;
  padding: 0 0 0 70px;
  color:#fff;
}
.testimonial .slick-slider{
  position: static !important;
}
.testimonial .slick-prev.slick-arrow {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    left: 0;
    top: 30%;
    position: absolute;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 5px;
}
.testimonial .slick-next.slick-arrow {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    right: 0;
    top: 30%;
    position: absolute;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 5px;
}
.testimonial .slick-active:focus,
.testimonial .slaider-text:focus{
  outline:none !important;
}
.testimonial-slider .slaider-text span {
    color: #f4f4f4;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    position: relative;
    padding: 0 0 30px;
    display: block;
    font-family: 'Oswald', sans-serif;
  letter-spacing: 3px;
word-spacing: 3px;
text-transform: uppercase;
  margin: 0 0 40px;
}
.testimonial-slider .slaider-text span::after {
    position: absolute;
    content: '';
    left: 0;
    top: 100%;
    width: 95px;
    height: 10px;
  background-repeat: no-repeat;
    background:url(https://cdn2.hubspot.net/hubfs/5834572/GCH%20Images%20July%202019/Home%20Page%20Images/heading-after-image.png);
}
.testimonial-slider .slaider-text h1 {
    display: block;
    font-size: 72px;
    line-height: 80px;
    margin: 0 0 40px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    color: #e4e516;
  max-width: 500px;
}
.testimonial-slider .slaider-text h1 strong {
    color: #f4f4f4;
    font-family: 'Conv_Sensations and Qualities';
    text-transform: lowercase;
    font-size: 156px;
    line-height: 133px;
    font-weight: 400;
    margin: 0 0 10px 7px;
}
.testimonial-slider .slaider-text p{
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
    line-height: 24px;
  color:#f4f4f4;
  max-width:600px;
}
.testimonial-slider .slaider-text a{
  display: block;
    font-size: 18px;
    line-height: 22px;
    margin: 0 0 30px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    color: #e4e516;
  font-weight:700;
  cursor: pointer;
  background: url(https://cdn2.hubspot.net/hubfs/5834572/GCH%20Images%20July%202019/Home%20Page%20Images/arrow-image.png);
  background-repeat: no-repeat;
  width: 160px;
  letter-spacing: 2px;
  word-spacing: 0px;
  background-position: 100% 2px;
}
.testimonial-slider .slick-disabled{
  display:none !important;
}
#full-width-1{
  padding:70px 0;
  overflow:hidden;
}
#full-width-1 .content-holder{
  margin:0 auto;
  display:block;
  text-align:center;
  max-width:1095px;
}
#full-width-1 .content-holder p{
  margin:0 0 30px;
  font-family: 'Poppins', sans-serif;
  line-height:30px;
}
#full-width-1 .content-holder h2 {
    font-size: 24px;
    line-height: 42px;
    font-weight: 400;
    position: relative;
    padding: 0 0 30px;
    display: block;
    font-family: 'Oswald', sans-serif;
  letter-spacing: 10px;
word-spacing: 5px;
text-transform: uppercase;
  margin: 0 0 40px;
}
#full-width-1 .content-holder h2:after {
    position: absolute;
    content: '';
    left: 0;
    right:0;
    top: 100%;
    width: 100px;
    height: 10px;
  background-repeat: no-repeat;
    background:url(https://cdn2.hubspot.net/hubfs/5834572/GCH%20Images%20July%202019/Home%20Page%20Images/heading-after-image2.png);
  margin: 0 auto;
background-repeat: no-repeat;
}
#full-width-1 .image-box{
  margin:20px auto;
  display:block;
  text-align:center;
  max-width: 1300px;
float: none;
}
#full-width-1 .image-box img,
#full-width-1 img{
  display:block;
  height:auto;
  width:100% !important;
}
.full-width-1{
  padding:0 !important;
}
#full-width-2{
  background:#0c8c9f;
  overflow:hidden;
  padding:53px 0 53px;
  position:relative;
/*   background-image: url(https://cdn2.hubspot.net/hubfs/5834572/GCH%20Images%20July%202019/Home%20Page%20Images/video-after-image.png); */
  background-repeat:no-repeat;
  background-position: 50px 100%;
}
#full-width-2 .video-box {
    margin: 0 auto;
    display: block;
    max-width: 1095px;
  position: relative;
z-index: 9;
}
#full-width-2 .video-box img{
  display: block;
  width:100%;
  height:auto;
}
#full-width-2 .video-box::after {
    position: absolute;
    content: '';
    left: -20px;
    border: 5px solid #fff;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    bottom: 10px;
    z-index: -1;
}
#column-box {
    padding: 80px 0 0;
    overflow: hidden;
}
#column-box .page-heading {
    text-align: center;
    width: 100%;
    overflow: hidden;
}
#column-box .page-heading h2{
  font-size: 24px;
    line-height: 28px;
    font-weight: 400;
    position: relative;
    display: block;
    font-family: 'Oswald', sans-serif;
  letter-spacing: 10px;
word-spacing: 5px;
text-transform: uppercase;
  margin: 0 0 30px;
}
#column-box .page-heading p{
  color:#231f20;
  text-transform:uppercase;
  margin:0;
}
#column-box .three-column{
  padding: 50px 25px;
  overflow: hidden;
}
#column-box .three-column .column {
    overflow: hidden;
    text-align: center;
    transition: all 0.8s ease 0s;
  margin:0 0 40px;
  background:#fff;
  position: relative;
}
#column-box .three-column .column:hover {
    box-shadow: 0 0 30px 0 #ccc;
    transition: all 0.8s ease 0s;
}
#column-box .three-column .column .column-image {
    width: 100%;
    overflow: hidden;
  margin:0;
}
.column-image img {
    width: 100%;
    height:auto;
  display:block;
}
#column-box .three-column .column .column-text {
    padding:40px 18px 0;
    overflow: hidden;
}
.three-column .column .column-text h3{
  font-size: 23px;
    line-height: 28px;
    font-weight: 700;
    padding: 0;
    display: block;
    font-family: 'Oswald', sans-serif;
text-transform: uppercase;
  margin: 0 0 25px;
}
.three-column .column .column-text p{
  color:#999 !important;
  margin: 0 0 25px;
  text-transform: uppercase;
}
#column-box .three-column .column .column-text strong {
    display: block;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    color: #0c8c9f;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 22px;
    margin: 0 0 30px;
}
#column-box .three-column .column .column-text .column-button {
    display: block;
    padding: 15px 0;
    color: #e4e516;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 16px;
    background: #0c8c9f;
    width: 160px;
    margin: 0 auto;
  box-shadow: 0 0 30px 0 #ccc;
}
#column-box .three-column .column .btn-details {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    text-indent: -9999px;
    top: 0;
    left: 0;
    right: 0;
}
#footer-box {
    width: 100%;
    overflow: hidden;
    padding: 60px 0;
    background: #231f20;
}
#footer-box .footer-logo{
  overflow: hidden;
}
#footer-box .footer-logo img{
  display: block;
  width:100% !important;
  height:auto;
}
#footer-box .footer-nav {
    overflow: hidden;
  padding: 40px 0 0;
}
#footer-box .footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
#footer-box .footer-nav ul li{
    display: inline-block;
    vertical-align: middle;
  position: relative;
  padding: 0 13px 0 0;
}
#footer-box .footer-nav ul li a{
  color:#999;
  font-size:14px;
  line-height:18px;
  text-transform:uppercase;
}
#footer-box .footer-nav ul li:after {
    position: absolute;
    content: '';
    width: 2px;
    height: 10px;
    background: #999;
    top: 6px;
    left: -9px;
}
#footer-box .footer-nav ul li:hover:after{
  background: #fff;
}
#footer-box .footer-nav ul li:hover a,
#footer-box .footer-nav ul li.active-branch a{
  color:#fff;
}
#bottom-footer {
    width: 100%;
    overflow: hidden;
    padding: 25px 0 18px;
}
#bottom-footer .copy-rights span{
  color:#999;
  font-size:14px;
  line-height:18px;
  text-transform:capitalize;
}
#bottom-footer .social-icons {
    line-height: normal;
    margin: 0;
    padding: 0;
    overflow: hidden;
  text-align: right;
float: right;
}
.footer-form {
    position: relative;
    min-height: 130px !important;
}
.footer-form h3 {
    color: #fff !important;
    display: block;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 22px;
    font-family: 'Oswald', sans-serif;
    margin: 0 0 36px;
}
.footer-form form {
    background: #fff;
    width: 100%;
    padding: 0;
    overflow: visible;
    position: relative;
    display: block;
}
.footer-form .input{
  float:left;
  width:90%;
}
.actions {
    height: 25px;
    display: flex;
    align-items: center;
  padding:13px 0;
}
.footer-form .inputs-list {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: -30px;
    z-index: 999999;
}
.footer-form  .hs_error_rollup .inputs-list{
  top:56px;
}
.hs-error-msg,
.hs-main-font-element{
    font-size: 12px;
  color:red;
}
.footer-form .input .hs-input::placeholder{
  color:#999;
}
.footer-form .input input[type="email"] {
    width: 91% !important;
    display: block;
    height: 50px !important;
  border:none !important;
  font-size: 14px;
line-height: 18px;
color: #999;
  padding:0 15px;
  font-family: 'Poppins', sans-serif;
}
.footer-form .hs-form-required{display: none;}
.footer-form .actions .primary {
    display: none;
}
#bottom-footer .social-icons li{
  display: inline-block;
    vertical-align: middle;
  margin: 0 10px 0 0;
}
.social-icons li a svg {
    fill: #999;
    height: 100%;
}
#bottom-footer .social-icons li a{
  width:20px;
  height:20px;
  display:block;
}

/*........... Contact Us Page Style ............*/

.inner-banner {
    padding: 130px 0 50px;
  overflow:hidden;
  background-position: center center;
background-repeat: no-repeat;
background-size: 100% 100%;
}
.inner-banner .banner-heading {
    width: 100%;
    overflow: hidden;
    text-align: center;
}
.inner-banner .banner-heading h1 {
    color: #e4e516;
    text-transform: lowercase;
    font-size: 156px;
    line-height: 190px;
    font-weight: 400;
    font-family: 'Conv_Sensations and Qualities';
    display: block;
    margin: 0;
}
.form-holder {
    width: 100%;
    overflow: hidden;
}
.form-holder form{
  width: 100%;
    overflow: hidden;
}
.form-holder form fieldset{
  width: 100% !important;
  max-width: 100%;
  margin: 0 0 30px;
}
.form-holder form fieldset input[type="text"],
.form-holder form fieldset input{
  max-width: 100%;
  width: 100% !important;
  background: #f2f2f2;
border: none;
  padding: 18px 0;
  font-size:15px;
  color:#999;
  font-family: 'Poppins', sans-serif;
}
.form-holder .hs-form-required{
  display:none;
}
.form-holder form fieldset select{
}
.form-holder form fieldset .input{
  background: #f2f2f2;
  padding: 0 15px;
  margin-right:0 !important;
}
.form-holder form fieldset textarea{
  background: none;
border: none;
padding: 18px 0;
  font-size:15px;
  color:#999;
  font-family: 'Poppins', sans-serif;
  min-height: 160px;
resize: none;
  width: 100% !important;
  text-transform: capitalize;
}
.form-holder .input input[type="text"]{
  text-transform: capitalize;
}
.form-holder .hs_select .input{
  margin-right:0 !important;
  background:none !important;
  padding:0 !important;
}
.form-holder .hs_firstname .input input,
.form-holder .hs_lastname .input input{
  width:100% !important;
}
.form-holder .hs_firstname,
.form-holder .hs_lastname{
  width:48.3% !important;
}
.form-holder .hs_firstname{
  margin-right:19px !important;
}
.form-holder .hs_lastname{
  margin-right:0px !important;
  margin-left:20px !important;
}
.form-holder .hs_firstname .input,
.form-holder .hs_lastname .input{
  margin-right:0px !important;
}
.form-holder .hs-submit {
    float: right;
    position: relative;
    top:-55px;
}
.form-holder .hs-main-font-element {
    width: 250px;
}
.form-holder .hs_select {
    width: 220px;
}
.form-holder form fieldset select {
    border: 1px solid #dadada;
    border-radius: 3px;
    padding: 3px;
    color: #3f3f3f;
}
.form-holder .hs_select label {
    font-size: 14px;
    font-weight: 300;
    margin: 0 0 10px;
    display: block;
}
.form-holder input[type="submit"] {
    background: #0c8c9f;
    border: none;
    padding: 20px;
    width: 230px;
    color: #e4e516;
    font-size: 22px;
    text-transform: uppercase;
    margin: 0;
  cursor: pointer;
  -webkit-appearance: none;
border-radius: 0;
}
.form-holder .hs-richtext p{
  margin:10px 0 10px;
}
#full-width-3 {
    position: relative;
    padding: 40px 0 25px;
    background-size: 100% 100%;
    background-position: 100% top;
    background-repeat: no-repeat;
    margin: 10px 0 70px;
}
#full-width-3 span {
    display: inline-block;
    vertical-align: middle;
    color: #e4e516;
    font-size: 25px;
    font-family: 'Oswald', sans-serif;
    margin: 0 30px 0 0;
    font-weight: 400;
  letter-spacing:5px;
  word-spacing:3px;
}
#full-width-3 h3 {
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    font-size: 98px;
    font-family: 'Oswald', sans-serif;
    margin: 0;
    line-height: 98px;
    font-weight: 700;
}
#full-width-3 .about-button{
    width: 100% !important;
    display: block;
    height: 100%;
    z-index: 99;
    position: absolute;
    top: 0;
    left: 0;
    text-indent: -99999px;
}

/*...........  About Page Style  ..........*/

#full-width-4 {
    padding: 70px 0 0;
    overflow: hidden;
  position: relative;
}
#full-width-4 .image-bg {
    position: absolute;
    right: 0;
    content: "";
}
#full-width-4 .image-bg img{
  width: 100% !important;
    display: block !important;
    height: auto !important;
}
#full-width-4 .about-section {
    padding: 30px 0;
}
#full-width-4 .about-section p{
  margin:0 0 40px;
}
#full-width-4 .text-content h3:after {
    position: absolute;
    content: '';
    left: 0;
    top: 100%;
    width:71px;
    height: 8px;
    background-repeat: no-repeat;
/*     background: url(https://cdn2.hubspot.net/hubfs/5834572/GCH%20Images%20July%202019/Home%20Page%20Images/heading-after-image2.png); */
    margin: 0 auto;
    background-repeat: no-repeat;
}
#full-width-4 .text-content h3 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    position: relative;
    padding: 0 0 30px;
    display: block;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 5px;
    word-spacing: 5px;
    text-transform: uppercase;
    margin: 0 0 40px;
}
#about-two-column{
  padding: 0;
    overflow: hidden;
  background: #0c8c9f;
/*   background-image:url(https://cdn2.hubspot.net/hubfs/5834572/GCH%20Images%20July%202019/About%20Us%20Images/fold-after-image.png); */
  background-repeat: no-repeat;
background-position: 100% 100%;
background-size: 45% auto;
}
#about-two-column .iamge-column {
    width: 50%;
  margin: 0 !important;
}
#about-two-column .iamge-column img{
    width: 100% !important;
    display: block !important;
    height: auto !important;
}
#about-two-column .cloumn-content {
    margin: 0;
    width: 50%;
  padding: 69px 60px;
  float: right !important;
}
#about-two-column .cloumn-content h3:after {
    position: absolute;
    content: '';
    left: 0;
    top: 100%;
    width:71px;
    height: 8px;
    background-repeat: no-repeat;
/*     background: url(https://cdn2.hubspot.net/hubfs/5834572/GCH%20Images%20July%202019/About%20Us%20Images/heading-after-image4.png); */
    margin: 0 auto;
    background-repeat: no-repeat;
}
#about-two-column .cloumn-content h3 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    position: relative;
    padding: 0 0 30px;
  color:#e4e516;
    display: block;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 5px;
    word-spacing: 5px;
    text-transform: uppercase;
    margin: 0 0 40px;
}
#about-two-column .cloumn-content h3 i {
    font-size: 16px;
    display: inline-block;
    vertical-align: top;
    margin: 10px 0 0;
}
#about-two-column .cloumn-content p{
  margin:0 0 30px;
  color:#fff;
}
#about-two-column .cloumn-content h3.plan-image{
  margin:0 0 10px;
  padding:0;
}
#about-two-column .cloumn-content h3.plan-image:after{
  display:none;
}
#full-width-5{
  padding: 70px 0 70px;
    overflow: hidden;
}
#full-width-5 .list-holder {
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    display: block;
    float: none;
}
#full-width-5 .list-holder .left-list {
    line-height: normal;
    margin: 0;
    padding: 0;
    overflow: hidden;
    text-align: right;
}
#full-width-5 .list-holder .left-list li{
  display: block;
  padding:0 25px 58px 0;
}
#full-width-5 .list-holder .left-list li img{
  float: right;
  margin: 10px 0 0 25px;
}
#full-width-5 .list-holder .left-list li span{ 
  display: inline-block;
  vertical-align: top;
  color:#202020;
}
#full-width-5 .list-holder .right-list {
    line-height: normal;
    margin: 0;
    padding: 0;
    overflow: hidden;
    text-align: left;
}
#full-width-5 .list-holder .right-list li{
  display: block;
  padding:0 0 58px 25px;
}
#full-width-5 .list-holder .right-list li img{
  float: left;
  margin: 10px 25px 0 0;
}
#full-width-5 .list-holder .right-list li span{ 
  display: inline-block;
  vertical-align: top;
  color:#202020;
}
#full-width-6 {
    padding: 70px 0 55px;
    overflow: hidden;
    background-image: url(https://cdn2.hubspot.net/hubfs/5834572/GCH%20Images%20July%202019/About%20Us%20Images/full-width6-bg.jpg);
    background-size: 100%100%;
    background-position: center top;
    background-repeat: no-repeat;
}
#full-width-6 .button-box {
    overflow: hidden;
}
#full-width-6 .button-box img{
      width: 100% !important;
    display: block !important;
    height: auto !important;
}

/*...........  Safety Page Style  ..........*/

.column-box h2{
  position: relative;
  padding:0 0 30px;
  margin:0 0 40px !important;
}
.column-box h2:after {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 100%;
    width: 100px;
    height: 10px;
    background-repeat: no-repeat;
/*     background: url(https://cdn2.hubspot.net/hubfs/5834572/GCH%20Images%20July%202019/Home%20Page%20Images/heading-after-image2.png); */
    margin: 0 auto;
    background-repeat: no-repeat;
}
.column-box p {
    color: #999 !important;
    text-transform: capitilaiz !important;
}
#two-columns-section {
    padding: 70px 0;
    overflow: hidden;
}
#two-columns-section .two-columns {
    width: 100%;
    overflow: hidden;
  margin: 0 0 0 20px;
}
#two-columns-section .two-columns .testimonial{
  padding:0;
  text-align: center;
}
#two-columns-section .two-columns .testimonial-slider{
  padding:0;
}
#two-columns-section .two-columns .slick-slide img {
    display: block;
    width: 100%;
    height: auto;
}
#two-columns-section .two-columns .slider-img{
  margin:0;
}
#two-columns-section .two-columns .large-content {
    padding: 55px 55px;
}
#two-columns-section .two-columns .large-content h2,
#two-columns-section .two-columns .column-content h2{
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    position: relative;
    display: block;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 5px;
    word-spacing: 0px;
    text-transform: uppercase;
    margin: 0 0 40px;
}
#two-columns-section .two-columns .large-content h3,
#two-columns-section .two-columns .column-content h3{
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    position: relative;
    display: block;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 3px;
    word-spacing: 0px;
    text-transform: uppercase;
    margin: 0;
    color: #211d1d;
}
#two-columns-section .two-columns .testimonial-slider .slick-disabled{
  display:block !important;
}
#two-columns-section .two-columns .large-content p,
#two-columns-section .two-columns .column-content p{
  margin:0 0 30px;
}
#two-columns-section .two-columns .column-content {
    padding: 43px 45px 43px 20px;
}

#banner-holder {
    width: 100%;
}
.button-hold {
    width: 100%;
    overflow: hidden;
    position: relative;
}
#banner-holder .button-hold .cta_button{
  width:100%;
}
#banner-holder .button-hold .cta_button img{
    display: block;
    width: 100%;
    height: auto;
}
#two-columns-section .two-columns .slider-img .testimonial .slick-next.slick-arrow {
    background: url(https://cdn2.hubspot.net/hubfs/5834572/GCH%20Images%20July%202019/Location%20Images/next-arrow.png);
    border: none;
    color: #f4f4f4;
    font-size: 20px;
    right: 40%;
    top: 80%;
    position: absolute;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 5px;
  z-index: 9999;
  background-repeat: no-repeat;
  text-indent: -9999px;
  width: 10%;
  height: 13%;
  outline: none;
}
#two-columns-section .two-columns .slider-img .testimonial .slick-prev.slick-arrow {
    background: url(https://cdn2.hubspot.net/hubfs/5834572/GCH%20Images%20July%202019/Location%20Images/previse-arrow.png);
    border: none;
    color: #f4f4f4;
    font-size: 20px;
    left: 40%;
    top: 80%;
    position: absolute;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 5px;
  z-index: 9999;
  background-repeat: no-repeat;
  text-indent: -9999px;
  width: 10%;
  height: 13%;
  outline: none;
}
#two-columns-section .two-columns .testimonial .slick-next.slick-arrow {
    background: url(https://cdn2.hubspot.net/hubfs/5834572/GCH%20Images%20July%202019/Location%20Images/next-arrow.png);
    border: none;
    color: #fff;
    font-size: 20px;
    right: 38%;
    top: 80%;
    position: absolute;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 5px;
  z-index: 9999;
  background-repeat: no-repeat;
  text-indent: -9999px;
  width: 10%;
  height: 14%;
  outline: none;
  background-size: 100% auto;
}
#two-columns-section .two-columns .testimonial .slick-prev.slick-arrow {
    background: url(https://cdn2.hubspot.net/hubfs/5834572/GCH%20Images%20July%202019/Location%20Images/previse-arrow.png);
    border: none;
    color: #fff;
    font-size: 20px;
    left: 38%;
    top: 80%;
    position: absolute;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 5px;
  z-index: 9999;
  background-repeat: no-repeat;
  text-indent: -9999px;
  width: 10%;
  height: 14%;
  outline: none;
  background-size: 100% auto;
}
#two-columns-section .two-columns  .floating-image{
  margin:0 !important;
}
#two-columns-section .two-columns  .floating-box {
    float: right !important;
}
#full-width-8{
  width: 100%;
  overflow: hidden;
  padding: 0 0 40px;
  background-position: 100% top;
  background-repeat: no-repeat;
  position: relative;
  background-size: 48% auto;
  background-image:url(https://cdn2.hubspot.net/hubfs/5834572/GCH%20Images%20July%202019/Safety%20Images/e-book-image.png);
}
#full-width-8 .text-column {
    padding: 150px 0;
    overflow: visible;
}
#full-width-8 .text-column h2{
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    position: relative;
    display: block;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 5px;
    word-spacing: 0px;
    text-transform: uppercase;
    margin: 0 0 40px;
}
#full-width-8 .text-column h2::after {
    position: absolute;
    content: '';
    right: -35px;
    top: 0;
    background: url(https://cdn2.hubspot.net/hubfs/5834572/GCH%20Images%20July%202019/Safety%20Images/coma-icon.png);
    width: 90px;
    height: 91px;
}
#full-width-8 .e-book-image {
    display:none;
}
#full-width-8 .e-book-image img {
    display: block;
    width: 100% !important;
   height: auto;

}
#full-width-8 .text-column p{
  margin:0 0 80px;
}
#full-width-8 .text-column .btn-read-more {
    position: relative;
    color: #0b8b9f;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 20px;
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
}
#full-width-8 .text-column .btn-read-more:after {
    position: absolute;
    content: '';
    width: 100px;
    height: 1px;
    background: #3ca2b2;
    top: 12px;
    margin: 0 0 0 25px;
}
#full-width-9{
  width: 100%;
  overflow: hidden;
  padding: 30px 0 0;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
  background-size: 100% 100%;
  background-image:url(https://cdn2.hubspot.net/hubfs/5834572/GCH%20Images%20July%202019/Safety%20Images/full-width-bg-2.jpg);
}
#full-width-9 .map-img img{
  display: block;
    width: 100% !important;
    height: auto;
}
#full-width-9 #map-section {
    margin: 0;
  position: relative;
}
#map-section .image-text {
    overflow: hidden;
    position: absolute;
    left: -106px;
}
#map-section .image-text img {
    float: right !important;
  width:auto !important;
  width: 100px !important;
}
#map-section .image-text .pera {
    overflow: hidden;
    text-align: center;
    padding: 23px 0 0;
}
#map-section .image-text .pera h4{
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    position: relative;
    display: block;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 5px;
    word-spacing: 0px;
    text-transform: uppercase;
    margin: 0 0 40px;
  color:#e4e516;
}
#full-width-9 .map-img {
    padding: 7px 0px 0;
}
#map-section .level-image {
    padding: 65px 0 30px;
}
#map-section img{
  width:100% !important;
}
#map-section .level-image img{
  display: block;
    width: 100% !important;
    height: auto;
}
#map-section .tower-image{
  margin:0 0 0 -70px;
}
.neighboring-area-text {
    padding: 0 0 0 15px;
}
#map-section .neighboring-area-text h4 {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    position: relative;
    display: block;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 2px;
    word-spacing: 0px;
    text-transform: uppercase;
    margin: 0 0 19px;
    color: #e4e516;
}
#map-section .neighboring-area-text p {
    color: #fff;
    display: inline-block;
    vertical-align: top;
    font-size: 10px;
    margin: 0;
    width: 80px;
  line-height:14px;
}
#map-section .neighboring-area-text span {
    color: #fff;
    display: inline-block;
    vertical-align: top;
    font-size: 10px;
  width: 170px;
  line-height:14px;
}
#map-section .neighboring-area-text p.large-para{
  width:100% !important;
}
#map-section .work-box h4 {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    position: relative;
    display: block;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 2px;
    word-spacing: 0px;
    text-transform: uppercase;
    margin: 0 0 19px;
    color: #e4e516;
  text-align:center
}
/*...........  Location Page Style  ..........*/

#full-width-7 {
    background: #231f20;
}
#full-width-7 .testimonial,
#full-width-7 .testimonial-slider{
    padding: 0;
}
 #full-width-7 .slick-slide img {
    display: block;
    width: 100%;
    height: auto;
}
#full-width-7 .cloumn-content {
    background-color: #231f20;
    margin: 0;
    width: 50%;
   background-repeat: no-repeat;
    padding: 48px 50px 30px;
}
#full-width-7 .cloumn-content h3:after {
    position: absolute;
    content: '';
    left: 0;
    top: 100%;
    width:71px;
    height: 8px;
    background-repeat: no-repeat;
    background: url(https://cdn2.hubspot.net/hubfs/5834572/GCH%20Images%20July%202019/About%20Us%20Images/heading-after-image4.png);
    margin: 0 auto;
    background-repeat: no-repeat;
}
#full-width-7 .cloumn-content h3 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    position: relative;
    padding: 0 0 30px;
    color:#e4e516;
    display: block;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 5px;
    word-spacing: 5px;
    text-transform: uppercase;
    margin: 0 0 40px;
}
#full-width-7.cloumn-content h3 i{
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
}
#full-width-7 .cloumn-content p{
  margin:0 0 30px;
  color:#fff;
}
#full-width-7 .cloumn-content h3.plan-image{
  margin:0 0 10px;
  padding:0;
}
#full-width-7 .cloumn-content h3.plan-image:after{
  display:none;
}
#full-width-7 .cloumn-content h4 {
    font-size: 20px;
    line-height: 32px;
    font-weight: 400;
    color:#e4e516;
    display: block;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    margin: 0 0 40px;
    letter-spacing: 4px;
}
#full-width-7 .slider-img{
      margin: 0;
      width: 50%;
}
#full-width-7 .slider-img .testimonial .slick-prev.slick-arrow {
    background: url(https://cdn2.hubspot.net/hubfs/5834572/GCH%20Images%20July%202019/Location%20Images/previse-arrow.png);
    border: none;
    color: #fff;
    font-size: 20px;
    left: 41%;
    top: 83%;
    position: absolute;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 5px;
    z-index: 9999;
    background-repeat: no-repeat;
    text-indent: -9999px;
    width: 48px;
    height: 48px;
    outline: none;
}
#full-width-7 .slider-img .testimonial .slick-next.slick-arrow {
    background: url(https://cdn2.hubspot.net/hubfs/5834572/GCH%20Images%20July%202019/Location%20Images/next-arrow.png);
    border: none;
    color: #fff;
    font-size: 20px;
    right: 41%;
    top: 83%;
    position: absolute;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 5px;
    z-index: 9999;
    background-repeat: no-repeat;
    text-indent: -9999px;
    width: 48px;
    height: 48px;
    outline: none;
}
.content-holder p a {
     color: #0c8c9f;
     text-transform: uppercase;
     font-weight: 500;
}
.map-column{
   background-image:url(https://cdn2.hubspot.net/hubfs/5834572/GCH%20Images%20July%202019/Location%20Images/map-section-bg.png);
   background-repeat: no-repeat;
   background-position: center top;
   background-size: 100% auto;
   padding: 70px 0 70px;
  position:relative;
  overflow: hidden;
  background-color:#0c8c9f;
}
.map-column::after {
    position: absolute;
    content: '';
    right: 0;
    bottom: 0px;
/*     background: url(https://cdn2.hubspot.net/hubfs/5834572/GCH%20Images%20July%202019/Location%20Images/map-section-after.png); */
    max-width: 951px;
    height: 150px;
    width: 55%;
    background-size: 100% auto;
    background-repeat: no-repeat;
}
.btn-contact a{
      text-indent: -99999px;
}
.neighboring-area h2{
   font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    position: relative;
    padding: 0 0 0px;
    color: #e4e516;
    display: block;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 5px;
    word-spacing: 5px;
    text-transform: uppercase;
    margin: 0px 0 33px;
}
.neighboring-area p {
    margin: 0 0 15px;
    color: #fff;
    font-size: 16px;
}
.click-address h2{
   font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    position: relative;
    padding: 0 0 0px;
    color: #e4e516;
    display: block;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 5px;
    word-spacing: 5px;
    text-transform: uppercase;
    margin: 0px 0 28px;
}
.click-address p {
    margin: 0 0 15px;
    color: #fff;
    font-size: 16px;
}

/*...........  Location Page Style  ..........*/

#full-width-10 img {
  display:block;
  width:100% !important;
  height:auto;
  margin: 0 0 32px;
  padding: 0;
}
.cta-build img {
   display:block;
  width:100% !important;
  height:auto;
   margin: 107px 0;
}
#full-width-10{
  padding: 70px 0 0;
}
#full-width-10 ul {
      list-style: none;
      margin: 0;
      padding: 0 0 50px;
     text-align: center;
}
#full-width-10 ul li {
  padding: 0 35px 0 0;
    display: inline-block;
  }
#full-width-10 ul li a{ 
    color: #999999;
    font-size: 22px;
    line-height: 26px;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    }
#full-width-10 ul li a:hover{
    color: #0c8c9f;
}
#full-width-10  ul li.active a{
  color: #231f20;     
}
.asses-img .span4:nth-child(4), 
.asses-img .span4:nth-child(6) {
    margin: 0 !important;
}
.asses-dfltimg.span8:nth-child(7) {
    float: right !important;
}
.asses-dfltimg.span4:nth-child(8) {
    margin: 0 !important;
    float: none !important;
    overflow: hidden;
}
.custom-box{
  width:100%;
  overflow:hidden;
}

/*...........  Lifestyle Page Style  ..........*/

.button-hold-2 {
    margin: -100px 0 0;
   margin-left: 0px;
}
#full-width-11 {
    width: 100%;
    overflow: hidden;
    background: #0c8c9f;
    padding: 70px 0;
}
#full-width-11 .heading span {
    font-size: 30px;
    line-height: 38px;
    font-weight: 400;
    position: relative;
    display: block;
    color:#fff;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 5px;
    word-spacing: 0px;
    text-transform: uppercase;
    margin: 0;
  text-align: center;
}
#full-width-11 .column{
  overflow:hidden;
  text-align:center;
}
#full-width-11 .column .cloumn-bx {
    width: 100%;
    overflow: hidden;
}
#full-width-11 .column .cloumn-bx .logo-bx {
    min-height: 240px;
    display: flex;
    align-items: center;
    text-align: center;
}
#full-width-11 .column .cloumn-bx .logo-bx img{margin:0 auto;}
#full-width-11 .column .cloumn-bx .logo-link {
    width: 100%;
    overflow: hidden;
}
#full-width-11 .column .cloumn-bx .logo-link a{
  font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    position: relative;
    color:#e4e516;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 3px;
    word-spacing: 0px;
    text-transform: uppercase;
    margin: 0;
  text-align: center;
}
.hs-error-msgs {
    padding: 0;
    list-style: none;
  margin: 30px 0 0;
}


/*........... Pages Responsive Style  ..........*/

@media only screen and (max-width: 1300px){
  .header-logo{padding:0 0 0 15px;}
  #footer-box{padding:60px 15px;}
  #bottom-footer{padding:25px 8px 18px;;}
  .form-holder{padding:0 15px;}
  #full-width-3 {
    position: relative;
    padding: 40px 15px 25px;
  }
  #full-width-3 h3{
    font-size: 95px;
    line-height: 95px;
  }
  #full-width-10 {
    padding: 70px 15px 0;
}
.custom-box{
  padding: 70px 15px 0;
}
  #full-width-7 .cloumn-content {
    padding: 0 40px 0 !important;
}
  #full-width-7 .slider-img .testimonial .slick-prev.slick-arrow{
    left: 39%;
  }
  #full-width-7 .slider-img .testimonial .slick-next.slick-arrow{
    right: 39%;
  }
  .contact-box {
    padding: 15px;
    margin: 20px 0 0px;
}
  .contact-box .contact-inner {
    border: 1px solid #d3d411;
    padding: 18px 18px;
}
  .contact-box .contact-inner h6 {
    font-size: 50px;
    line-height: 54px;
  }
  .map-column::after{height:130px;}
  #two-columns-section .two-columns{margin: 0 0 0 14px;}
  #full-width-4 .about-section {
    padding: 30px 15px;
}
}
@media only screen and (max-width: 1199px){
  .Header-nav ul li{
    padding: 0 26px 0 0;
  }
  #full-width-1 .content-holder,
  #full-width-1 .image-box{padding:0 15px;}
  #footer-box .footer-nav ul li a{font-size: 13px;}
  
#full-width-2 .video-box::after {
    left: 6px;
    width: 95%;
}
  #full-width-2 .video-box{padding:0 15px;}
  #full-width-2 .video-box iframe{width:100% !important;}
  .form-holder .hs_firstname {
    margin-right: 13px !important;
}
  #full-width-3 h3{
    font-size: 95px;
    line-height: 95px;
  }
  #full-width-7 .cloumn-content {
    padding: 50px 40px 40px !important;
}
#full-width-7 .cloumn-content h3{
  padding: 0 0 27px;
  margin: 0 0 30px;
}
#full-width-7 .cloumn-content h4{
    margin: 0 0 20px;
}
#full-width-7 .cloumn-content p {
    margin: 0 0 20px;
}
  .map-column::after{height:115px;}
  .holder-columns {
    padding: 0 15px;
}
  #full-width-8 .text-column {
    padding: 70px 0 70px;
}
  #map-section .neighboring-area-text p{width: 65px;}
  #map-section .neighboring-area-text span{width: 123px;}
 #full-width-7 .testimonial-slider {
    padding: 0;
    margin: 65px 0 0;
}
  #about-two-column .cloumn-content {
    margin: 0;
    width: 50%;
    padding: 40px 40px;
}
  #full-width-4 .image-bg {top: 26%;}
  #full-width-4 .image-bg {
    top: 33%;
}
}
@media only screen and (max-width: 1023px){
  .banner-box {
    padding: 160px 0 0;
  }
  .Header-nav ul li {
    padding: 0 9px 0 0;
}
  .Header-nav ul li a {
    font-size: 14px;
  }
    #footer-box .footer-logo {
    overflow: hidden;
    width: 20%;
}
  #footer-box .footer-nav {
    overflow: hidden;
    padding: 0;
    width: 30%;
}
  #footer-box .footer-nav ul{
    text-align: center;
  }
  #footer-box .footer-nav ul li::after{display:none;}
  #footer-box .footer-nav ul li{display:block;padding:0 0 10px;}
  #footer-box .footer-form {
    width: 44%;
}
  #footer-box .footer-nav ul li a {
    font-size: 16px;
}
.form-holder .hs_firstname {
    margin-right: 0px !important;
}
  #full-width-3 h3{
    font-size: 95px;
    line-height: 95px;
  }
  .map-column::after{height:85px;}
  .map-column .empty-box{
    display:none;
  }
  .map-col{
    width:60% !important;
    float:right !important;
  }
  .click-address h2,
  .neighboring-area h2{
   font-size: 20px;
  line-height: 28px;
  }
  #full-width-7 .cloumn-content {
    padding: 50px 40px 40px !important;
    width: 100% !important;
}
  #full-width-7 .slider-img {
    margin: 0;
    width: 100%;
}
  #full-width-7 .slider-img .testimonial .slick-next.slick-arrow {right: 43%;}
  #full-width-7 .slider-img .testimonial .slick-prev.slick-arrow {left: 43%;}
  #full-width-11 .column .cloumn-bx .logo-link a {
    font-size: 14px;
    line-height: 18px;
  }
  #map-section .image-text {
    left: -60px;
}
  #map-section .image-text .pera h4 {
    font-size: 14px;
    line-height: 24px;
  }
  #map-section .neighboring-area-text span {
    width: 77px;
}
  #map-section .work-box h4{margin: 15px 0 10px;}
  .neighboring-area-text {
    padding: 0;
}
  #full-width-8 .text-column h2::after {
    right: -14px;
    width: 70px;
    height: 70px;
    background-size: 100% auto;
  }
  #full-width-8 .text-column {
    padding: 70px 0 0;
}
  #full-width-8 .text-column h2 {
    font-size: 17px;
    line-height: 26px;
  }
  #two-columns-section {
    padding: 20px 0 50px;
    overflow: hidden;
}
  #two-columns-section .two-columns {
    margin: 0;
    padding: 0 15px;
}
  #two-columns-section .two-columns .column-content {
    padding: 0;
}
  #two-columns-section .two-columns .large-content {
    padding: 0;
}
 #two-columns-section .two-columns .page-box{
    width: 100% !important;
    margin:30px 0 0;
}
  #two-columns-section .two-columns .slider-img{
    width: 100%;
  }
  #two-columns-section .two-columns .floating-image {
    margin: 0 !important;
    width: 100% !important;
}
#two-columns-section .two-columns .testimonial .slick-prev.slick-arrow{
  background-size: inherit;
    left: 40%;
  }
  #two-columns-section .two-columns .testimonial .slick-next.slick-arrow{
  background-size: inherit;
    right: 40%;
  }
  #two-columns-section .two-columns .large-content h3, #two-columns-section .two-columns .column-content h3{margin:0 0 30px;}
  #about-two-column .iamge-column {
    width: 100%;
}
#about-two-column .cloumn-content {
    margin: 0;
    width: 100%;
    padding: 40px 40px;
}
  #about-two-column .cloumn-content {
    width: 100%;
}
  #full-width-7 .testimonial-slider {
    padding: 0;
    margin: 0;
}
  #column-box .three-column .column{min-height: 472px;}
}
@media only screen and (max-width: 767px){
  .header-container-wrapper {
    position: absolute;
    z-index: 999;
    width: 100%;
}
  .widget-span.hs-header-wrapper {
    position: relative;
  }
  .hs-header-bottom-bar,
  .fixheader .hs-header-wrapper .hs-header-bottom-bar{
    padding:24px 0;
  }
  .header-logo {
    padding: 0;
}
  .logo {
    margin: 0 auto;
  }
  .fixheader .hs-header-wrapper .logo {
    max-width: 193px;
  }
  .fixheader .hs-header-wrapper{
    background:none;
    box-shadow: none;
    padding: 0px;
  }
  .Header-nav {
    overflow: hidden;
    position: absolute;
    z-index: 99999;
    top: 0;
    left:0;
    right: 0;
}
  .testimonial{padding:0 15px;}
  .testimonial-slider .slaider-text h1 {
    font-size: 60px;
    line-height: 60px;
  }
  #full-width-1 {
    padding: 30px 0;
  }
  #full-width-1 .content-holder h2{letter-spacing: 5px;}
  #full-width-2 .video-box iframe {
    width: 100% !important;
    height: 300px;
}
  #full-width-2 .video-box::after {
    left: 4px;
    width: 96%;
    bottom: -2px;
}
  #column-box {
    padding: 30px 0 0;
  }
  #column-box .page-heading h2{letter-spacing: 5px;}
  #column-box .three-column {
    padding: 50px 25px 0;
  }
#footer-box .footer-logo img {
    width: 193px !important;
    margin: 0 auto;
}
  #footer-box .footer-logo,
  #footer-box .footer-nav,
  #footer-box .footer-form{
    width: 100%;
    margin:0 0 30px;
    text-align:center;
}
  #footer-box .footer-nav ul li a {
    font-size: 16px;
}
#footer-box {
    padding: 40px 15px 0;
}
  #bottom-footer {
    padding: 25px 0;
    text-align: center;
}
  #bottom-footer .social-icons{width: 100%;text-align: center;}
.footer-form {
    position: relative;
    min-height: 120px !important;
}
.footer-form h3{margin: 0 0 20px;}
.inner-banner{130px 0 0;}
.inner-banner .banner-heading h1{
  font-size: 120px;
line-height: 130px;
}
.form-holder .hs_firstname {
    margin-right: 0 !important;
}
.form-holder .hs_firstname, .form-holder .hs_lastname {
    width: 100% !important;
}
.form-holder .hs_lastname {
    margin-right: 0px !important;
    margin-left: 0 !important;
}
.form-holder .hs_firstname .input{
    margin: 0 0 30px !important;
}
.form-holder input[type="submit"] {
    background: #0c8c9f !important;
    border: none;
    padding: 12px 0;
    width: 160px;
    color: #e4e516;
    font-size: 18px;
    text-transform: uppercase;
    margin: 0;
  border-radius: 0 !important;
}
#full-width-3 h3 {
    font-size: 49px;
    line-height: 49px;
    text-align: center;
    display: block;
}
#full-width-3{margin:0 0 30px;}
#full-width-3 span {
  margin: 0 0 10px;
    text-align: center;
    display: block;
}
#full-width-10 {
    padding: 30px 15px 0;
}
#full-width-10 ul {
    padding: 0 0 33px;
}
#full-width-10 ul li {
    padding: 0 15px 0 0;
    display: inline-block;
}
#full-width-10 ul li a {
    font-size: 19px;
}
.custom-box {
    padding: 0px 15px 0;
}
#full-width-3 .home-section {
    position: relative;
    right: 0;
    bottom: 0;
    text-align: center;
}
#full-width-3 .home-section span.btn-build{
  margin: 0 auto;
}
  #full-width-7 .slider-img .testimonial .slick-next.slick-arrow {right: 38%;}
  #full-width-7 .slider-img .testimonial .slick-prev.slick-arrow {left: 38%;}
.map-col {
    width: 100% !important;
    float: right !important;
}
.map-column {
    background-image: none;
    padding: 40px 15px 40px;
    background-color: #0c8c9f;
}
.map-column::after{width: 83%;;}
 .content-holder a{display:block;}
  #two-columns-section .two-columns {
    margin: 0;
    padding: 0 15px;
}
  #two-columns-section .two-columns .column-content {
    padding: 0;
  }
  #two-columns-section .two-columns .large-content {
    padding:0;
}
  #two-columns-section {
    padding: 0;
    overflow: hidden;
  }
  #two-columns-section .two-columns .large-content h2, #two-columns-section .two-columns .column-content h2{margin:0 0 20px;}
  #two-columns-section .two-columns .slider-img .testimonial .slick-prev.slick-arrow{
    left: 38%;
    width: 10%;
    height: 19%;
    background-size: 100% auto;
    top:70%;
  }
  #two-columns-section .two-columns .slider-img .testimonial .slick-next.slick-arrow{
    right: 38%;
    width: 10%;
    height: 19%;
    background-size: 100% auto;
    top:70%;
  }
  .slider-imgbx{margin:30px 0 0 !important;}
  #full-width-11 {
    padding: 40px 0 10px;
}
  #full-width-11 .heading span{
    margin:0 0 30px !important;
    font-size: 26px;
line-height: 30px;
  }
  #full-width-11 .column .cloumn-bx {
    margin: 0 0 30px;
}
  #full-width-11 .column .cloumn-bx .logo-bx {
    margin: 0 0 30px;
    min-height:auto;
}
.button-hold-2 {margin: 0;}
  #full-width-9 {
    padding: 30px 15px 0;
  }
  #map-section .neighboring-area-text p {
    font-size: 14px;
    width: 49%;
    line-height: 18px;
}
    #map-section .neighboring-area-text span {
    font-size: 14px;
    width: 49%;
    line-height: 18px;
}
  #map-section .tower-image {
    margin: 0;
    width: 50%;
    float: left;
}
  #map-section img {
    width: auto !important;
    margin: 20px auto;
    display: block;
    height: auto !important;
}
  #map-section .image-text {
    left: 0;
}
  #full-width-8 .text-column {
    padding: 0 15px 0;
}
  #full-width-8,
  #full-width-8 .text-column h2::after{background-image:none;}
  #full-width-8 .text-column h2 {
    font-size: 17px;
    line-height: 26px;
    margin: 0 0 30px;
}
  #full-width-8 .text-column p {
    margin: 0 0 30px;
}
  #full-width-8 .e-book-image {
    display: block;
}
  #full-width-8 .text-column .btn-read-more::after{
    margin: 0 0 0 10px;
  }
  #two-columns-section .two-columns .testimonial .slick-prev.slick-arrow {
    background-size: 100% auto;
    left: 38%;
}
  #two-columns-section .two-columns .testimonial .slick-next.slick-arrow {
    background-size: 100% auto;
    right: 38%;
}
  .footer-form .input {
    float: left;
    width: 93%;
}
  .testimonial-slider .slaider-text h1{max-width: 68%;}
  .testimonial-slider .slaider-text p{ max-width: 94%;}
  .testimonial-slider .slaider-text span{max-width: 94%;}
  .testimonial .slick-prev.slick-arrow,
  .testimonial .slick-next.slick-arrow{
    top: 94%;
    z-index: 9999;
    font-size: 16px;
  }
  #full-width-4 {padding: 10px 0 0;}
  #full-width-4 .about-section {
    padding: 30px 15px 0;
}
  #full-width-4 .image-bg {
    position: relative;
    right: 0;
    content: "";
    padding: 0 0 30px;
    top: 0;
}
  #about-two-column .cloumn-content {
    padding: 40px 15px;
}
  #full-width-5 {
    padding: 40px 0;
}
  #full-width-5 .list-holder .left-list{
    text-align: center;
    width: 100%;
    display: block;
  }
  #full-width-5 .list-holder .left-list li {
    display: block;
    padding: 0 0 15px 0;
    width: 300px;
    margin: 0 auto;
}
  #full-width-5 .list-holder .list-image{
    text-align: center;
    padding: 15px 0 15px;
 }
  #full-width-5 .list-holder .right-list li {
    display: block;
    padding: 15px 0 0 0;
    width: 300px;
    margin: 0 auto;
}
#full-width-6 {
    padding: 40px 15px 30px;
    background-image: none;
    background: #0c8c9f;
}
  #full-width-6 .button-box img {
    width: 60% !important;
    margin: 0 auto;
}
  #full-width-7 .testimonial-slider {
    padding: 0;
    margin: 0;
}
  .grecaptcha-badge{
  margin: 0 auto;
}
  #column-box .three-column .column{min-height: auto;}
  .asses-dfltimg.span8:nth-child(7) {
    float: right !important;
    width: 100%;
}
  #full-width-11  .column-last .cloumn-bx .logo-bx img{
    width: 100%;
  }

}
@media only screen and (max-width: 479px){
.testimonial-slider .slaider-text h1 {
    font-size: 40px;
    line-height: 49px;
    margin: 0;
  max-width: 94%;
}
.testimonial-slider .slaider-text h1 strong {
    font-size: 86px;
    line-height: 90px;
}
  .testimonial-slider .slaider-text p {
    font-size: 16px;
  }
  .testimonial-slider {
    padding: 0 0 20px;
}
  .inner-banner .banner-heading h1 {
    font-size: 90px;
    line-height: 110px;
}
  .form-holder .hs-submit{top:0;float: none;}
  .form-holder input[type="submit"] {
    margin: 20px auto 30px;
}
  #full-width-3 {
    margin: 20px 0 30px;
}
  #full-width-3 h3 {
    font-size: 32px;
    line-height: 32px;
}
#full-width-10 ul li {
    padding: 0 10px 0 0;
}
#full-width-10 ul li a {
    font-size: 14px;
}
  #full-width-7 .cloumn-content {
    padding: 30px 15px 30px !important;
}
  .contact-box .contact-inner h6 {
    font-size: 44px;
    line-height: 44px;
}
  .map-column::after {
    height: 54px;
}
.contact-box .contact-inner h5{
    margin:0 0 20px;
  padding: 0 0 12px;
}
#full-width-7 .slider-img .testimonial .slick-prev.slick-arrow {
    left: 34%;
  top:75%;
}
#full-width-7 .slider-img .testimonial .slick-next.slick-arrow {
    right: 34%;
  top:75%;
}
#map-section img {
    width: auto !important;
    margin: 20px auto;
    display: block;
    height: auto !important;
}
.tower-image2 {
    width: 50% !important;
    float: left !important;
}
  #map-section .work-box h4 {
    margin: 0
}
    #map-section .level-image {
    padding: 105px 0 0;
}
  #map-section .image-text{position: relative;}
  #map-section .image-text img {
    float: none !important;
    width: auto !important;
    width: 100px !important;
    margin: 20px auto 0;
}
  #map-section .image-text .pera {
    padding: 10px 0;
}
  #map-section .image-text .pera h4{margin:0;}
  #map-section .level-image {
    padding: 0;
}
  .footer-form .input {
    float: left;
    width: 90%;
}
  #full-width-6 .button-box img {
    width: 100% !important;
    margin: 0 auto;
}
  .hs_recaptcha{padding: 0 0 30px;}
  #full-width-2 .video-box {
    padding: 0 9px;
}
   #full-width-11  .column-last .cloumn-bx .logo-bx img{
    width: 100%;
  }
}



.image-box img {
    width: 100% !important;
}

.Header-nav ul li {
padding: 0 20px 0 0 !important;
}