.hero {
  background: url("../images/banner1.png") center/cover fixed;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.hero .hero-container {
  background: url("../images/banner-hover.png") no-repeat fixed;
  background-position: center 40%;
  background-size: 60%;
  height: 100%;
}
main .container {
  display: flex;
  background: url("../images/banner1.png") center/cover fixed;
}
main .container1 {
  justify-content: space-around;
  flex-wrap: wrap;
  text-align: justify;
  align-items: center;
  gap: 10px;
  color: var(--black);
  overflow: hidden;
  min-height: 100vh;
  height: auto;
}
main .container1 .img-main {
  width: 400px;
  overflow: hidden;
  box-shadow: rgb(71, 71, 71) 0px 5px 20px 0px;
  min-width: 300px;
  border-radius: 10px;
}
main .container1 .subcontainer {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  text-align: justify;
  width: 50%;
  min-width: 700px;
  border-radius: 10px;
}
main .container1 .card-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
main .subcontainer .card {
  max-width: 300px;
  height: 300px;
  background-color: #eeeeef;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 20px;
  box-shadow: rgb(71, 71, 71) 0px 5px 10px 0px;
}
main .card-one {
  display: flex;
  align-items: center;
}
main .subtitle-card-two {
  text-align: start;
  color: var(--dark-blue);
}
.card-two:not(h3) {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
main .subcontainer .card .box {
  display: flex;
  align-items: center;
  gap: 10px;
}
main .card .div-icon {
  border: 1px solid var(--light-blue);
  color: var(--light-blue);
  border-radius: 100%;
  width: 50px;
  height: 50px;
  padding: 10px;
  text-align: center;
}
main .special-font {
  color: var(--dark-blue);
}
main .button-cta /*div*/ {
  display: flex;
  justify-content: center;
  max-width: 600px;
  min-width: 300px;
  border-radius: 10px;
  margin: 10px 0;
}
main .link-button-cta {
  max-width: 100%;
  box-shadow: rgb(71, 71, 71) 0px 5px 20px 0px;
  border-radius: 10px;
}
.cat-button /*button item*/ {
  max-width: 100%;
}
main p {
  font-size: 16px;
  font-weight: 200;
}
main .container2 {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  gap: 50px;
  max-width: 100%;
  padding: 30px 0;
  overflow: hidden;
  height: auto;
}
main .container .range-subtitle {
  width: 100%;
  font-size: 2rem;
  font-weight: 700;
  text-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
  z-index: 1;
  background-color: #eeeeef;
}
main .call-of-action {
  text-align: center;
  background-color: var(--dark-blue);
  color: var(--beige);
  border: 2px solid var(--dark-blue);
  font-size: 15px;
  border-radius: 10px;
  padding: 10px 5px;
  width: 200px;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: rgba(13, 5, 5, 0.12) 0px 6px 4px;
  transition: box-shadow 0.3s ease;
}
main .call-of-action:hover {
  opacity: 0.9;
  box-shadow: rgba(238, 236, 236, 0.12) 0px 6px 4px;
}
