/* style.css */
/* Global properties ======================================================== */
html,
body {
  margin: 0%;
  padding: 0;
  min-height: 100vh;
  background: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 400; /* Regular */
  font-size: 110%;
  color: #222;
}

body {
  display: flex;
  flex-direction: column;
}
.main {
  width: 94vw;
  margin: 0 auto;
  font-size: 0.875em;
  line-height: 1.785em;
  flex: 1; /* This makes the .main container take up the remaining space */
  /* display: flex;
  flex-direction: column; */
}

@media (max-width: 768px) {
  .main {
    width: 100vw; /* Full width on small devices */
    padding: 0 5px; /* Optional: Adjust padding for smaller screens */
    font-size: 0.8em;
    line-height: 1.55em;
  }
}

a {
  color: #f6a20e;
  outline: none;
}
a:hover {
  text-decoration: none;
}

.col-1,
.col-2,
.column-1,
.column-2 {
  float: left;
}

.wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: space-between;
}

.hammerimg {
  width: inherit;
  height: auto;
}

.aligncenter {
  text-align: center;
}

.indent {
  padding: 21px 0 0;
  position: relative;
  overflow: hidden;
}

.indent-left {
  padding-left: 30px;
}

header {
  width: 100%;
  position: relative;
  z-index: 2;
}

.logo {
  border-radius: 26%;
}
@media (max-width: 369px) {
  .logo {
    height: 35px;
    width: 35px;
  }
}

/* .row-top {
  width: 100%;
  min-height: 95px;
  background: url(../images/row-top-tail.gif) left top repeat-x #f6a20e;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: grid;
  align-items: center;
} */

h1 {
  align-self: center;
  padding: 10px 15px;
  text-align: center;
  position: relative;
  display: grid;
  color: #ff7700;
  font-size: 35px;
  line-height: 1.2em;
  letter-spacing: -1px;
}

.support {
  font-weight: bolder;
  display: block;
  font-size: 40px;
  line-height: 1.2em;
  padding: 0px 0px 8px 0px;
  letter-spacing: 2px;
  float: right;
  align-self: center;
}

/* @media (max-width: 1400px) {
  .support {
    font-size: 18px;
  }
} */
@media (max-width: 420px) {
  .support {
    font-size: 30px;
  }
}
nav {
  align-self: center;
  width: 100%;
}

.menu {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  background-color: #2b2b2b;
}

ul li a.active,
ul li a:hover {
  border-radius: 10%;
  font-weight: 800;
  animation-duration: 100ms;
}
.nav-item {
  font-weight: 600;
  text-wrap: nowrap;
}

#productText {
  color: #2b2b2b;
  font-size: 15px;
  line-height: 150%;
  font-weight: 800;
}

h4 {
  font-size: 25px;
  line-height: 50px;
  color: #222;
  letter-spacing: -1px;
}

h6 {
  color: #000;
}

.box {
  width: 100%;
  color: #ccc;
  background: url(../images/box-title-tail.gif) left top repeat-x #f6a20e;
  border-radius: 10px;
}

.box .padding {
  padding: 25px 10px 30px;
  min-height: 111px;
}

@media (max-width: 1200px) {
  .box .padding {
    padding: 25px 10px 30px;
    min-height: 50px;
  }
}

.box-bg {
  width: 100%;
  padding-bottom: 24px;
  background: url(../images/box-tail.gif) left top repeat-x #222;
  border-radius: 10px;
}

.button {
  display: inline-block;
  padding: 6px 30px;
  font-size: 21px;
  line-height: 1.238em;
  letter-spacing: -1px;
  color: #2b2b2b;
  border: 2px solid #fff;
  background: url(../images/button-tail.gif) 0 0 repeat-x #dbdbdb;
  border-radius: 10px;
  cursor: pointer;
}

.button:hover {
  background: #dbdbdb;
}

footer {
  background-color: #2b2b2b;
  color: #fff;
  text-align: center;
  padding: 10px 0; /* Ensure consistent padding */
  width: 100%;
  position: relative;
}

.footer-bg {
  width: 100%;
  padding: 10px 0; /* Make sure padding is consistent with footer */
  background: #2b2b2b; /* Background should match footer */
  box-sizing: border-box; /* Ensure padding doesn't cause overflow */
}

#tel {
  font-size: small;
  color: #f6a20e;
}

.navBack {
  background: url(../images/row-top-tail.gif) left top repeat-x #f6a20e;
}

@keyframes gradientBackground {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes subtleBreathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05); /* Adjust scale for a subtle breathing effect */
  }
}

.navbar-collapse li:nth-child(3) a {
  padding-inline-start: 20px;
  border-radius: 30px 30px;
  background: linear-gradient(270deg, #f6a20e, #f06529, #ffcc00);
  background-size: 200% 200%;
  color: rgb(0, 0, 0);
  animation: gradientBackground 4s ease infinite,
    subtleBreathe 3s ease-in-out infinite;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Glowing effect on button */
/* Modern Button */
.modern-btn {
  background: linear-gradient(135deg, #ff8800, #ffcc00);
  border: none;
  color: #000000;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 30px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  /* text-transform: uppercase; */
}

/* Hover effect for button */
.modern-btn:hover {
  background: linear-gradient(135deg, #ffcc00, #ff8800);
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.4);
  transform: scale(1.05);
  text-decoration: none;
}

/* Glowing animation for button */
@keyframes glowing {
  0% {
    box-shadow: 0 0 5px #ffcc00;
  }
  50% {
    box-shadow: 0 0 20px #ffcc00, 0 0 30px #ffcc00;
  }
  100% {
    box-shadow: 0 0 5px #ffcc00;
  }
}

.modern-btn {
  animation: glowing 2s infinite;
}

/* Make the alert stand out */
.alert-warning {
  background-color: #ffcc005e;
  color: #333;
  font-weight: bold;
  animation: pulse 2s infinite;
}

/* Pulse animation to make the alert bounce slightly */
@keyframes pulse {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.9);
  }
}

.accent {
  background: linear-gradient(to right, transparent, #f4d7a5, transparent);
}
.accent-non {
  background: #f4d7a5;
}

.form {
  padding: 1px 30px;
  padding-bottom: 30px;
  background-color: #fff1d9;
  border-radius: 10px;
  margin-top: 30px;
}

.card-img-top {
  /* background-color: #f06529; */
}
