/* 1- general css style */
/*#1e2338*/
/*#986253*/
/*#dfe5e0*/

/* poppins-300 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/poppins-v20-latin-300.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/poppins-v20-latin-regular.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-500 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/poppins-v20-latin-500.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-600 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/poppins-v20-latin-600.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/poppins-v20-latin-700.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-800 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/poppins-v20-latin-800.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #333;
}

::-webkit-scrollbar-thumb {
  background: #f4975a;
}


body {
  font-family: 'Poppins', sans-serif;

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.line {
  display: block;
  height: 4px;
  width: 100px;
  margin: 20px 20px 20px 0;
  background-color: #252525;
  transition: width .5s;
}

.line1 {
  display: block;
  height: 4px;
  width: 100px;
  margin: 20px 20px 20px 48%;
  background-color: #f2be00;
  transition: width .5s;
}

.text-justify {
  text-align: justify;
  padding: 5px;
  word-spacing: 0px;
}

.section-title:hover .line {
  width: 150px;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

hr {
  color: #fff;
}

h1,
h2,
h3,
h4 {
  text-transform: capitalize;
}

p {
  line-height: 35px;

}


.marquee {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  animation: marquee 30s linear infinite;
  color: #eee;

}

.marquee a {

  color: #252525;
}


.marquee:hover {
  animation-play-state: paused
}

/* Make it move */
@keyframes marquee {
  0% {
    text-indent: 27.5em
  }

  100% {
    text-indent: -105em
  }
}

.move {
  position: relative;
  opacity: 0;
}

.move.active {
  opacity: 1;
}

.active.fade-bottom {
  animation: fade-bottom 1s ease-in;
}

.active.fade-left {
  animation: fade-left 1s ease-in;
}

.active.fade-right {
  animation: fade-right 1s ease-in;
}

.active.fade-top {
  animation: fade-top 1s ease-in;
}

@keyframes fade-top {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-left {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-right {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }

}

.tb-effect,
.lt-effect {
  position: relative;
  z-index: 5;

  border-radius: 2px;
}

.tb-effect::after,
.lt-effect::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.tb-effect::after {
  height: 0;
  background-color: #ffffff3d;
  color: #fff;
  transition: height .5s;
  border-radius: 2px;
}

.tb-effect:hover::after {
  height: 100%;
  border-radius: 2px;
}

.tb-effect:hover {
  color: #242a3f;
  border-radius: 2px;
}

.lt-effect {
  width: 110px;
}

.lt-effect::after {
  width: 0;
  background-color: #333;
  color: #fff;
  transition: width .5s;
}

.lt-effect:hover::after {
  width: 100%;
  color: #fff;
}

.button-hover,
.button-hover-1 {
  position: relative;
  overflow: hidden;
  display: inline-block;
  /* border-radius: 25px; */

  &:after {
    display: block;
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    /* border-radius: 25px; */
    top: 0%;
    left: 50%;
    opacity: .4;
    transform: translate(-50%, -50%) scale(0, 0);
    transition: transform .5s ease 0s;
    z-index: 0;
    color: #fff;
  }

  &:hover {
    &:after {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1, 1);
      transition: transform .5s ease 0s;
    }
  }
}

.button-hover {
  background: #b78d65;

  &:after {
    background-color: #252525;
  }
}

.button-hover-1 {
  background: #f2be00;

  &:after {
    background-color: #fff;
  }
}

.btn {
  position: relative;
  text-align: center;
  z-index: 1;
  font-size: 19px;
  background: transparent;
  cursor: pointer;
  color: #fff;
  padding: 30px 40px;
  font-weight: 500;

  &:hover {
    color: #fff;
  }
}

.nav-link {
  color: #252525;
}

.h2 {
  color: #fff;
  font-weight: bold;
  margin-left: 18%;
}

/* nav */
.topbar {
  border-style: solid;
  border-width: 0 0 1px;
  border-color: #fff;
  background-color: #fff;

}

/* header */
.header-bg {
  background-image: url(../garage-door/overhead-doors.webp);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;

}
.header-bg1 {
  background-image: url(../garage-door/residential.webp);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;

}
.header-bg2 {
  background-image: url(../garage-door/replacement.webp);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;

}
.header-bg3 {
  background-image: url(../garage-door/installation.webp);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;

}
.header-bg4 {
  background-image: url(../garage-door/garage-door-rollers.webp);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;

}
.header-bg5 {
  background-image: url(../garage-door/remote-programming.webp);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;

}
.header-bg6 {
  background-image: url(../garage-door/garage-door-tracks.webp);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;

}
.header-color {
  background: rgba(0, 0, 0, 0.712);

}

.img {
  margin-top: 140px;
  margin-bottom: 140px;
}

/* service */
.icons{margin-top: -96px;}


button {
  border-radius: 4px;
  background-color: #284776;
  border: none;
  color: #fff;
  text-align: center;
  font-size: 32px;
  padding: 16px;
  width: 220px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 36px;
  box-shadow: 0 10px 20px -8px rgba(0, 0, 0, .7);
}

button {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

button:after {
  content: '»';
  position: absolute;
  opacity: 0;
  top: 14px;
  right: -20px;
  transition: 0.5s;
}

button:hover {
  padding-right: 24px;
  padding-left: 8px;
}

button:hover:after {
  opacity: 1;
  right: 10px;
}

/* Best Garage Door Repairs */
.repair-bg {
  background-image: url(../garage-door/bg1.webp);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 10%;
  height: 800px;
}

.color {
  background-color: #fff;
  margin-top: -73px;
  z-index: 1;
  position: relative;
  height: 400px;
}

/* repair */
.repair1-bg {
background-color: #b78d65;
}



/* gallery */
@import url(https://fonts.googleapis.com/css?family=Raleway:400,800);

figure.photo {
  font-family: 'Raleway', Arial, sans-serif;
  position: relative;
  overflow: hidden;
  margin: 10px;

  background: #000000;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

figure.photo * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

figure.photo img {
  max-width: 100%;
  position: relative;
  opacity: 0.4;
  display: block;
}

figure.photo figcaption {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

figure.photo h2 {
  position: absolute;
  left: 40px;
  right: 40px;
  display: inline-block;
  background: #000000;
  -webkit-transform: skew(-10deg) rotate(-10deg) translate(0, -50%);
  transform: skew(-10deg) rotate(-10deg) translate(0, -50%);
  /*   transform: skew(-10deg) rotate(-10deg) translate(-150%, -50%); */
  padding: 12px 5px;
  margin: 0;
  top: 50%;
  text-transform: uppercase;
  font-weight: 400;
}

figure.photo h2 span {
  font-weight: 800;
}

figure.photo:before {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  content: '';
  background: #ffffff;
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: rotate(110deg) translateY(-50%);
  transform: rotate(110deg) translateY(-50%);
  /*   transform: rotate(110deg) translateY(-150%); */
}

figure.photo a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
}

figure.photo.red {
  background: #3c250f;
}

figure.photo.red h2 {
  background: #b78d65;
}


figure.photo:hover img,
figure.photo.hover img {
  opacity: 1;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

figure.photo:hover h2,
figure.photo.hover h2 {
  -webkit-transform: skew(-10deg) rotate(-10deg) translate(-150%, -50%);
  transform: skew(-10deg) rotate(-10deg) translate(-150%, -50%);
}

figure.photo:hover:before,
figure.photo.hover:before {
  -webkit-transform: rotate(110deg) translateY(-150%);
  transform: rotate(110deg) translateY(-150%);
}

.flex {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.service-btn2 {

  width: 310px;
  margin: 7px;
  font-size: 15px;
  padding: 8px;
  cursor: text;

  &:hover {
    background-color: #f2be00;
  }
}

.btn02 {
  color: #252525;
  font-size: 12px;
  border-radius: 0;
  float: left;
  border: 1px solid;
  border-radius: 7px;
  text-align: center;
}

.btn02 a {
  color: #fff;
}

.btn02:hover {
  background-color: #b78d65;
  color: #fff;
}


.servicess ul{
width: 100%;
padding:0 ;
}

.servicess ul li{
  width: 25%;
  padding: 0;
  float: left;
  list-style: disclosure-closed;
  line-height: 29px;
  font-size: 14px;
  }
  



/* form  */
.form {
  background-color: #252525;
}

.formbg {
  background-color: #b78d65;
}

.getintouch {
  font-size: 35px;
  color: #fff;
  font-weight: bold;
}


.contact-section {
    background: #f8f9fb;
    padding: 70px 20px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}

.contact-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 50px 40px;
}

.contact-wrapper h2 {
    color: #033981;
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-wrapper p {
    color: #555;
    margin-bottom: 25px;
    font-size: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.input,
.textarea {
    width: 45% !important;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
    margin-bottom: 1%;
}

.textarea2 {
    width: 90% !important;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.input2 {
    width: 90% !important;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
    margin-top: 3%;
    float: left;
    color: #fff;
}

.input:focus,
.textarea:focus {
    border-color: #252525;
}

.contact-btn {
    background: #252525;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    width: fit-content;
    align-self: center;
}

.contact-btn:hover {
    background: #f2893e;
}


.data {
  line-height: 35px;
  color: #252525;
  box-shadow: 4px 12px 13px #1e23384f;
  margin-top: -45px;
  border-radius: 5px;
}

.service-btn {

  width: 178px;
  margin: 7px;
  font-size: 15px;
  padding: 10px;
  cursor: text;

  &:hover {
    background-color: #f2be00;
  }
}

.btn1 {
  color: #fff;
  font-size: 12px;
  border-radius: 0;
  float: left;
  border: 1px solid;
  border-radius: 7px;
  text-align: center;
}

.btn1 a {
  color: #fff;
}

.btn1:hover {
  background-color: #252525;
  color: #fff;
}

/* footer  */
.footer {
  background-color: #252525;
}

a {
  color: #1e2338;
  font-size: 14px;
}

.nav-link:hover {
  color: #986253;
}

.title {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}


.copyright {
  text-align: center;
  margin-top: 14px;
  color: #fff;
}

#lz_overlay_wm .lz_overlay_wm_icon{
  background-color: #b97f3f ;
  border-radius: 50%;
}
.lz_chat_header{
  background-color: #b97f3f !important;
}
#lz_chat_overlay_data_form_ok_button{
  background: #b97f3f !important;
}
@media(max-width:1341px) {
  .h2 {
    margin-left: 0;
  }
}

@media(max-width:1200px) {
  .repair-bg {
    height: auto;
  }

  .color {
    height: auto;
  }

  .repair1-bg {
    height: auto;
  }

  .repair1 {
    height: auto;
  }

  .repair-img1 {
    margin-left: 0;
  }
}

@media(max-width:990px) {
  .repair-img {
    margin-left: 0;
  }
.Services{display: none;}
}