/* 1- general css style */
/* #53ddd0*/
/* #4c5a70 */
/* */

/* 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: #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;
}

.p1 {
  line-height: 35px;
  color: #fff;
}

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


.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: #364153;

  &:after {
    background-color: #53ddd0;
  }
}

.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;
  }
}


/* CSS */
.button-89 {
  --b: 3px;
  /* border thickness */
  --s: .45em;
  /* size of the corner */
  --color: #53DDD0;

  padding: calc(.5em + var(--s)) calc(.9em + var(--s));
  color: var(--color);
  --_p: var(--s);
  background:
    conic-gradient(from 90deg at var(--b) var(--b), #0000 90deg, var(--color) 0) var(--_p) var(--_p)/calc(100% - var(--b) - 2*var(--_p)) calc(100% - var(--b) - 2*var(--_p));
  transition: .3s linear, color 0s, background-color 0s;
  outline: var(--b) solid #0000;
  outline-offset: .6em;
  font-size: 16px;

  border: 0;

  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-89:hover,
.button-89:focus-visible {
  --_p: 0px;
  outline-color: var(--color);
  outline-offset: .05em;
}

.button-89:active {
  background: var(--color);
  color: #fff;
}




#b {
  /* background-color: #52B3D9; */
  transform: scale(1);
  transition: .8s;
  border: 2px dashed #3d4859;
  border-radius: 10px;
  padding: 9px;
}

#b:hover {
  transform: scale(1.18);
}






/* header */
.hero {
  background-image: url(../garage-door/bg1.webp);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-color: #3d4859;
  background-size: 100% 100%;
}

.nav-item a {
  color: #fff;
}

/* topbar */
.topbar {
  border-style: solid;
  border-width: 0 0 2px;
  border-color: rgba(109, 124, 142, 0.31);
}

.text-box {
  top: 50%;
  color: #9ec8b9;
  transform: translateY(-50%);
  margin-top: 350px;
  padding-bottom: 45px;
}

.carousel-item img {
  width: 100%;
}

#slider-animation {
  max-height: 550px;
}

h1 {
  color: #53ddd0;
  font-weight: bold;
}

p {
  color: #2f2f2f;
}

.img {
  margin-top: 215px;
  margin-bottom: 60px;

  z-index: 1;
  padding-top: 11px;

}

.img1 {
  margin-left: -96px;
}


h2 {

  color: #3d4859;
  font-weight: bold;

}

.textt {

  font-size: 17px;
  color: #092635;
  font-weight: bold;
}

.line {
  font-size: 20px;
  color: #092635;
  line-height: 41px;
  font-weight: bold;
}

.bg1 {
  background-color: #4c5a70;

  padding-top: 4%;
}

.bg1 img {
  /* margin-top: -140px; */
  border: 2px solid #fff;
  margin-bottom: 10%;
}


/* photo */
.photo {
  margin-top: 100px;
}



.bg-color1 {
  background-color: #2c3137b2;
  margin-top: 106px;
}




a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

a,
a:hover {
  text-decoration: none !important;
}

.content {
  padding: 5rem 0;
}

h2 {
  font-size: 20px;
}


.media-29101 img {
  margin-bottom: 20px;
  width: 100%;
  height: auto;
}

.media-29101 span {
  font-size: 14px;
  font-weight: 900 !important;
}

.media-29101 span a {
  color: #fff
}

.owl-2-style .owl-nav {
  display: none;
}

.owl-dots {
  display: none;
}



/* form  */


form label {
  opacity: 0;
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0
}

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

.spam {
  display: none;
}

input {
  width: 48%;
  float: left;
  margin-right: 2%;
  height: 50px;
  margin-top: 5%;
  padding: 1%;
  color: #000;
  border-radius: 16px 0 16px 0;

  font-size: 14px;
}

textarea.form-control {
  width: 98%;
  float: left;
  margin-right: 2%;
  height: 50px;
  margin-top: 5%;
  padding: 1%;
  color: #000;
  font-size: 14px;
  border-radius: 0%;
  border: 1px solid #0000005e;
  border-radius: 16px 0 16px 0;
}

.submit {
  width: 38%;
  float: left;
  height: 50px;
  margin-top: 2%;
  padding: 1%;
  color: #53ddd0;
  background-color: #4c5a70;
  font-size: 17px;
  border-radius: 16px 0 16px 0;
  margin-right: 3%;
  border-radius: 8px;
}

.service-btn {

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

  &:hover {
    background-color: #53DDD0;
  }
}

.btn1 {
  background-color: #3d4859;
  color: #fff;
  font-size: 13px;
  border-radius: 0;
  float: left;
}

.btn1 a {
  color: #fff;
}

.btn1:hover {
  background-color: #53ddd0;
  color: #3d4859;
}

/* footer  */
.footer {
  background-color: #3d4859;
  padding-top: 2%;
  line-height: 30px;
}

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


.copyright {
  border-top: 2px solid #53ddd0;
  text-align: center;
  margin-top: 14px;
  color: #fff;
}

.b-g {
  background-color: #4c5a70e3;
  height: 364px;
  margin-top: 105px;
}

.b-g-img {
  margin-left: -244px;
  z-index: -1;
}

.data {
  background-color: #3d4859;
  margin-top: -71px;
}

@keyframes animate {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-20px, -20px);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: rotate(45deg) translate(20px, 20px);
  }
}

@media(max-width:980px) {
  .b-g-img {
    margin-left: 0;
    z-index: -1;
  }
}
@media(max-width:991px) {
  .data {
   margin-top: 10px;
  }
}