@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;800&family=Roboto:wght@300;400;700&display=swap');

/* Variables */
:root {
  --primary-color: #212121;
  --secondary-color: #f25a2c;
}

/* CSS RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

p {
  color: gray;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.5px;
  font-size: 1.1rem;
  font-family: 'Roboto', sans-serif;
}

a {
  text-decoration: none;
  color: var(--secondary-color);
}

a:hover {
  text-decoration: none;
}

h2 {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
}

h1, .heading-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

.mt-80 {
  margin-top: 80px;
}

.heading-title {
  background-image:linear-gradient(transparent 60%,var(--secondary-color) 60%);
  background-repeat: no-repeat;
  background-size: 80% 100%;
  background-position: top center;
  font-size: 3rem;
}

@media (max-width: 768px) {
  .heading-title {
    font-size: 2.5rem;
  }
}



/* Navbar */
.navbar {
  background: white!important;
  padding: 0;
}

a.navbar-brand img {
  height: 60px;
}

#navbarNavDropdown {
  flex-direction: row-reverse;
}

#navbarNavDropdown ul li a {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 1.2px;
  transition: 0.3s all ease-in;
  text-transform: uppercase;
  padding-left: 15px;
  padding-right: 15px;
}

#navbarNavDropdown ul li a.active {
  color: var(--primary-color);
}

#navbarNavDropdown ul li a:hover {
  color: var(--primary-color);
}

#navbarNavDropdown ul li a.active::after {
  content: '';
  display: block;
  width: 100%;
  padding-top: 10px;
  border-bottom: 3px solid var(--primary-color);
}

@media (min-width: 768px) and (max-width: 991px) {
  #navbarNavDropdown ul li a.active::after {
    width: 10%;
  }
} 

@media (max-width: 767px) {
  #navbarNavDropdown ul li a.active::after {
    width: 20%;
  }
}

.navbar .dropdown-menu {
  background: var(--primary-color);
  padding: 10px 0;
  border-radius: 0;
  min-width: 200px;
  top: 56px;
  left: 10px;
  border: unset;
}

.dropdown-item {
  background: linear-gradient(to left, var(--primary-color) 50%, var(--secondary-color) 50%) right;
  background-size: 200%;
  transition: .3s ease-out;
  color: var(--secondary-color);
  padding: 14px 25px!important;
}

.dropdown-item:hover {
  background-position: left;
  color: var(--primary-color);
}


/* Header */
#header-home-section {
  min-height: 100vh;
  background: linear-gradient(to right, rgba(0,0,0,0.5) 100%, transparent 0%),url('../img/home-header-bg.jpg') no-repeat bottom left;
  background-size: cover;
}

.header-content {
  color: #fff;
  text-align: center;
}

.header-content h1 {
  font-weight: 600;
}

.header-content h2 {
  font-weight: 400;
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-top: 22vh;
  padding: 5px;
  color: white;
  margin-bottom: 0px;
}


.header-content p {
  margin: 10px 0 50px 0;
  color: #fff;
  font-size: 1.1rem;
}

.header-content .btn-main {
  color: #fff;
  font-size: 1.1rem;
  text-transform: uppercase;
  padding: 16px 60px;
  border: 3px solid var(--secondary-color);
  transition: 0.3s all ease-in;
}

.header-content .btn-main:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .header-content h2 {
    margin-top: 18vh;
  }

  .header-content p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .header-content h2 {
    margin-top: 14vh;
    font-size: 1.1rem;
  }
}


/* Home Special Box */
#special {
  margin-top: -10vh;
}

.home-special-box {
  background: var(--secondary-color);
  padding: 100px 40px 60px;
  height: 100%;
  box-shadow: 0 15px 45px rgba(0,0,0,0.1);
  position: relative;
}

.home-special-box:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s;
}

.home-special-box:hover:before {
  transform: scaleY(1);
  transform-origin: bottom;
  transition: transform 0.5s;
}

.home-special-box h2 {
  color: var(--primary-color);
  position: absolute;
  top: 10px;
  font-size: 3rem;
  font-weight: 300;
  z-index: 1;
  font-family: 'Roboto', sans-serif;
  text-align: left;
  margin-bottom: 0;
  transition: 0.5s;
}

.home-special-box:hover h2 {
  opacity: 1;
  color: var(--secondary-color);
}

.home-special-box h3 {
  position: relative;
  font-size: 2rem;
  font-family: 'Roboto', sans-serif;
  color: var(--primary-color);
  z-index: 2;
  transition: 0.5s;
}

.home-special-box:hover h3 {
  color: var(--secondary-color);
}

.home-special-box p {
  position: relative;
  font-size: 1.2rem;
  margin-top: 20px;
  font-family: 'Roboto', sans-serif;
  z-index: 2;
  color: white;
  transition: 0.5s;
}

.home-special-box:hover p {
  color: white;
}

@media (max-width: 768px) {
  .home-special-box {
    padding: 80px 20px 20px;
  }

  .home-special-box h2 {
    font-size: 2.5rem;
  }

  .home-special-box h3 {
    font-size: 1.5rem;
  }

  .home-special-box p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  #special {
    margin-top: 40px;
  }

  #special .col-md-4 {
    margin: 10px 0;
  }
}

/* About Home Section */
#about-home-section {
  margin: 80px 0;
}

.about-content-left p {
  padding: 0;
  text-align: justify;
}

.image-column {
  position:relative;
	margin-bottom:50px;
}

.image-column .inner-column{
	position:relative;
	padding:40px 40px 0px 0px;
}

.image-column .inner-column:after{
	position:absolute;
	content:'';
	right:0px;
	top:0px;
	left:40px;
	bottom:100px;
	z-index:-1;
	border:5px solid var(--secondary-color);
}

.image-column .inner-column .image{
	position:relative;
}

.image-column .inner-column .image:before{
	position:absolute;
	content:'';
	left:-50px;
	bottom:-50px;
	width:299px;
	height:299px;
}

.image-column .inner-column .image img{
	position:relative;
	width:100%;
	display:block;
}

.image-column .inner-column .image .overlay-box{
	position:absolute;
	left:40px;
	bottom:48px;
}

.image-column .inner-column .image .overlay-box .year-box{
	position:relative;
	color: var(--secondary-color);
	font-size:24px;
	font-weight:700;
	line-height:1.4em;
	padding-left:125px;
}

.image-column .inner-column .image .overlay-box .year-box .number{
	position:absolute;
	left:0px;
	top:0px;
	width:110px;
	height:110px;
	color:var(--primary-color);
	font-size:68px;
	font-weight:700;
	line-height:105px;
	text-align:center;
	background-color:var(--secondary-color);
	border:1px solid var(--primary-color);
}


.about-item {
  display: flex;
  margin-bottom: 20px;
}

.about-item-right {
  margin-left: 20px;
  vertical-align: center;
}

.about-item-icon {
  color: var(--primary-color);
}

/* Get Started Section */
#get-started-section {
  padding: 80px 0;
  background: var(--primary-color);
}

#get-started-section h2 {
  color: white;
}

#get-started-section .heading-title {
  background: none;
}

#get-started-section h3 {
  color: var(--secondary-color);
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
  margin-bottom: 10px;
}

#get-started-section h4 {
  color: var(--secondary-color);
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
  margin-bottom: 5px;
}

#get-started-section p {
  color: white;
}


/* Services Home Section */
#services-home-section {
  padding: 80px 0;
  background: #ebeff2;
}

.img-box{
  position: relative;
  /* height: 300px; */
  background: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-box:before {
  content: '';
  position: absolute;
  top: 40px;
  bottom:-10px;
  left:40px;
  right:-10px;
  background:var(--secondary-color);
  z-index: -1;
}

.item img {
  border: none;
}

.item h3 {
  margin-top: 25px;
  font-weight: 500;
  letter-spacing: 0.8px;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-transform: capitalize;
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
}

@media (max-width: 576px) {
  .item h3 {
    font-size: 1.75rem;
  }
}


.item a.btn-secondary {
  display: inline-block;
  color: #fff;
  font-size: 1.1rem;
  text-transform: uppercase;
  padding: 10px 30px;
  transition: 0.3s all ease-in;
  background: var(--primary-color);
  border-radius: 5px;
}

.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 30px;
}

a.btn-style-two {
  position: relative;
  line-height: 24px;
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 700;
  background: none;
  display: inline-block;
  padding: 12px 40px;
  background-color: #ffffff;
  text-transform: capitalize;
  border: 2px solid var(--primary-color);
  font-family: 'Roboto', sans-serif;
}

a.btn-style-two:before {
  position: absolute;
  content: '';
  left: 10px;
  top: -10px;
  z-index: -1;
  right: -10px;
  bottom: 10px;
  background: url(https://i.ibb.co/DKn55Qz/pattern-1.jpg) repeat;
}

a.btn-style-two:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
}

/* Home Difference Section */
#difference-home-section {
  padding-top: 80px;
  padding-bottom: 80px;
  min-height: 550px;
  background: linear-gradient(to right, rgba(0,0,0,0.65) 100%, transparent 0%),url('../img/home-difference-background.jpg') no-repeat center left;
  background-size: cover;
}

#difference-home-section .container {
  text-align: center;
}

#difference-home-section .heading-title {
  color: white;
  background-image:linear-gradient(transparent 60%,var(--secondary-color) 60%);
  background-repeat: no-repeat;
  background-size: 80% 100%;
  background-position: top center;
}

#difference-home-section p {
  text-align: center;
  color: white;
  margin: 10px 0 50px 0;
}

#difference-home-section .btn-main {
  color: #fff;
  font-size: 1.1rem;
  text-transform: uppercase;
  padding: 16px 60px;
  border: 3px solid var(--secondary-color);
  transition: 0.3s all ease-in;
}

#difference-home-section .btn-main:hover {
  background: var(--secondary-color);
  color: white;
}

/* Home CTA */
#home-cta {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #ebeff2;
  text-align: center;
}


#home-cta p {
  margin: 0px 0 30px 0;
}

#home-cta .btn-main {
  display: inline-block;
  color: var(--primary-color);
  font-size: 1.1rem;
  text-transform: uppercase;
  padding: 16px 60px;
  border: 3px solid var(--primary-color);
  transition: 0.3s all ease-in;
  margin-bottom: 20px;
}

#home-cta .btn-main:hover {
  background: var(--primary-color);
  color: white;
}

/* Footer Main */
#footer-main {
  padding-top: 80px;
  padding-bottom: 40px;
  background-color: var(--primary-color);
}

@media(max-width: 991px) {
  #footer-main {
    text-align: center;
  }
} 

#footer-main h3 {
  color: var(--secondary-color);
  font-family: 'Roboto', sans-serif;
  margin-bottom: 20px;
  font-size: 1.75rem;
}

@media(max-width: 991px) {

  #footer-main h3 {
    margin-bottom: 10px;
  }

  .mt-05 {
    margin-top: 20px;
  } 
}

#footer-main p {
  font-size: 1rem;
  color: white;
  margin: 10px 0;
}

#footer-main a {
  display: block;
  color: white;
  margin: 5px 0;
}

#footer-main .footer-credentials {
  text-align: center;
  margin-top: 30px;
  font-size: 0.8rem;
}

#footer-main a.vervedev {
  display: inline;
  color: var(--secondary-color);
}

/* PHOTO GALLERY */
.photo-gallery {
  color:#313437;
  background-color:#fff;
}

.photo-gallery p {
  color:#7d8285;
}

.photo-gallery h2 {
  font-weight:bold;
  margin-bottom:10px;
  padding-top:40px;
  color:inherit;
}

.img-thumbnail {
  padding: .25rem;
  background-color: #fff;
  border: 1px solid #dee2e6 !important;
  border-radius: .25rem !important;
  max-width: 100%;
  height: auto;
}

@media (max-width:767px) {
  .photo-gallery h2 {
    margin-bottom:25px;
    padding-top:25px;
    font-size:24px;
  }
}

.photo-gallery .intro {
  font-size:16px;
  max-width:500px;
  margin:0 auto 40px;
}

.photo-gallery .intro p {
  margin-bottom:0;
}

.photo-gallery .photos {
  padding-bottom:20px;
}

.photo-gallery .item {
  padding-bottom:30px;
}

/* ABOUT PAGE */
.header-about-content {
  background: var(--primary-color);
  padding: 80px 0 40px 0;
}

.header-about-content h2 {
  color: var(--secondary-color);
  font-size: 1.1rem;
  text-transform: uppercase;
  font-weight: 600;
  text-align: left;
  margin-bottom: 10px;
  letter-spacing: 0.8px;
}

.header-about-content p {
  line-height: 1.8;
  color: #e6e6e6;
  letter-spacing: 0.8px;
  text-align: left;
  font-size: 1.3rem;
  margin-bottom: 30px;
}

.about-main-img {
  background-image: url('../img/about-main-img.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 40vh;
}

.about-page-content-1 {
  margin: 80px 0;
}

.about-page-content-1 img {
  max-height: 50vh;
  margin: 0 50px;
  border-radius: .5rem;
}

#about-bg-section {  
  padding-top: 80px;
  padding-bottom: 80px;
  min-height: 30vh;
  background: linear-gradient(to right, rgba(0,0,0,0.65) 100%, transparent 0%),url('../img/home-difference-background.jpg') no-repeat center left;
  background-size: cover;
}

#about-bg-section p {
  color: white;
  text-align: center;
  margin: 0;
}

/* SERVICES PAGE */
.services-header-content {
  padding: 80px 0;
  height: 40vh;
}

.services-header-content h2 {
  margin-top: 5vh;
  text-align: left;
}

.service-heading-title {
  color: white;
  background: var(--primary-color);
  line-height: 1.7;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 3px;
  padding: 10px;
  transition: all 0.3s;
}

@media (max-width: 567px) {
  .service-heading-title {
    font-size: 2.3rem;
    padding: 10px 0;
  }
}

/* SERVICES PAGES */
.mid-bg-section {
  padding-top: 80px;
  padding-bottom: 80px;
  min-height: 30vh;
}

.mid-bg-section p {
  color: white;
  text-align: center;
  margin: 0;
}


.services-kitchen {
  background: url('../img/kitchen-main.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#kitchen-mid-bg-section {    
  background: linear-gradient(to right, rgba(0,0,0,0.6) 100%, transparent 0%),url('../img/kitchen-3.jpg') no-repeat center left;
  background-size: cover;
}

.services-bathroom {
  background: url('../img/bathroom-main.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center; 
}

.services-roofing {
  background: url('../img/roofing-main.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center; 
}

#roofing-mid-bg-section {    
  background: linear-gradient(to right, rgba(0,0,0,0.3) 100%, transparent 0%),url('../img/roofing-2.jpg') no-repeat bottom left;
  background-size: cover;
}

.services-siding {
  background: url('../img/siding-main.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center; 
}

#siding-mid-bg-section {    
  background: linear-gradient(to right, rgba(0,0,0,0.5) 100%, transparent 0%),url('../img/siding-3.jpg') no-repeat center left;
  background-size: cover;
}

.services-wad {
  background: url('../img/wad-main.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center; 
}

#wad-mid-bg-section {    
  background: linear-gradient(to right, rgba(0,0,0,0.65) 100%, transparent 0%),url('../img/wad-3.jpg') no-repeat center left;
  background-size: cover;
}

.services-addition {
  background: url('../img/addition-main.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#addition-mid-bg-section {    
  background: linear-gradient(to right, rgba(207, 159, 159, 0.05) 100%, transparent 0%),url('../img/addition-3.jpg') no-repeat center left;
  background-size: cover;
}

.services-groundup {
  background: url('../img/groundup-main.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}



.contact-bg {
  background: url('../img/home-header-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}


/* CONTACT */
#contact-map {
  margin: 80px 0;
}

.contact-content {
  padding-left: 20px;
}

.contact-content .about-item .about-item-left svg {
  font-size: 1.75rem;
}

.contact-item {
  font-size: 1rem;
}

#contact-form {
  margin-bottom: 80px;
}

#contact-form input {
  padding: 20px;
  display: block;
  width: 100%;
  border: none;
  background: #e6e6e6;
  margin-top: 20px;
}

#contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 20px;
  border: none;
  background: #e6e6e6;
  padding: 20px;
}

button.contact-btn {
  margin-top: 20px;
  color: var(--secondary-color);
  background: var(--primary-color);
  padding: 15px 60px;
  display: block;
  border: none;
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.7;
}

/* Meet the Team */
#meet-the-team {
  padding: 80px 0;
  background: #EBEFF2;
}

#meet-the-team h2 {
  margin-bottom: 10px;
}

.team-member {
  margin: 15px 0;
  padding: 0;
}

.team-member figure {
  position: relative;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.team-member figure img {
  width: 100%;
  height: 416px;
}

.team-member figcaption p {
  font-size: 16px;
  color: white;
}

.team-member figcaption ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.team-member figcaption ul {
  visibility: visible;
  -webkit-transition: all 0.3s ;
  -moz-transition: all 0.3s ;
  -o-transition: all 0.3s ;
  transition: all 0.3s ;
}

.team-member figcaption ul li {
  display: inline-block;
  padding: 10px;
}

.team-member h4 {
  margin: 10px 0 0;
  padding: 0;
}

.team-member figcaption {
  padding: 50px;
  color: transparent;
  background-color: transparent;
  position: absolute;
  z-index: 996;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  -webkit-transition: all 0.3s ;
  -moz-transition: all 0.3s ;
  -o-transition: all 0.3s ;
  transition: all 0.3s ;
}

.team-member figure:hover figcaption {
  visibility: visible;
  color: #fff;
  background: rgb(16, 41, 78, 0.8);
  height: 100%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.team-member figure:hover figcaption ul li a {
  color: var(--secondary-color) !important;
}



/* Design Build */
#design-build {
  margin: 80px 0 0;
}

.bg-design-build {
  background: var(--primary-color);
  margin-top: 80px;
}

.bg-design-build {
  padding: 80px 0 80px;
}


.bg-design-build h3 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
}

.bg-design-build p {
  color: white;
}

