/* 1- general css style */
/* #121b25 */
/* #1aa090*/


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

::-webkit-scrollbar-thumb {
  background: #39a2db;
}


body {
  font-family: 'Poppins', sans-serif;
  background-color: #121b25;
}

* {
  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;
}



.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: #34365a;
  border-radius: 2px;
}

.lt-effect {
  width: 110px;
}

.lt-effect::after {
  width: 1%;
  background-color: #1aa090;
  color: #bdd0d7;
  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: #1aa090;

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

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

  &: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: #2a496b;
  }
}

.spin {
  /* width: 100px;
  height: 100px; */

  animation-name: spin;
  animation-duration: 5000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  /* transform: rotate(3deg); */
  /* transform: rotate(0.3rad);/ */
  /* transform: rotate(3grad); */
  /* transform: rotate(.03turn);  */
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Make the image fully responsive */
.carousel-inner img {
  width: 100%;
  height: 100%;
}

/* topbar */
/* .topbar {
  border-style: solid;
  border-width: 0 0 2px;
  border-color: #fff; 
  background-color: #ffffffc4;
} */

.bg {
  background-color: #fff;
  transition: all .5s ease-in-out;
}

.nav-link.active {
  /* background-color: #34365a; */
  border: 2px #1aa090 solid;

}

.nav-link {
  color: #fff;
}

.navbar-collapse ul>li {
  display: inline-block;
  width: 110px;
  text-align: center;
  color: #ffde59;


}

.navbar-collapse ul>li>a {
  display: block;
  font-size: 17px;
  color: #fff;
  /* background-color: #fff; */

}

.navbar-collapse ul>li>a:hover {
  display: block;
  font-size: 17px;
  color: #fff;
}

.nav-icon-1 {
  width: 30px;
  height: 30px;
  position: relative;
  transition: 0.1s;
  margin: 10px 10px;
  cursor: pointer;
  display: inline-block;
}

.nav-icon-1 span {
  width: 5px;
  height: 5px;
  background-color: #fff;
  display: block;
  border-radius: 50%;
  position: absolute;
}

.nav-icon-1 span:nth-child(1) {
  left: 0;
  top: 0;
}

.nav-icon-1 span:nth-child(2) {
  left: 12px;
  top: 0;
}

.nav-icon-1 span:nth-child(3) {
  right: 0;
  top: 0;
}

.nav-icon-1 span:nth-child(4) {
  left: 0;
  top: 12px;
}

.nav-icon-1 span:nth-child(5) {
  position: absolute;
  left: 12px;
  top: 12px;
}

.nav-icon-1 span:nth-child(6) {
  right: 0px;
  top: 12px;
}

.nav-icon-1 span:nth-child(7) {
  left: 0px;
  bottom: 0px;
}

.nav-icon-1 span:nth-child(8) {
  position: absolute;
  left: 12px;
  bottom: 0px;
}

.nav-icon-1 span:nth-child(9) {
  right: 0px;
  bottom: 0px;
}

.nav-icon-1:hover span {
  transform: scale(1.2);
  transition: 350ms cubic-bezier(0.8, 0.5, 0.2, 1.4);
}

.nav-icon-1.open {
  transform: rotate(180deg);
  cursor: pointer;
  transition: 0.2s cubic-bezier(0.8, 0.5, 0.2, 1.4);
}

.nav-icon-1.open span {
  border-radius: 50%;
  transition-delay: 200ms;
  transition: 0.5s cubic-bezier(0.8, 0.5, 0.2, 1.4);
}

.nav-icon-1.open span:nth-child(2) {
  left: 6px;
  top: 6px;
}

.nav-icon-1.open span:nth-child(4) {
  left: 6px;
  top: 18px;
}

.nav-icon-1.open span:nth-child(6) {
  right: 6px;
  top: 6px;
}

.nav-icon-1.open span:nth-child(8) {
  left: 18px;
  bottom: 6px;
}

@media (max-width:1241px) {
  .navbar-collapse ul>li {
    width: 75px;
  }

  .navbar-collapse ul>li>a {
    font-size: 10px;
  }
}

@media (max-width:1095px) {
  .navbar-collapse ul>li {
    width: 108px;
  }

  .navbar-collapse ul>li>a {
    font-size: 10px;
  }
}

@media (max-width:991px) {

  .bg-gold {
    display: none;
  }
}


p {
  font-weight: normal;
}

/* header */

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

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

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

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

.img {
  margin-top: 18%;
  margin-right: -20%;
}

.side-img {
  height: 650px;
}

.hero-con-1 {
  display: none;
}

/* h2 */
.bg {
  background-image: url(../dryervent/bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: #fff;
  height: 700px;
  padding-bottom: 150px;
  padding-top: 150px;
}
.bg1 {
  background-image: url(../dryervent/bg1.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: #fff;
  height: 700px;
  padding-bottom: 150px;
  padding-top: 150px;
}
.bg2 {
  background-image: url(../dryervent/bg2.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: #fff;
  height: 700px;
  padding-bottom: 150px;
  padding-top: 150px;
}
h2 {
  color: #ffde59;
  font-weight: bold;
}


/* gallery */
.snip1577 {
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin: 10px;

  width: 106%;
  color: #fff;
  text-align: left;
  font-size: 16px;
  background: #000;

}

.snip1577 *,
.snip1577:before,
.snip1577:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.snip1577 img {
  max-width: 100%;
  backface-visibility: hidden;
  vertical-align: top;
}

.snip1577:before,
.snip1577:after {
  position: absolute;
  top: 20px;
  right: 20px;
  content: '';
  background-color: #fff;
  z-index: 1;
  opacity: 0;
}

.snip1577:before {
  width: 0;
  height: 1px;
}

.snip1577:after {
  height: 0;
  width: 1px;
}

.snip1577 figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 15px 20px;
}

.snip1577 h3,
.snip1577 h4 {
  margin: 0;
  font-size: 1.1em;
  font-weight: normal;
  opacity: 0;
}

.snip1577 h4 {
  font-size: .8em;
  text-transform: uppercase;
}

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

.snip1577:hover img,
.snip1577.hover img {
  zoom: 1;
  filter: alpha(opacity=20);
  -webkit-opacity: 0.2;
  opacity: 0.2;
}

.snip1577:hover:before,
.snip1577.hover:before,
.snip1577:hover:after,
.snip1577.hover:after {
  opacity: 1;
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
}

.snip1577:hover:before,
.snip1577.hover:before {
  width: 40px;
}

.snip1577:hover:after,
.snip1577.hover:after {
  height: 40px;
}

.snip1577:hover h3,
.snip1577.hover h3,
.snip1577:hover h4,
.snip1577.hover h4 {
  opacity: 1;
}

.snip1577:hover h3,
.snip1577.hover h3 {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.snip1577:hover h4,
.snip1577.hover h4 {
  -webkit-transition-delay: 0.35s;
  transition-delay: 0.35s;
}


.footer {
  background-color: #34365a;

  background-image: url(../dryervent/footer.webp);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}

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

/* form  */
#formm {
  background-image: url(../dryer-vent/form-bg.webp);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  position: relative;
  background-size: 100% 100%;
  padding-bottom: 76.5px;
  background-repeat: no-repeat;
  position: relative;
  background-attachment: fixed;
  background-position: center;
}

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

.getintouch {
  font-size: 32px;
  color: #fff;

  text-align: center;
  padding-top: 16px;
}


.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;margin-left: 4%;
    color: #fff;
}

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

.contact-btn {
    background: #1aa090;
    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;
}

.service-btn {

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

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

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

.btn1 a {
  color: #34365a;
}

.btn1:hover {
  background-color: #199e8e;
  color: #34365a;
}

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


#lz_overlay_wm .lz_overlay_wm_icon {
  background-color: #199e8e;
  border-radius: 50%;
}

.lz_chat_header {
  background-color: #199e8e !important;
}

#lz_chat_overlay_data_form_ok_button {
  background: #199e8e !important;
}

@media (max-width:992px) {
  .hero-con-2 {
    display: none;
  }

  .hero-con-1 {
    display: block;
  }

  .snip1577 {
    width: 62%;
  }
}