/* todo  */
/* links 
navbar
*/

 /* fonts */
 /* raleway */
 @import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,300;0,400;0,600;0,700;0,900;1,400&display=swap');
 /* roboto */
 @import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,300;0,400;0,600;0,700;0,900;1,400&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,300;1,400&display=swap');

 a {
  text-decoration: none;
  color: #003049;
  transition: 0.3s;
}

a:hover {
  text-decoration: none;
  color: #30d5c8;
  transition: 0.3s;
}

p {
  margin: 0;
  color: #003049;
}

h1,
h2 {
  color: #003049;
}

body {
  width: 100%;
  font-family: 'raleway', sans-serif;
}

.blue-bg {
  background: #003049;
}

/* Global Venticlean Button Styling */
.venti-btn-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.venti-btn {
  background-color: #30d5c8;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  transition: 0.3s;
  color: #fff;
  font-size: 18px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.venti-btn-text {
  margin-left: 10px;
  font-size: 18px;
  color: #fff;
}

.venti-btn-container:hover .venti-btn {
  background-color: #003049;
}
/* ! End Venti-Button */

/*Global Button v2*/
.venti-btn-v2 {
  background-color: #30d5c8;
  color: #fff;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 300;
  font-size: 18px;
  transition: 0.5s;
  display: flex;
  justify-content: center;
  align-self: center;
  transition: 0.5s;
}

.venti-btn-v2:hover {
  background-color: #003049;
  transition: 0.5s;
}
/* ! Global button v2 end */

/* Showcase Styling */
.showcase {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  background-image: url("/ASSETS/IMGS/inside_vent.jpeg");
}

.showcase-overlay {
  margin: auto;
  width: 100%;
  height: 100vh;
  position: absolute;
  background: #000;
  opacity: 0.5;
  z-index: 1;
}

.showcase-content {
  position: relative;
  z-index: 2;
  top: 40%;
  display: flex;
  justify-content: center;
}

.showcase-content-text {
  color: #fff;
  font-size: 90px;
  font-family: 'Raleway', sans-serif;
  text-align: center;
  font-weight: 600;

}

.contact-button {
  background-color: #003049;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 10px 35px;
  font-family: "Raleway";
  font-weight: 600;
  font-size: 18px;
}

.estimate-button:hover {
  background-color: #003049;
  color: #30d5c8;
  transition: 0.5s;
}

.contact-button:hover {
  background-color: #30d5c8;
  color: #003049;
  transition: 0.5s;
}

.contact-button-link {
  color: #fff;
  text-decoration: none;
}

.contact-button-link:hover {
  color: #003049;
  text-decoration: none;
}

.kitchen-img-block {
  background-image: url("/ASSETS/IMGS/Artboard\ 1-8.png");
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.success_text {
  text-align: center;
  color: #fff;
  font-weight: 700;
}

.check-parent {
  text-align: center;
  margin: 25px 0;
}

.check-blue {
  font-size: 72px;
  color: #003049;
}

.error_text {
  text-align: center;
  color: #003049;
  font-weight: 700;
}

.check-red {
  font-size: 72px;
  color: red;
}

.footer-contacts {
  color: #fff;
}

/* * -------------------------------------------------------------------------- */
/* *                               MEDIA QUERIES                               */
/* * -------------------------------------------------------------------------- */

@media (max-width: 1500px) {
  .showcase-content-text {
    font-size: 72px;
  }
}

@media (max-width: 1100px) {
  .showcase-content-text {
    width: 70%;
    margin: 0 auto;
    text-align: center;
  }
}

@media (max-width: 850px) {
  .showcase-content-text {
    font-size: 58px;
  }
}

@media (max-width: 700px) {
  .showcase-content-text {
    font-size: 38px;
    margin: 0;
  }
}