/* 1- general css style */
/* #dfd0b8*/
/* #153448*/
/* #948979 */
/* #3c5b6f */


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

.lt-effect::after {
  width: 0;
  background-color: #dfd0b8;
  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: #153448;

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

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

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

/* topbar */
.topbar {
  border-style: solid;
  border-width: 0 0 2px;
  border-color: rgba(223, 208, 184, 0.24)
}

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

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

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

.colh1 {
  background-color: #3c5b6f;
  margin-left: -90px;
}

h1 {
  color: #dcb677;
  font-weight: bold;
}

p {
  color: #2f2f2f;
}

.img {
  margin-top: 290px;
  margin-bottom: 60px;
  margin-right: -240px;
  z-index: 1;
  padding-top: 11px;

}

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

.col {


  .counter-number {
    line-height: 48px;
    font-size: 48px;
    font-weight: bold;
    color: #239cb7;
  }

  .counter-title {
    color: #153448;

    strong {
      display: block;
      font-size: 1.2rem;
    }
  }
}



.colbg {
  background-color: #fff;
  padding: 2%;
  border-radius: 15px;
  margin: 1%;
  margin-top: 1%;
  margin-top: -149px;
}

h2 {

  color: #dcb677;
  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: #3c5b6f;
  height: 328px;
  margin-top: 106px;
  padding-top: 4%;
}

.bg1 img {
  margin-top: -320px;
  border: 12px solid #fff;
  margin-bottom: 10%;
}


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

.box {
  font-family: 'Cabin', sans-serif;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.box:before {
  content: '';
  background: linear-gradient(to right, #143348, #3c5b6f);
  width: 100%;
  height: 100%;
  opacity: 0.7;
  transform: skew(-45deg) scaleX(0);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}

.box:hover:before {
  transform: skew(-45deg) scaleX(1);
  transition: all 400ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.box img {
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: all 0.3s ease 0s;
}

.box:hover img {
  transform: scale(1.2);
  filter: grayscale(0.7) blur(2px);
}

.box .box-content {
  color: #fff;
  text-align: center;
  width: 100%;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%) scale(0);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transition: all 0.6s ease;
}

.box:hover .box-content {
  opacity: 1;
  transform: translateX(-50%) translateY(-50%) scale(1);
  transition-delay: 0.2s;
}

.box .title {
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, .5);
  margin: 0 0 7px;
}

.box .post {
  font-size: 16px;
  font-style: italic;
  text-transform: capitalize;
  letter-spacing: 1px;
  margin-bottom: 13px;
  display: block;
}

.box .icon {
  padding: 0;
  margin: 0;
  list-style: none;
}

.box .icon li {
  margin: 0 4px;
  display: inline-block;
}

.box .icon li a {
  color: #fff;
  font-size: 18px;
  text-align: center;
  line-height: 35px;
  height: 35px;
  width: 35px;
  border: 2px solid #fff;
  border-radius: 0 0 50% 50%;
  display: block;
  transition: all 0.3s;
}

.box .icon li a:hover {
  background: #862c46;
  box-shadow: 0 0 10px #fff;
}

@media only screen and (max-width:990px) {
  .box {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width:479px) {
  .box .title {
    font-size: 20px;
  }
}



.bg-color1 {
  background-color: #17313f;
  margin-top: 106px;

}


/* form  */


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

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

.spam {
  display: none;
}

input {
  width: 23%;
  float: left;
  margin-right: 2%;
  height: 50px;
  margin-top: 6px;
  padding: 1%;
  color: #000;
  font-size: 14px;
}

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

.submit {
  width: 22%;
  float: left;
  height: 50px;
  margin-top: 6px;
  padding: 1%;
  color: #fff;
  background-color: #938878;
  font-size: 17px;
  margin-right: 3%;
  border-radius: 8px;
}

.service-btn {
  background-color: #111010;
  color: #fff;
  width: 172px;
  margin: 10px;
  font-size: 15px;
  padding: 3px;
  cursor: text;

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

.btn1 {
  background-color: #112935;
  color: #dcb677;
  font-size: 12px;
  border-radius: 0;
  float: left;
  text-align: center;
}

.btn1 a {
  color: #fff;
}

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

/* footer  */
.footer {
  background-color: #17313f;
  padding-top: 2%;
  line-height: 30px;
  margin-top: -29px;
  font-size: 14px;
}

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


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


@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:1383px) {
  .bg01 {
    height: auto;
    padding-bottom: 2%;
  }

  .bar1 {
    height: auto;
  }

  .bg {
    height: auto;

  }

  .bg1 {
    height: auto;

  }
}


.bar1 {
  margin-top: -131px;
  background-color: #153448f5;
  height: 260px
}

.bar2 {
  background-color: #153448f5;
  height: 390px;
}

.bar2-img {
  margin-left: -227px;
  margin-top: 66px;
  z-index: -1;
}

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

  .bar1 {
    height: auto;
  }

  .bg1 img {
    margin-top: 0;

  }
}


@media(max-width:991px) {
  .bg01 {
    height: auto;
    padding-bottom: 2%;
  }

  .bar2-img {
    margin-left: 0;
  }
  .counters{display: none;}

  .bar1 {
    margin-top: 0;
  }
  .img{margin-top: 20px;}
  .bg {
    height: auto;

  }

  .bg1 {
    height: auto;

  }

  .img {
    margin-right: 10px;
  }

  .bg1 img {
    margin-top: 0;
  }
}

@media(max-width:780px) {
  .img1 {
    margin-left: -81px;
  }
}

@media(max-width:530px) {
  .img1 {
    margin-left: -74px;
  }
}

@media(max-width:430px) {
  .img1 {
    margin-left: -64px;
  }
}