
/******** Controls the height underneath the text block - padding-bottom, sets background colour for the component *********/
.hero_wrapper {
  background: #f1f1f1;
  padding-bottom: 100px;
  width: 100%;
}
/******** Gradient/image on the left *********/
.left_side {
  background-image: linear-gradient(
    to bottom left,
    rgba(0, 0, 0, 0.3),
    rgba(255, 255, 255, 0.2)
  );
  height: 670px;
  width: 950px;
  margin: 0;
}
/******** Gradient/image on the right *********/

.right_side {
  background-image: linear-gradient(
    to bottom right,
    rgba(0, 0, 0, 0.3),
    rgba(255, 255, 255, 0.2)
  );
  width: 950px;
  height: 670px;
  margin: 0;
}
/******** Change the background colour - sets border at bottom *********/
.banner{
  display: flex;
  align-items: stretch;
  background-color: #C3B7AE;
  height: 670px;
  border-bottom: 10px solid #fff;
}
/******** Change the background image - controls the width of image sets border either side *********/

.hero_image {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 2060px;
    background: url("/-/media/images/Homepage-banners/2023/WK13/s_desktop.jpg") no-repeat right;
  border-left: 10px solid #fff;
  border-right: 10px solid #fff;
}

/******** Controls the text block - font size, colour, padding, shadow, positioning  - CHANGE the margin-top *********/

.hero_text_s {
  font-family: "Rooster", sans-serif;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  color: #28343d;
  text-align: center;
  width: 980px;
  padding: 30px;
  margin-top: 670px;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-shadow: 2px 2px 8px -1px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 2px 2px 8px -1px rgba(0, 0, 0, 0.15);
  box-shadow: 2px 2px 8px -1px rgb(0, 0, 0, 0.15);
}

.ultra-hide{
  display: none;
}
/******** Controls the cta block  *********/
.row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 10px 0;
}
/******** Controls the cta  *********/

.row .button {
  display: flex;
  font-weight: 600;
  justify-content: center;
  line-height: 48px;
  border-radius: 24px;
  background: #28343d;
  padding: 0 15px;
  margin: 10px 15px 0 15px;
  width: 320px;
  letter-spacing: 2.2px;
  font-size: 12px;
  color: #ffffff;
  text-decoration: none;
}
.row .button img {
  width: 8px;
  height: 10px;
  padding: 19px 0 0 6px;
}
/******** Controls the Text  *********/

.hero_title {
  font-weight: bold;
  font-size: 38px;
  line-height: 50px;
}

.hero_subtitle {
  font-weight: 100;
  font-size: 22px;
  line-height: 40px;
}

/******** Controls the features block on the splash page - do not amend!  *********/

.fuds {
  margin: 0;
  padding: 50px 0 60px 0;
  background: #f1f1f1;
}
.fuds_container {
  width: 964px;
  margin: 0 auto;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-around;
}
.fuds .icon1 {
  background: url("/-/media/images/Homepage-banners/s_footer_1_trustpilot.svg")
    center no-repeat;
  height: 115px;
  width: 120px;
}
.fuds .icon2 {
  background: url("/-/media/images/Homepage-banners/s_footer_2_uk_manufactured.svg")
    center no-repeat;
  height: 120px;
  width: 120px;
}
.fuds .icon3 {
  background: url("/-/media/images/Homepage-banners/s_footer_3_no1_for_trade.svg")
    center no-repeat;
  height: 119px;
  width: 120px;
}
.fuds .icon4 {
  background: url("/-/media/images/Homepage-banners/s_footer_4_25_year_guarantee.svg")
    center no-repeat;
  height: 121px;
  width: 122px;
}
.divider {
  background: url("/-/media/images/Homepage-banners/divider.png");
  height: 150px;
  width: 2px;
}
@media only screen and (max-width: 2070px) {

    /******** Change the background image - flexbox set to percentage for NEW icon to align with edge of image *********/
  .hero_image {
    flex: 0 0 86%;
  }
  .ultra-hide{
  display: block;
}
  /******** Controls the NEW icon  *********/
  .new {
    font-family: "Rooster";
    font-weight: 600;
    letter-spacing: 1.4;
    top: 0;
    right: 7%;
    position: absolute;
    color: #fff;
    background: #28632c;
    font-size: 34px;
    line-height: 56px;
    width: 110px;
    text-align: center;
    padding-bottom: 4px;
  }
}
 /**** 1600 breakpoint | Banner height change - flex set to 100% - borders removed - NEW icon fixed right - text box smaller *********/
@media only screen and (max-width: 1600px) {
  .hero_wrapper {
    padding-bottom: 100px;
  }
  .banner {
    height: 590px;
  }
  .hero_image {
    flex: 0 0 100%;
    border: none;
  }

  .new {
    right: 0;
  }
  .hero_text_s {
    width: 880px;
    margin-top: 590px;
  }
}

/**** 1366 breakpoint | Banner height change 470 - Text size smaller *********/

@media only screen and (max-width: 1366px) {
  .hero_wrapper {
    padding-bottom: 96px;
  }
  .banner {
    height: 470px;
  }

  .hero_image {
    background: url("/-/media/images/Homepage-banners/2023/WK13/s_laptop.jpg") no-repeat center;
    background-size: cover;
  }
  .new {
    font-size: 32px;
    line-height: 46px;
    width: 96px;
  }
  .hero_text_s{
    width: 880px;
    margin-top: 475px;
    padding: 24px;
  }
 
  .hero_title {
    font-size: 36px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 1200px) {
  .hero_wrapper {
    padding-bottom: 80px;
  }
  .banner {
    border-bottom: 8px solid #fff;
  }
  .new {
    font-size: 22px;
    line-height: 32px;
    width: 68px;
    padding-bottom: 2px;
  }

  .hero_text_s{
    width: 632px;
    margin-top: 478px;
  }
  
  .hero_title {
    font-size: 24px;
    line-height: 30px;
  }
  .hero_subtitle {
    font-size: 18px;
    line-height: 30px;
  }

  .row {
    padding: 8px 0;
  }
  .row .button {
    line-height: 34px;
    padding: 0 8px;
    margin: 8px 8px 0 8px;
    width: 264px;
    font-size: 11px;
  }
  .row .button img {
    width: 7px;
    height: 9px;
    padding: 13px 0 0 5px;
  }
/******** Controls the features block on the splash page - do not amend!  *********/
  .fuds {
    margin: 0 auto;
    padding: 16px 0 24px 0;
    background: #f1f1f1;
  }
  .fuds_container {
    width: 720px;
    margin: 0 auto;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
  }
  .fuds .icon1 {
    background: url("/-/media/images/Homepage-banners/s_TrustPilot.svg")
      center bottom no-repeat;
    height: 120px;
    width: 120px;
    padding: 0 20px;
  }
  .fuds .icon2 {
    background: url("/-/media/images/Homepage-banners/s_UK_Manufactured.svg")
      center bottom no-repeat;
    height: 120px;
    width: 120px;
    padding: 0 20px;
  }
  .fuds .icon3 {
    background: url("/-/media/images/Homepage-banners/s_No1_Kitchen.svg")
      center bottom no-repeat;
    height: 120px;
    width: 120px;
    padding: 0 20px;
  }
  .fuds .icon4 {
    background: url("/-/media/images/Homepage-banners/s_25_Guarantee.svg")
      center bottom no-repeat;
    height: 120px;
    width: 120px;
    padding: 0 20px;
  }
  /****** spacer between the blocks ***/

  .divider {
    background: url("/-/media/images/Homepage-banners/divider.png");
    height: 100px;
    width: 2px;
    margin: 10px 0;
  }
}

@media only screen and (max-width: 767px) {
  .hero_wrapper {
    padding-bottom: 100px;
  }
  .banner {
    height: 300px;
  }
  .hero_image {
    background: url("/-/media/images/Homepage-banners/2023/WK13/s_mob_l.jpg") no-repeat center;
    background-size: cover;
  }
 
  .new {
    font-size: 16px;
    line-height: 28px;
    width: 56px;
    padding-bottom: 2px;
  }

  .hero_text_s{
    width: 260px;
    padding: 20px 46px 24px 46px;
    margin-top: 308px;
  }
 
  .hero_title {
    font-size: 20px;
    line-height: 28px;
  }
  .hero_subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .row {
    flex-direction: column;
    padding: 0;
  }
  .row .button {
    margin: 16px auto 0 auto;
    width: 240px;
  }
  .mob_hide {
    display: none;
  }

  .fuds {
    padding: 12px 0 16px 0;
  }
  .fuds_container {
    width: 375px;
    flex-flow: row wrap;
  }
  .fuds .icon1 {
    background: url("/-/media/images/Homepage-banners/s_TrustPilot.svg")
      center no-repeat;
    height: 120px;
    width: 120px;
    padding: 0 20px;
  }
  .fuds .icon2 {
    background: url("/-/media/images/Homepage-banners/s_UK_Manufactured.svg")
      center no-repeat;
    height: 120px;
    width: 120px;
    padding: 0 20px;
  }
  .fuds .icon3 {
    background: url("/-/media/images/Homepage-banners/s_No1_Kitchen.svg")
      center no-repeat;
    height: 120px;
    width: 120px;
    padding: 0 20px;
    border-top: 2px solid #d8d8d8;
  }
  .fuds .icon4 {
    background: url("/-/media/images/Homepage-banners/s_25_Guarantee.svg")
      center no-repeat;
    height: 120px;
    width: 120px;
    padding: 0 20px;
    border-top: 2px solid #d8d8d8;
  }
}
@media only screen and (max-width: 440px) {

  .hero_image {
    background: url("/-/media/images/Homepage-banners/2023/WK13/s_mob.jpg")
      no-repeat center;
    background-size: cover;
  }

  .row .button {
    margin: 16px auto 0 auto;
    width: 228px;
  }
  .fuds .icon1 {
    background: url("/-/media/images/Homepage-banners/s_TrustPilot.svg")
      center no-repeat;
    height: 120px;
    width: 120px;
    padding: 0 10px;
  }
  .fuds .icon2 {
    background: url("/-/media/images/Homepage-banners/s_UK_Manufactured.svg")
      center no-repeat;
    height: 120px;
    width: 120px;
    padding: 0 10px;
  }
  .fuds .icon3 {
    background: url("/-/media/images/Homepage-banners/s_No1_Kitchen.svg")
      center no-repeat;
    height: 120px;
    width: 120px;
    padding: 0 10px;
    border-top: 2px solid #d8d8d8;
  }
  .fuds .icon4 {
    background: url("/-/media/images/Homepage-banners/s_25_Guarantee.svg")
      center no-repeat;
    height: 120px;
    width: 120px;
    padding: 0 10px;
    border-top: 2px solid #d8d8d8;
  }
  .fuds_container {
    width: 332px;
  }
}
@media only screen and (max-width: 375px) {
  .hero_text_s {
   width: 309px;
    padding: 20px 8px 24px 8px;
  }
    .new {
    font-size: 16px;
    line-height: 28px;
    width: 52px;
    padding-bottom: 0;
  }

}
@media only screen and (max-width: 332px) {
 .hero_wrapper{
    padding-bottom: 96px;
  }

  .hero_text_s{
    width: 268px;
    padding: 16px 8px 20px 8px;
  }

  .row .button {
    width: 220px;
    margin: 12px auto 0 auto;
  }
  .fuds_container {
    width: 320px;
  }
}
