  /* New Home Header CSS */
 .c-home-header {
    padding: 0px !important;
  }

  .c-home-slider {
    width: 100%;
    max-width: 100%;
    height: 400px;
    position: relative;
    z-index: 0;
    overflow: hidden; /* <===  */
  }

  .c-home-slider__sponsored {
    position: absolute;
    top: 60px;
    right: 60px;
    z-index: 2;
    font-weight: bold;
  }
 .c-home-slider__sponsored .fa-duotone {
    --fa-secondary-color: #127581;
    --fa-primary-color: #4acdd1;
  }

  .c-home-slider__slide {
    width: 100%;
    max-width: 100%;
    height: 400px;
    position: absolute;
    transition: all 0.5s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
  }

  .c-home-header__content {
    max-width: 600px;
    padding: 60px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
  }

  .c-home-header__content--logo {
    max-width: 90%;
    max-height: 160px;
    object-fit: contain;
  }
  .c-home-header__content--desc {
	text-shadow: 0px 0px 10px #000;
  }
  .c-home-header__content--buttons {   
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    width: 100%;
    margin-top: 1rem;
  }
  .c-home-header__content--button {
 	flex-basis: 50%;
    text-align: center;

    padding: 15px 30px;
    border-radius: 5px;
    box-shadow: 1px 1px 20px -1px rgba(0,0,0,0.5);
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 0.5rem;
    transition: all ease 400ms;
  }
 .c-home-header__content--button .fa-duotone {
    --fa-secondary-opacity: 0.6;
  }
  .c-home-header__content--button:hover {
    filter: brightness(120%);
        box-shadow: 1px 1px 30px -1px rgba(0,0,0,0.5);
  }
	.c-home-header__content--button.is--secondary {
 	background-color: #414146;     
      
  }

  .c-home-slider__background {
    position: absolute;
    top: 0; right:0; left:0; bottom:0;
    margin: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.8;
  }
  
  .c-home-slider__btn {
    position: absolute;
    padding: 4px 8px;
    border: none;
    border-radius: 5px;
    z-index: 10px;
    cursor: pointer;
    background-color: #2c2c2f;
    font-size: 14px;
        display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 0.5rem;
    box-shadow: 1px 1px 10px -1px rgba(0,0,0,0.35);
    transition: all ease 400ms;
  }
  .c-home-slider__btn:hover {
    background-color: #414146;
  }

  .c-home-slider__btn:active {
    transform: scale(1.1);
  }
  
  .btn-prev {
   display: none;
  }
  
  .btn-next {
    bottom: 60px;
    right: 60px;
  }

  @media screen and (max-width: 767px) {
	.c-home-header__content {
    	padding: 40px;
    }
    .c-home-slider__sponsored {
     top: 40px;
      left: 40px;
    }
      .btn-next {
    top: 36px;
    right: 40px;
        bottom: auto;
    }
  }

  @media screen and (max-width: 479px) {
	.c-home-header__content {
    	padding: 30px 15px;
    }
    .c-home-slider__sponsored {
     top: 30px;
      left: 15px;
    }
      .btn-next {
    top: 26px;
    right: 15px;
        bottom: auto;
    }
     .c-home-header__content--buttons {
     flex-direction: column;
     align-items: flex-start;
    width: 100%;
       margin-top: 0.5rem;
       gap: 0.5rem;
    }
     .c-home-header__content--button {
    flex-basis: 100%;
           width: 100%;
    }
  }
