/* Fonts web */
@font-face {
  font-family: 'fontTitle';
  src: url('../fonts/Peace\ Sans.ttf');
}
@font-face {
  font-family: 'fontContent';
  src: url('../fonts/Poppins-Regular.otf');
}
@font-face {
  font-family: 'fontsubTitle';
  src: url('../fonts/POPPINS-BOLD.OTF');
}

:root {
  --font-primary: 'fontTitle';
  --font-hero: 'fontsubTitle';
  --font-blog: 'fontContent';
}
body{
    background-color: #041941;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='200' viewBox='0 0 160 80'%3E%3Cg fill='%23145A9C' fill-opacity='0.09'%3E%3Cpolygon points='0 10 0 0 10 0'/%3E%3Cpolygon points='0 40 0 30 10 30'/%3E%3Cpolygon points='0 30 0 20 10 20'/%3E%3Cpolygon points='0 70 0 60 10 60'/%3E%3Cpolygon points='0 80 0 70 10 70'/%3E%3Cpolygon points='50 80 50 70 60 70'/%3E%3Cpolygon points='10 20 10 10 20 10'/%3E%3Cpolygon points='10 40 10 30 20 30'/%3E%3Cpolygon points='20 10 20 0 30 0'/%3E%3Cpolygon points='10 10 10 0 20 0'/%3E%3Cpolygon points='30 20 30 10 40 10'/%3E%3Cpolygon points='20 20 20 40 40 20'/%3E%3Cpolygon points='40 10 40 0 50 0'/%3E%3Cpolygon points='40 20 40 10 50 10'/%3E%3Cpolygon points='40 40 40 30 50 30'/%3E%3Cpolygon points='30 40 30 30 40 30'/%3E%3Cpolygon points='40 60 40 50 50 50'/%3E%3Cpolygon points='50 30 50 20 60 20'/%3E%3Cpolygon points='40 60 40 80 60 60'/%3E%3Cpolygon points='50 40 50 60 70 40'/%3E%3Cpolygon points='60 0 60 20 80 0'/%3E%3Cpolygon points='70 30 70 20 80 20'/%3E%3Cpolygon points='70 40 70 30 80 30'/%3E%3Cpolygon points='60 60 60 80 80 60'/%3E%3Cpolygon points='80 10 80 0 90 0'/%3E%3Cpolygon points='70 40 70 60 90 40'/%3E%3Cpolygon points='80 60 80 50 90 50'/%3E%3Cpolygon points='60 30 60 20 70 20'/%3E%3Cpolygon points='80 70 80 80 90 80 100 70'/%3E%3Cpolygon points='80 10 80 40 110 10'/%3E%3Cpolygon points='110 40 110 30 120 30'/%3E%3Cpolygon points='90 40 90 70 120 40'/%3E%3Cpolygon points='10 50 10 80 40 50'/%3E%3Cpolygon points='110 60 110 50 120 50'/%3E%3Cpolygon points='100 60 100 80 120 60'/%3E%3Cpolygon points='110 0 110 20 130 0'/%3E%3Cpolygon points='120 30 120 20 130 20'/%3E%3Cpolygon points='130 10 130 0 140 0'/%3E%3Cpolygon points='130 30 130 20 140 20'/%3E%3Cpolygon points='120 40 120 30 130 30'/%3E%3Cpolygon points='130 50 130 40 140 40'/%3E%3Cpolygon points='120 50 120 70 140 50'/%3E%3Cpolygon points='110 70 110 80 130 80 140 70'/%3E%3Cpolygon points='140 10 140 0 150 0'/%3E%3Cpolygon points='140 20 140 10 150 10'/%3E%3Cpolygon points='140 40 140 30 150 30'/%3E%3Cpolygon points='140 50 140 40 150 40'/%3E%3Cpolygon points='140 70 140 60 150 60'/%3E%3Cpolygon points='150 20 150 40 160 30 160 20'/%3E%3Cpolygon points='150 60 150 50 160 50'/%3E%3Cpolygon points='140 70 140 80 150 80 160 70'/%3E%3C/g%3E%3C/svg%3E");
}

/* Top Header */
.top-header {
  background: #145A9C;
  color: #fff;
  font-size: 0.9rem;
}

.top-header span{
    font-family: var(--font-hero);
}

.top-header i {
  margin-right: 5px;
}

.top-header a {
  color: #fff;
  margin-left: 10px;
  transition: opacity 0.3s;
}

.top-header a:hover {
  opacity: 0.7;
}

/* Navbar */
.navbar{
    background-color: #F7931E;
}

#mainNavbar {
  width: 100%;
  transition: all 0.3s ease;
  z-index: 999;
}

.navbar-brand{
    margin-left: 35px;
}

/* Sticky state */
#mainNavbar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #F7931E;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  animation: slideDown 0.35s ease;
}

/* Animation */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Logo */
.navbar-brand img {
  height: 40px;
  margin-right: 8px;
}

/* Links */
.nav-item a{
    font-family: var(--font-hero);
    font-weight: 500;
    color: #041941;
    position: relative;
    display: inline-block;
    text-decoration: none;
  padding-bottom: 3px;
  transition: color 0.3s ease;
}

.nav-link {
  font-family: var(--font-hero);
  font-weight: 500;
  color: #041941;
}

.nav-item a:active{
    font-size: 20px;
}

.nav-item a::after, .nav-item a::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #93A8AC, #292929);
  bottom: -5px;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease-out;
}

.nav-item a::before{
    top: -5px;
  transform-origin: left;
}

.nav-item a:hover::after, .nav-item a:hover::before{
    transform: scaleX(1);
}



.nav-item a:hover{
    color: #041941;
    font-size: 25px;
}


.btn-dark-blue {
    background: #041941;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #145A9C, #041941);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #145A9C#243B55, #041941); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    color: #fff;
    border: 3px solid #eee;
    font-family: var(--font-hero);
}

.btn-dark-blue:hover {
    background: #041941;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #145A9C, #041941);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #145A9C#243B55, #041941); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    color: #F7931E;
    border: 3px solid #eee;
}

.btn-rounded {
    border-radius: 35px;
}


/* Responsive tweaks */
@media (max-width: 768px) {
  .top-info span {
    display: block;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav-item {
    text-align: center;
  }
}

.video-hero {
  height: 100vh;
  width: 100%;
}

/* Video full screen */
.video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: coverau;
  z-index: 1;
}

.video-bg-roofing {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}


/* Overlay */
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

.video-overlay-roofing {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

@media (max-width: 768px) {
  .video-overlay p {
    font-size: clamp(8px, 4vw, 18px);
  }
}

/* Content over video */
.video-hero .container {
  z-index: 3;
}

/* section 2 about */
.roofing-section {
  background-color:transparent;
}

.roofing-section h2 {
  font-family: var(--font-hero);
  color: #F7931E;
}

.roofing-section p {
  font-family: var(--font-blog);
  color: #eee;
  font-size: 20px;
}

.roofing-section button {
  font-family: var(--font-hero);
  color: #041941;
  border: 3px solid #eee;
  background-color: #F7931E;
}

/* Logo */
.roofing-logo {
  max-width: 320px;
}

.animated-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.static-text {
    font-family: var(--font-primary);
  color: #0d6efd;
  margin-left: 8px;
}

.animated-text {
    font-family: var(--font-hero);
  color: #F7931E;
  margin-left: 8px;
  border-right: 3px solid #212529;
  padding-right: 6px;
  white-space: nowrap;
  animation: blink 0.8s infinite;
}

.video-overlay-title .static-text {
  margin-right: 10px;
}

/* Texto animado */
.video-overlay-title .animated-text {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-left: 3px solid #fff;
  padding-left: 10px;
  animation: slideIn 1.5s ease-out forwards;
}

/* Animación izquierda → derecha */
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .video-overlay-title .hero-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .animated-text {
    font-size: clamp(20px, 4vw, 18px);
  }
}

/* Cursor blink */
@keyframes blink {
  0%, 50%, 100% { border-color: transparent; }
  25%, 75% { border-color: #212529; }
}

/* Section 3 Counters */
.counter-section {
  background-color: #F7931E;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='74' height='74' viewBox='0 0 200 200'%3E%3Cdefs%3E%3ClinearGradient id='a' gradientUnits='userSpaceOnUse' x1='100' y1='33' x2='100' y2='-3'%3E%3Cstop offset='0' stop-color='%23000' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%23000' stop-opacity='1'/%3E%3C/linearGradient%3E%3ClinearGradient id='b' gradientUnits='userSpaceOnUse' x1='100' y1='135' x2='100' y2='97'%3E%3Cstop offset='0' stop-color='%23000' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%23000' stop-opacity='1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg fill='%23d67800' fill-opacity='0.08'%3E%3Crect x='100' width='100' height='100'/%3E%3Crect y='100' width='100' height='100'/%3E%3C/g%3E%3Cg fill-opacity='0.08'%3E%3Cpolygon fill='url(%23a)' points='100 30 0 0 200 0'/%3E%3Cpolygon fill='url(%23b)' points='100 100 0 130 0 100 200 100 200 130'/%3E%3C/g%3E%3C/svg%3E");
}

.counter-box h2 {
    font-family: var(--font-hero);
  font-size: clamp(4.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #041941;
;
}

.counter-box p {
    font-family: var(--font-hero);
    font-size: 25px;
  margin-top: 10px;
  font-weight: 500;
  color: #041941;
}

/* Section About */
.modalfree h5 {
  font-family: var(--font-hero);
  color: #041941;
}

.modal-content .modal-header{
  background-color: #041941;
}

/* Section 4 services */
a
{
	cursor:pointer;
}

p
{
	padding-bottom:1rem;
}

h5
{
  text-transform:uppercase;
	font-weight:bold;
	color:#2b2b2b;
}

.box-shadow
{
	-webkit-box-shadow: 0 1px 1px rgba(72,78,85,.6);
	box-shadow: 0 1px 1px rgba(72,78,85,.6);
	-webkit-transition: all .2s ease-out;
	-moz-transition: all .2s ease-out;
	-ms-transition: all .2s ease-out;
	-o-transition: all .2s ease-out;
	transition: all .2s ease-out;
}

.box-shadow:hover
{
	-webkit-box-shadow: 0 20px 40px rgba(72,78,85,.6);
	box-shadow: 0 20px 40px rgba(72,78,85,.6);
	-webkit-transform: translateY(-15px);
	-moz-transform: translateY(-15px);
	-ms-transform: translateY(-15px);
	-o-transform: translateY(-15px);
	transform: translateY(-15px);
}

.card
{
	border-radius: 25px;
	
}

.card img
{
	border-top-left-radius: 25px;
	border-top-right-radius: 25px;
}

.card svg
{
	position:absolute;
	top:19rem;
  -webkit-transition: all .2s ease-out;
	-moz-transition: all .2s ease-out;
	-ms-transition: all .2s ease-out;
	-o-transition: all .2s ease-out;
	transition: all .2s ease-out;
	filter:drop-shadow(2px -9px 4px rgba(0, 69, 134, 0.2));
}
.card:hover svg
{
	filter:drop-shadow(2px -9px 4px rgba(0, 69, 134, 0.4));
}

.services i
{
	position:absolute;
	top: 18rem;
	right: 2rem;
	color:white;
	font-size:3rem;
	background: rgb(238,174,202);
	background: linear-gradient(133deg, rgba(255,255,255,1) 0%, rgba(211,210,231,1) 19%, rgba(11,39,73,1) 100%);
	padding: 1rem;
	border-radius: 100%;
	transition: all .6s ease-in-out;
}

.services h3{
    font-family: var(--font-hero);
    font-size: 30px;
    color: #eee;
}

.services h1{
    font-family: var(--font-primary);
    font-size: 40px;
    color: #F7931E;
}

.services P{
    font-family: var(--font-blog);
    font-size: 20px;
    color: #eee;
}

.services a{
    background: #041941;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #145A9C, #041941);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #145A9C#243B55, #041941); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    color: #F7931E;
    border: 3px solid #F7931E;
    font-size: 15px;
}

.card:hover i
{
	transform: rotate(-180deg);
}

i:hover
{
	box-shadow: rgba(2, 196, 255, 0.25) 0px 30px 60px -12px inset, rgba(255, 2, 204, 0.7) 0px 18px 36px -18px inset;
}

/* Section Feaures */
.features{
    margin-top: 50px;
    padding: 30px;
}


.features h1{
    font-family: var(--font-primary);
    color: #F7931E;
}

.features p{
  font-family: var(--font-blog);
  color: #eee;
}

.features h3{
    margin-top: 30px;
    font-family: var(--font-hero);
    color: #F7931E;
    text-align: center;
}

.features .card h3{
  font-family: var(--font-hero);
}

.features .card ul li{
  font-family: var(--font-blog);
}

.container .card .icon {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

}



.container .card .slide {

    width: 300px;

    height: 200px;

    transition: 0.5s;

}

.container .card .slide.slide1 {

    position: relative;

    display: flex;

    justify-content: center;

    align-items: center;

    z-index: 1;

    transition: .7s;

    transform: translateY(100px);

}

.container .card:hover .slide.slide1{

    transform: translateY(0px);

}

.container .card .slide.slide2 {

    position: relative;

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 5px;

    box-sizing: border-box;

    transition: .8s;

    transform: translateY(-100px);

    box-shadow: 0 20px 40px rgba(0,0,0,0.4);

}

.container .card .slide2{
    border-radius: 30px;
}

.container .card:hover .slide.slide2{

    transform: translateY(0);

}

.container .card .slide.slide2::after{

    content: "";

    position: absolute;

    width: 30px;

    height: 4px;

    bottom: 15px;

    transform: translateX(-50%);

    background: #2c73df;

}

.container .card .slide.slide2 .content p {

    margin: 0;

    padding: 0;

    text-align: center;

    color: #414141;

}

.container .card .slide.slide2 .content h3 {

    margin: 0 0 10px 0;

    padding: 0;

    font-size: 24px;

    text-align: center;

    color: #414141;

} 

.galery{
  position: relative;
  width: 100%;
  min-height: 100vh; /* Pantalla completa */
  background-image: url("../image/Roofing/d2845c9b-6a2a-44ac-a33a-967b5be09436.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.galery .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;         /* 🔥 cubre todo el alto del section */
  background: rgba(0, 0, 0, 0.55);
}

.galery .container {
   position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .galery {
    min-height: 80vh;
  }
}

.conbg {
  padding: 20px;
}
.bg2 {
  z-index: 2;
  position: relative;
  width: 70%;
  margin: 100px auto;
  transform: rotate(10deg);
  background-image: url("../image/Roofing/66091cae-481b-481f-a574-39db606be7be.jpg");
  background-size: cover;
  background-position: right -50px;
  background-color: lightslategray;
  box-shadow: 5px 5px 3px rgba(0, 0, 0, 0.5);
}
.bg1 {
  z-index: 3;
  position: relative;
  margin: auto;
  transform: rotate(-5deg);
  background-image: url("../image/Roofing/e640ed0a-3156-4360-bec0-68b66649de40.jpg");
  background-size: cover;
  background-position: right -70px;
  background-color: lightslategray;
  box-shadow: 5px 5px 3px rgba(0, 0, 0, 0.5);
}
.bg {
  z-index: 4;
  position: relative;
  margin: auto;
  transform: rotate(-5deg);
  height: 500px;
  background-image: url("../image/Roofing/2069b1ab-e8b7-4ca3-9a0b-1b62d6707349.jpg");
  background-size: cover;
  background-position: right -50px;
  background-color: lightslategray;
  box-shadow: 5px 5px 3px rgba(0, 0, 0, 0.5);
}
.bg-text {
  width: 100%;
  position: absolute;
  display: inline-block;
  bottom: 0;
  left: 0;
}
.bg-text a {
  margin: 5px;
  float: right;
}

#bg1:target .bg {
  animation: ciut 1s forwards;
}
#bg1:target {
  animation: fre 0.3s forwards;
}
#bg2:target .bg1 {
  animation: ciut 1s forwards;
}
#bg2:target {
  animation: fre1 0.3s forwards;
}
#conbg:target .bg2 {
  animation: ciut1 1s;
}
@keyframes fre1 {
  0% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes fre {
  0% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(-10deg);
  }
}
@keyframes ciut {
  0% {
    opacity: 1;
    transform: rotate(-5deg) scale(1);
  }
  100% {
    opacity: 0;
    transform: rotate(360deg) scale(0);
  }
}
@keyframes ciut1 {
  0% {
    opacity: 0;
    transform: rotate(0deg) scale(0);
  }
  100% {
    opacity: 1;
    transform: rotate(370deg) scale(1);
  }
}


.footer-widget p {
    margin-bottom: 27px;
}


/* footter */
.footer {
  background-color: #145A9C;
  color: #cbd5e1;
  margin-top: 50px;
}

.footer-logo {
  max-width: 180px;
}

.footer h5{
  font-family: var(--font-hero);
  color: #eee;
}

.footer p{
  font-family: var(--font-hero);
  color: #eee;
  font-size: 25px;
}



.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-right: 10px;
  border-radius: 50%;
  background: #1e293b;
  color: #F7931E
;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  background: #3b82f6;
  transform: translateY(-4px);
  color: #eee;
}

.newsletter-form input {
  border-radius: 6px 0 0 6px;
}

.newsletter-form button {
  border-radius: 0 6px 6px 0;
}

.contact-phone {
  font-size: 16px;
}

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

.footer-links a {
  font-family: var(--font-hero);
  color: #cbd5e1;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.footer-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #F7931E
;
  left: 0;
  bottom: -3px;
  transition: width 0.3s ease;
}

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

.footer-links a:hover::after {
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  font-size: 14px;
}

@media (max-width: 767px) {
  .footer-links {
    text-align: center;
  }

  .footer-links li {
    display: inline-block;
    margin: 0 10px 8px;
  }

  .contact-phone {
    text-align: center;
  }

  .newsletter-form {
    text-align: center;
  }
}

/*++++++++++++++ ABOUT +++++++++++ */
.about h1, span{
  font-family: var(--font-hero);
}

.about h1{
  color: #eee;
}

.about span{
  color: #F7931E;
}

.about p{
  font-family: var(--font-blog);
  color: #eee;
}

.about h4{
  font-family: var(--font-hero);
  color: #eee;
}

.about i{
  color: #F7931E;
}

/*++++++++++++++ Counties We Serve  +++++++++++ */
.coberture {
  background-color: #F7931E;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='74' height='74' viewBox='0 0 200 200'%3E%3Cdefs%3E%3ClinearGradient id='a' gradientUnits='userSpaceOnUse' x1='100' y1='33' x2='100' y2='-3'%3E%3Cstop offset='0' stop-color='%23000' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%23000' stop-opacity='1'/%3E%3C/linearGradient%3E%3ClinearGradient id='b' gradientUnits='userSpaceOnUse' x1='100' y1='135' x2='100' y2='97'%3E%3Cstop offset='0' stop-color='%23000' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%23000' stop-opacity='1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg fill='%23d67800' fill-opacity='0.08'%3E%3Crect x='100' width='100' height='100'/%3E%3Crect y='100' width='100' height='100'/%3E%3C/g%3E%3Cg fill-opacity='0.08'%3E%3Cpolygon fill='url(%23a)' points='100 30 0 0 200 0'/%3E%3Cpolygon fill='url(%23b)' points='100 100 0 130 0 100 200 100 200 130'/%3E%3C/g%3E%3C/svg%3E");
}

.coberture h2{
  font-family: var(--font-hero);color: #041941;
}

.coberture h5{
  font-family: var(--font-hero);
  color: #041941;
}

.coberture i{
  color: #eee;
}


/*++++++++++++++ Gutters  +++++++++++ */
.bg5 {
  z-index: 2;
  position: relative;
  width: 70%;
  margin: 100px auto;
  transform: rotate(10deg);
  background-image: url("../image/Gutters/9f9a068f-3994-41ce-ab3e-89234c9746c7.jpg");
  background-size: cover;
  background-position: right -50px;
  background-color: lightslategray;
  box-shadow: 5px 5px 3px rgba(0, 0, 0, 0.5);
}
.bg4 {
  z-index: 3;
  position: relative;
  margin: auto;
  transform: rotate(-5deg);
  background-image: url("../image/Gutters/d6cbd1cb-8eff-4fd7-ace3-8df81ff6f1e2.jpg");
  background-size: cover;
  background-position: right -70px;
  background-color: lightslategray;
  box-shadow: 5px 5px 3px rgba(0, 0, 0, 0.5);
}
.bg3 {
  z-index: 4;
  position: relative;
  margin: auto;
  transform: rotate(-5deg);
  height: 500px;
  background-image: url("../image/Gutters/fe958e68-7922-4312-bc36-80296bc1d577.jpg");
  background-size: cover;
  background-position: right -50px;
  background-color: lightslategray;
  box-shadow: 5px 5px 3px rgba(0, 0, 0, 0.5);
}

#bg4:target .bg3 {
  animation: ciut 1s forwards;
}
#bg4:target {
  animation: fre 0.3s forwards;
}
#bg5:target .bg4 {
  animation: ciut 1s forwards;
}
#bg5:target {
  animation: fre1 0.3s forwards;
}
#conbg:target .bg5 {
  animation: ciut1 1s;
}

/*++++++++++++++ Contact  +++++++++++ */

.contact-area{
  margin-top: 20px;
  padding: 10px;
}

@media only screen and (max-width:768px) {
    .contact {
        margin-bottom: 60px;
    }
}

.contact input {
    background-color: #eee;
    border: 4px solid #F7931E;
    border-radius: 15px;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #232434;
    font-size: 16px;
    height: 60px;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
    width: 100%;
    font-family: 'poppins', sans-serif;
    padding-left: 30px;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.contact textarea {
    background-color: #eee;
    border: 4px solid #F7931E;
    border-radius: 15px;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #232434;
    font-size: 16px;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
    width: 100%;
    font-family: 'poppins', sans-serif;
    padding-left: 30px;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.contact input:focus {
    background: #fff;
    border: 1px solid #fff;
    color: #232434;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: 0 none;
}

.contact textarea:focus {
    background: #fff;
    border: 1px solid #fff;
    color: #232434;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: 0 none;
}

.form-control::placeholder {
    color: #232434;
    opacity: 1;
}

.btn-contact-bg {
    border-radius: 30px;
    border: 4px solid #fff;
    color: #fff;
    outline: medium none !important;
    padding: 15px 27px;
    text-transform: capitalize;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    background: #F7931E;
    font-family: 'poppins', sans-serif;
    cursor: pointer;
    width: 100%;
}

.btn-contact-bg:hover,
.btn-contact-bg:focus {
    background: #145A9C;
    color: #fff;
}

/*START ADDRESS*/

.single_address {
    overflow: hidden;
    margin-bottom: 10px;
    padding-left: 40px;
}

@media only screen and (max-width:768px) {
    .single_address {
        padding-left: 0px;
    }
}

.single_address i {
    background: #f6f6f6;
    color: #041941;
    border-radius: 30px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    float: left;
    margin-right: 14px;
    font-size: 22px;
    -webkit-box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.single_address:hover i {
    background: #F7931E;
    color: #fff;
}

.single_address h4 {
  font-family: var(--font-hero);
  color: #eee;
    font-size: 18px;
    margin-bottom: 0px;
    overflow: hidden;
    font-weight: 600;
}

.single_address p {
  font-family: var(--font-blog);
  color: #eee;
    overflow: hidden;
    margin-top: 5px;
}

.section-title h1 {
  font-family: var(--font-hero);
  color: #eee;
    font-size: 44px;
    font-weight: 500;
    margin-top: 0;
    position: relative;
    text-transform: capitalize;
    margin-bottom: 15px;
}
.section-title p {
  font-family: var(--font-blog);
  color: #eee;
    padding: 0 10px;
    width: 70%;
    margin: auto;
    letter-spacing: 1px;
}
.section-title {
    margin-bottom: 60px;
}
.text-center {
    text-align: center!important;
}

/*++++++++++++++ siding  +++++++++++ */
.bg8 {
  z-index: 2;
  position: relative;
  width: 70%;
  margin: 100px auto;
  transform: rotate(10deg);
  background-image: url("../image/siding/siding1.jpg");
  background-size: cover;
  background-position: right -50px;
  background-color: lightslategray;
  box-shadow: 5px 5px 3px rgba(0, 0, 0, 0.5);
}
.bg7 {
  z-index: 3;
  position: relative;
  margin: auto;
  transform: rotate(-5deg);
  background-image: url("../image/siding/siding2.jpg");
  background-size: cover;
  background-position: right -70px;
  background-color: lightslategray;
  box-shadow: 5px 5px 3px rgba(0, 0, 0, 0.5);
}
.bg6 {
  z-index: 4;
  position: relative;
  margin: auto;
  transform: rotate(-5deg);
  height: 500px;
  background-image: url("../image/siding/siding.jpg");
  background-size: cover;
  background-position: right -50px;
  background-color: lightslategray;
  box-shadow: 5px 5px 3px rgba(0, 0, 0, 0.5);
}

#bg7:target .bg6 {
  animation: ciut 1s forwards;
}
#bg7:target {
  animation: fre 0.3s forwards;
}
#bg8:target .bg7 {
  animation: ciut 1s forwards;
}
#bg8:target {
  animation: fre1 0.3s forwards;
}
#conbg:target .bg8 {
  animation: ciut1 1s;
}

/*++++++++++++++ Contrato  +++++++++++ */
.section-form h2, h5, label{
  font-family: var(--font-blog);
  color: #eee;
}

.section-form thead{
  background-color: #F7931E;
}