/** Header styles  */

.header-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}

.header-content .left-header {
  display: flex;
  align-items: center;
  position: relative;
}

.header-content .left-header .h-shape {
  transition: var(--transition);
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.833);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  clip-path: polygon(0 0, 70% 0, 100% 100%, 0% 100%);
}

.header-content .left-header .h-shape .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* min-width: 300px;
    min-height: 300px; */
  box-shadow: 0px 4px rgba(0, 0, 0, 0.893);
  border-radius: var(--br-sm-2);
  margin-left: 3rem;
  filter: grayscale(100%);
}

.header-content .left-header:hover .h-shape .image img {
  filter: grayscale(0);
}

.header-content .right-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 18rem;
}

#bannerText {
  text-align: right;
  padding-bottom: 3rem;
  padding-right: 2rem;
  color: var(--color-secondary);
}

.header-content .right-header .name {
  font-size: 2rem;
}
.header-content .right-header .name small {
  font-size: 1.5rem;
}

.header-content .right-header .name span {
  color: var(--color-secondary);
}
.header-content .right-header .name p {
  margin: 1.5rem 0;
  line-height: 2rem;
}

/* independent components */

.btn-container {
  display: flex;
  align-self: flex-start;
}

.btn-container .main-btn {
  border-radius: 30px;
  color: inherit;
  font-weight: 600;
  width: 272px;
  height: 55px;
  position: relative;
  border: 1px solid var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  overflow: hidden;
}

.btn-container .main-btn .btn-text {
  padding: 0 2rem;
}

.btn-container .main-btn .btn-icon {
  background-color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 1rem;
}

.btn-container .main-btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(100%);

  z-index: -1;
}

.btn-container .main-btn:hover::before {
  width: 100%;
  height: 100%;
  background-color: var(--color-secondary);
  transform: translateX(0);
  transition: var(--transition);
}
