
/* Hero section widget  */
.hero-ultra-1 {
  position: relative;
  height: 86rem;
  margin-top: -12rem;
}

.hero-ultra-1 .background {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-ultra-1 .background img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  z-index: 1;
}

.hero-ultra-1 .background::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.85);
  clip-path: polygon(35% 0, 100% 0%, 100% 100%, 55% 100%);
}

.hero-ultra-1 .background::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background-color: var(--color-primary);
  opacity: 0.8;
  clip-path: polygon(0 0, 35% 0, 55% 100%, 0 100%);

}

.hero-ultra-1 .hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;                
  max-width: 100%;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  width: 58%;
  flex-direction: column;
}
.hero-ultra-1 .hero-content img {
    width: 65rem;
}
.hero-ultra-1 .hero-content::before{ 
     content: "";
     background-color: var(--color-white);
     width: 100%;
     height: 600px;
     position: absolute;
     bottom: 0;
     z-index: 8;
     clip-path: polygon(0 80%, 90% 80%, 100% 120%, 0 100%);
}

.hero-ultra-1 .hero-content .info-box {
    display: flex;
    position: absolute;
    gap: 2rem;
    bottom: 0;
    z-index: 9;
}

.hero-ultra-1 .hero-content .info-box .the-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--color-white);
    gap: 1rem;
    width: 20rem;
    padding: 2rem;
    box-shadow: var(--box-shadow);
}

.hero-ultra-1 .hero-content .info-box .the-box .box-title {
    color: var(--color-primary);
    font-weight: 900;
    font-size: 1.8rem;
}
.hero-ultra-1 .hero-content .info-box .the-box .box-content{
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-white);
    padding: 1rem;
    background-color: var(--color-primary);
}


.hero-ultra-1 .hero-content .info-box .the-box .address {
    display: flex;
    gap: 1rem;
}
.hero-ultra-1 .hero-content .info-box .the-box .address img {
    width: 4.8rem;
    padding: 1rem;
    background-color: var(--color-primary);
    
}


.hero-ultra-1 .hero-text {
  position: absolute;
  top: 30%;
  right: 5%;
  z-index: 5;                
  max-width: 700px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  width: 58%;
  flex-direction: column;
}

.hero-ultra-1 .hero-text h1 {
    color: var(--color-white);
    font-size: 4.4rem;
    font-weight: 900;
    line-height: 164%;
}

.hero-ultra-1 .hero-text h2 {
    color: var(--color-primary);
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 164%;
}

.hero-ultra-1 .hero-text p {
    color: var(--color-white);
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 181%;
    text-align: justify;
    border-right: 6px solid var(--color-primary);
    padding-right: 1rem;
}
.hero-ultra-1 .hero-text .h-btn-section {
    display: flex;
    gap: 1rem;
}
.hero-ultra-1 .hero-text .h-btn {
    display: flex;
    font-size: 1.8rem;
    font-weight: 600;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    color: var(--color-white);
    justify-content: center;
}
.hero-ultra-1 .hero-text .h-btn.btn-1 {
    background-color: var(--color-primary);
}
.hero-ultra-1 .hero-text .h-btn.btn-2 {
    background-color: var(--color-black);
}

