html, body {
  overscroll-behavior: none;
  scroll-behavior: smooth;
}
body {
  font-family: Arial, sans-serif;
  background: #f7ecec;
  margin: 0;
  background-image: url('mountians.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
}
.everything-wrapper {
  width: 100vw;
}
.header-wrapper {
  position: fixed;
  height: 75px;
  width: 100%;
  margin-top: 0;
  margin-left: 0;
  z-index: 100;
}
.header {
  height: 75px;
  width: 100%;
  background-color: white;
  border-bottom: 4px solid black;
}
.logo {
  margin: 0;
  padding: 0;
  font-size: 35px;
  text-decoration: underline;
  font-family: courier;
}
.logo-wrapper {
  margin-left: 70px;
  padding: 20px;
  width: 100%;
  position: absolute;
}
.image-wrapper {
  padding: 15px;
  position: fixed;
}
.image {
  height: 45px;
}
.main-info {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-image: url('soapy-window.avif');
  background-size: cover;
  background-repeat: no-repeat;
}
.cleaning-info-1 {
  display: flex;
  background-color: white;
  width: 700px;
  height: 450px;
  border: 5px solid black;
  border-radius: 30px;
  transform: translate(-30px, 0);
  justify-content: center;
}
.fw {
  position: absolute;
  font-family: Courier;
  font-size: 50px;
  color: red;
  margin-top: 130px
}
.bc {
  position: absolute;
  font-family: Courier;
  font-size: 35px;
  color: blue;
  margin-top: 185px
}
.cs {
  position: absolute;
  font-family: Courier;
  font-size: 35px;
  color: blue;
  margin-top: 220px
}
.quote-link {
  margin-top: 270px;
}
.images-wrapper {
  display: flex;
  height: calc(100vh - 180px);
  width: calc(100vw - 300px);
  margin-left: 150px;
  margin-top: 90px;
  background-color: black;
}
.img-box {
  position: relative;
  flex: 1;
  height: 100%;
  overflow: hidden;
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.4s ease;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: all 0.3s ease;
}
.text {
  color: white;
  font-size: 24px;
  text-align: center;
  font-weight: bold;
  max-width: 90%;
  transition: opacity 0.4s ease;
}
.hover-text {
  opacity: 0;
  position: absolute;
}
.img-box:hover .gallery-img {
  filter: blur(5px);
}
.img-box:hover .initial-text {
  opacity: 0;
}
.img-box:hover .hover-text {
  opacity: 1;
}
.window-info-wrapper {
  display: flex;
  margin-top: 90px;
  margin-left: 150px;
  margin-bottom: 90px;
}
.window-info {
  display: flex;
  height: 500px;
  width: calc(100vw - 300px);
  background-color: rgba(255, 255, 255, 0.6);
}
.text-wrapper {
  margin-left: 30px;
  padding-top: 30px;
  width: 400px
}
.contact-us {
  font-size: 50px;
}
.number {
  font-size: 20px;
  padding-left: 25px;
  padding-top: 10px;
}
.window-info-text {
  font-size: 15px;
  padding-left: 25px;
  padding-top: 10px;
}
.window-info-image-wrapper {
  margin-left: auto;
  height: 100%;
  width: auto;
}
.window-info-image {
  width: 100%;
  height: 100%;
}

@media (max-width: 479px) {
  .main-info {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  .cleaning-info-1 {
    width: 70%;
    height: 30%;
    padding: 20px;
    /*flex-direction: column;*/
    text-align: center;
    transform: none;
  }
  .fw {
    margin-top: 20px;
    padding: none;
    font-size: 40px;
  }
  .bc {
    font-size: 15px;
    margin-top: 80px
  }
  .cs {
    font-size: 15px;
    margin-top: 100px
  }
  .quote-link {
    font-size: 13px;
    margin-top: 125px;
  }
  .images-wrapper {
    flex-direction: column;
    width: calc(100vw - 40px); 
    margin-left: 20px;
  }

  .img-box {
    height: auto; 
    min-height: 200px;
  }
  .window-info-wrapper {
    margin-top: 350px;
    margin-left: 30px;
  }
  .window-info {
    width: calc(100vw - 60px);
  }
  .window-info-image-wrapper {
    display: none;
  }
}
