/* Reset & Base */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
  font-family: Raleway, Arial, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #27212e;
  /* background-image: url(/images/body_bg.jpg); */
  /* background-size: cover; */
  color: #333;
  font-weight: 400;
  background-attachment: scroll;
    position: relative;
    background-position: top center;
    background-size: 100% auto;
    background-repeat: no-repeat;
    overflow: auto;
    position: static;
}

.body_bg{
  position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    border: none;
    padding: 0;
    margin: 0;
    z-index: -1;
    background-position: 50% 0%;
    background-repeat: no-repeat;
    background-size: cover !important;
    background-color: #27212e;
    background-image: url(../images/body_bg.jpg);
}
.background-overlay {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 40px 0;
}

.container {
  width: 1180px;
  margin: 0 auto;
    position: relative;
    background-size: cover;
}
.bg-white{
  background-color: #ffffff !important;
}
header {
      text-align: center;
      padding: 20px 0 35px 0px;
      height:auto;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
}

.logo {
  font-size: 24px;
  font-weight: bold; 
  top: 0px;
  left: 0px;
}
a {
    text-decoration: none;
}
.logo-text,
.logo-text a {
  color: #ffffff;
  font-family:Trebuchet MS, Helvetica, sans-serif;
  font-size: 56px;
  text-decoration: none;
  line-height: 1em;
  font-weight: 300;
}
.logo p.site-slogan {
  color: #ffffff;
  font-size: 20px;
  position: relative;
  margin: 2px 0 0;
  padding: 0;
  line-height: 1em;
  text-align: center;
  letter-spacing: 2px;
  font-weight: 400;
}

  nav {
    display: flex;
    flex: 1 0 auto;
    justify-content: center;
    background-color: #f7f7f7;
    border-bottom: 1px solid rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 4px 0 rgba(0, 0, 0, 0.1), inset 0 -4px 0 rgba(0, 0, 0, 0.1);
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0) 60%);
    margin-bottom: -1px;
    width: 100%;
    }
.hornav {
    display: flex;
    justify-content: flex-start;
    position: relative;
    padding: 0;
}

.hornav>ul {
    display: flex;
    margin: 0;
    transition: all .2s ease;
}

.hornav>ul li {
    position: relative;
}
.hornav>ul>li {
    position: relative;
    display: flex;
    align-items: stretch;
    padding: 0;
    margin: 0;
    list-style: none outside none;
    transition: all .4s;
    letter-spacing: 0px;
    border-right: 1px solid rgba(0, 0, 0, 0.075);
}
.hornav>ul>li.active {
    box-shadow: inset 1px 0 4px rgba(0, 0, 0, 0.05), inset -1px 0 4px rgba(0, 0, 0, 0.05);
}
.hornav>ul>li:first-of-type {
    border-left: 1px solid rgba(0, 0, 0, 0.075);
}
.hornav>ul>li>a {
    display: block;
    font-size: 1em;
    font-style: normal;
    -webkit-font-feature-settings: normal;
    font-feature-settings: normal;
    line-height: 1rem;
    padding: 28px 22px;
    margin: 0;
    color: #242424;
}
.hornav>ul>li:hover {
    background-color: rgba(0, 0, 0, 0.05);
}
.hornav>ul>li>a:after {
    position: absolute;
    content: '';
    left: 50%;
    right: 50%;
    height: 4px;
    background-color:#403966;
    opacity: 0;
    transition: all .35s ease;
    top: 0;
    transition-delay: .1s;
}
.hornav>ul>li.active>a:after {
    left: 0;
    right: 0;
    opacity: 1;
}

/******* Mobile Menu *******/

.mobile-menu-container{
  display: none;
}
.mobile-menu-container nav{
  justify-content: end;
}
.sidenav {
  height: 100%;
  position: fixed;
  z-index: 5;
  top: 0;
  right: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  text-align:left;
  width:0;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 14px;
  color: #fff;
  font-family: Raleway, Arial, Verdana, sans-serif;
  opacity: .9;
  cursor: pointer;
  display: block;
  transition: 0.3s;

}

.sidenav a:hover{
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 0px;
  font-size: 36px;
  margin-left: 50px;
}
.slideout-toggle{
  padding: 14px 20px;
  cursor: pointer;
  font-size: 38px;
  line-height: 1;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: auto;
  transition: opacity .3s ease;
  color: #555555;
}


/* Hero */

 .hero {
      position: relative;
      height: 400px;
      background: url('hero.jpg') no-repeat center center;
      background-size: cover;
      margin-bottom: 30px;
    }

    .swiper {
      width: 100%;
      height: 400px;
    }

    .swiper-slide img {
      width: 100%;
      height: 400px;
      object-fit: cover;
    }

    .content {
      padding: 40px 0;
      text-align: center;
    }
.hero-img {
  width: 100%;
  height: auto;
  
}

/* Intro Text */
.intro {
  text-align: center;
  margin-bottom: 40px;
}

.intro h4 {
  color: #333;
  font-weight: bold;
  margin-bottom: 10px;
}

.intro h2 {
  font-size: 24px;
}

/*construction-advice section*/

.construction-advice
{
  height: 100%;
 
}
.construction-advice span{
    font-size: 19px;
    font-weight: 700;
    line-height: 1.6em;
    font-family: Raleway, Arial, Verdana, sans-serif;
    color: #403966;
    display: inline-block;
    margin: 30px 0px 20px 0px;
}
.construction-advice h2
{
  color: #404040;
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom:50px;
  font-size: 40px;
  font-weight: 300;
}
.construction-advice p{
  font-family:Arial, Helvetica, sans-serif;
  color: #545454;
  font-weight: bold;
  padding:10px 90px;
  margin:30px 0px;
}

/* Video Section */
.video {
  text-align: center;
  margin-bottom: 40px;
}

.video iframe {
  width: 100%;
  max-width: 640px;
  height: 360px;
}

.quote {
  font-style: italic;
  margin-top: 20px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Services */
.services {
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 15px;
  /* margin-top: 20px; */
}

.services-bg-section{
  background-image: url(../images/article_bg.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  background-attachment: fixed;
  padding: 70px 50px;
}
.services h2
{
  color: #000000;
  font-size: 30pt;
  font-family: helvetica;
  margin-bottom: 40px;
}
.services span{
  font-size: 16px;
  font-family: arial, helvetica, sans-serif;
  color: #000;
  display: block;
  margin-bottom: 30px;
}
.services p
{
  font-family: arial, helvetica, sans-serif;
  font-size: 16px;
  color:#545454;
  padding:10px 90px;
  margin-top:60px;
}
/* Footer */
footer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 50px;
    text-align: center;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.27);
}

.footer-menu {
  margin-bottom: 10px;
}
.footer-menu ul {
    margin: 0;
}
.footer-menu ul li {
    display: inline-block;
    line-height: 1em;
    font-weight: 500;
}
.footer-menu a {
  color: #ffffffcc;
  font-size: 16px;
  font-family: Raleway, Arial, Verdana, sans-serif;
  text-decoration: none;
  padding: 0 5px;
  transition: all 0.5s ease-in-out;
}
.footer-menu ul li a:after, .footer-menu ul li span:after {
    content: '\00B7';
    margin-left: 10px;
    font-weight: bold;
    font-size: 10px;
}
.footer-menu ul li:last-child a:after{
  display: none;
}
.footer-menu a:hover {
  color: #fff;
}
footer .copyright
{
  padding: 10px 0;
  margin: 0 auto;
}
footer .copyright p{
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: .7rem;
    text-transform: uppercase;
    opacity: .8;
    letter-spacing: 1px;
    color: #fff;
}


/****** about page  ******/

.about-left-section, .contact-left-section{
  width: 55%;
  padding: 0px 40px;
  display: inline-flex;
}
.about-left-section .content, .about-left-section  .video{
   text-align:left;
}
.about-left-section .content p, .contact-left-section .content p, .contact-main-section .contact-right-section p{  
  padding:0px;
}
.about-left-section p{
  font-weight: normal;
}
.about-left-section  span, .services-main-section span{
  font-size: 16px;
  line-height: 1.75em;
  font-weight: bold;
  font-family: arial, helvetica, sans-serif;
  color: #545454;
  margin-top: 0px;
}
.about-left-section  span a{
  text-decoration: underline;
}

.about-right-section{
  width: 31%;
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: center;
  padding:0px 40px;
}
.about-right-section p{
 font-family:Arial, Helvetica, sans-serif;
  color: #545454;
  font-weight: normal;
  padding:0px;
  margin:30px 0px;
}

/****** services page ********/


.services-main-section span{
  margin-bottom: 5px;
  list-style-type: disc;
}
.services-main-section .content p{
margin-top:0px;
}

/******* project page  *******/


.project-main-section .content{
    padding: 40px;
    text-align: left;
}

a.gallery-img-box {
    width: 340px;
    height: 300px;
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: .3s ease-out;
    margin:10px;
}
.project-main-section .content img{
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .3s ease-out;
}
.project-main-section a.gallery-img-box:hover
{
   transform: scale3d(1, 1, 1);
}

/** fancy box **/

#myCarousel {
        --f-arrow-pos: 10px;
        --f-arrow-bg: rgba(255,255,255,0.75);
        --f-arrow-hover-bg: rgba(255,255,255,1);
        --f-arrow-color: #333;
        --f-arrow-width: 40px;
        --f-arrow-height: 40px;
        --f-arrow-svg-width: 20px;
        --f-arrow-svg-height: 20px;
        --f-arrow-svg-stroke-width: 2px;
        --f-arrow-border-radius: 50%;

        height: 400px;
      }

      #myCarousel .f-carousel__slide {
        display: flex;
        align-items: center;
        justify-content: center;
      }

      #myCarousel img {
        max-width: 100%;
        max-height: 100%;
        height: auto;
      }

/*** contact page ***/

.contact-right-section{
  width: 31%;
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0px 40px;
}
.contact-left-section .content{
  text-align: left;
   width:100%;
  display: flex;
  flex-direction: column;
}
.form-feild{
  width: 100%;
  display: flex;
  flex-direction: column;
}


label.form-label
{
    color: #333333;
    font-size: 16px;
    margin-bottom: .45em;
    display: block;
    line-height: 1.3;
    font-weight: 500;
    font-family: Arial, Helvetica, sans-serif;
}

.form-control
{
  font-size: 1em;
    color:#757575;
    background-color: #ffffff;
    padding: 12px;
    border: solid 1px #cccccc;
    border-radius: 3px;
    text-align: left;
    margin-bottom: 20px;
}
button[type="submit"]
{
  border-radius: 3px;
    padding: 13px 20px;
    color: #ffffff;
    font-size: 16px;
    background-color: #42a9c7;
    font-family:Source Sans Pro, Arial, Verdana, sans-serif;
    border:none;
}
button[type="submit"]:hover {
    opacity: .8;
}
.contact-left-section .content p{
  margin: 0px 0px 30px 0px;
}
.contact-main-section .contact-right-section p{
  font-weight: normal;
}
.about-in-section {
  width: 90%;
  padding: 0px 40px;
  display: inline-flex;
}
.about-in-section .content{
  text-align: left;
   width:100%;
  display: flex;
  flex-direction: column;
}
.p-15{
  margin-top: 30px !important;
}
.pp{
    font-family: Arial, Helvetica, sans-serif;
    color: #545454;
    font-weight: normal !important;
    padding: 0px 0px !important;

}
.p-121 a{
    font-family: Arial, Helvetica, sans-serif;
    color: #545454 !important;
}