  .primary-btn {
      color: #000 !important;

      &:hover {
          background-color: #000 !important;
          color: #fff !important;
          border-color: #000 !important;
      }
  }

  .secondary-btn {
      &:hover {
          background-color: #000 !important;
          color: #fff !important;
          border-color: #000 !important;
      }
  }

  .text-center {
      text-align: center;
      justify-content: center;
  }

  .banner-section {
      & .banner-wrapper {
          & .banner-content {
              & .banner-content-wrapper {


                  p {
                      font-weight: 400;
                      color: #000;
                      font-size: 30px;
                      line-height: 1.25;

                      @media(max-width: 767px) {
                          font-size: 18px;
                      }

                      @media(min-width: 768px) and (max-width:991px) {
                          font-size: 24px;
                      }

                      @media(min-width: 992px) and (max-width:1200px) {
                          font-size: 26px;
                      }
                  }
              }
          }
      }
  }


  .normal-btn {
      text-decoration: underline;
      color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
  }

  .terms-container {
      position: relative
  }

  .terms-title {
      color: #000;
      font-size: 20px;
      font-weight: 700;
      line-height: 30px;
      margin-bottom: 0
  }

  .terms-content {
      left: 0;
      width: 100%;
      color: #000;
      font-size: 16px;
      font-weight: 400;
      line-height: 24px
  }

  .terms-title {
      cursor: pointer;
      border: 1px solid #e7e7e7;
      border-radius: 5px;
      padding: 12px 22px;
      background-color: #E6E7EB;
      position: relative;
  }

  .terms-title.active {
      border-radius: 5px 5px 0 0;
      margin-bottom: 0;
  }

  .terms-title .chevron {
      position: absolute;
      right: 18px;
      transition: transform 0.3s ease;
      transform: rotate(0deg);
  }


  .terms-title.active .chevron {
      transform: rotate(90deg);
  }

  .terms-content {
      display: none;
      padding: 10px;
      background-color: #fff;
      border: 1px solid #e7e7e7;
      border-radius: 0 0 5px 5px;
  }


  .terms-content {
      left: 0;
      width: 100%;
      color: #000;
      font-size: 16px;
      font-weight: 400;
      line-height: 24px;
  }

  .terms-content ol,
  .terms-content ul {
      margin: 20px 0;
  }

  .terms-content ol,
  .terms-content ul {
      margin: 20px 0;
  }

  .terms-content p {
      padding: 0 0.85rem;
      text-align: left;
  }

  .terms-content li {
      list-style-type: disc;
  }

  .terms-content ul li>ul li {
      list-style-type: circle;
  }

  .terms-content ul li>ul li>ul li {
      list-style-type: square;
  }



  .benefit-section .bg-overflow {
      position: relative;
      padding: 30px 55px
  }

  .benefit-section .bg-overflow::before {
      content: "";
      position: absolute;
      width: 70%;
      height: 100%;
      background-color: rgba(255, 204, 0, 0.1);
      border-radius: 10px;
      top: 0;
      left: 15px
  }

  @media(max-width:767px) {
      .benefit-section .bg-overflow::before {
          left: 0;
      }

      .hertz-benefit-section {
          margin-bottom: 30px !important;
      }
  }

  .benefit-section .bg-overflow img {
      max-width: 100%
  }

  .benefit-section .banner-text {
      @media(max-width:767px) {
          padding: 15px;
      }
  }

  .benefit-section .banner-text .heading {
      margin-bottom: 5px
  }

  .benefit-section .banner-text .banner-desc {
      font-size: 18px
  }

  .benefit-section .banner-text .star-listing-wrapper {
      padding-left: 0;
      margin: 15px 0px;
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
      gap: 15px
  }

  .benefit-section .banner-text .star-listing-wrapper li {
      background-image: url(https://www.hertzpageo.com/theme/hertzrebrandtheme/img/icons/star-border.svg);
      background-repeat: no-repeat;
      font-weight: 600;
      padding-left: 28px;
      background-position: 0 4px;
      display: flex;
      align-items: center;
      gap: 5px;
      /* color: #000; */

      @media(max-width:767px) {
          position: relative;
      }
  }

  @media (max-width: 991px) {
      .benefit-section .gold-banner-img.fullWidth {
          
          margin-top: 20px;
          width: 100%
      }

      .benefit-section .bg-overflow::before {
          width: 100%
      }
  }

  @media (max-width: 767px) {
      .benefit-section .bg-overflow {
          padding: 20px
      }
  }

  

  .heading-benefits {
      font-size: 35px;
      line-height: 1;

      @media(max-width:767px) {
          font-size: 28px;
      }
  }

  .tooltip-box-with-html {
      position: relative;
      cursor: pointer;
      font-size: 14px;
      font-weight: 400;

      @media(max-width:767px) {
          position: static;
      }
  }

  .tooltip-content {
      background: #fff;
      color: #000;
      border: 1px solid rgba(0, 0, 0, 0.1);
      padding: 12px;
      width: 360px;

      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      text-align: left;
      border-radius: 6px;
      -webkit-border-radius: 6px;
      -moz-border-radius: 6px;
      -ms-border-radius: 6px;
      -o-border-radius: 6px;

      @media(max-width:767px) {
          max-width: 100%;
      }

  }

  .tooltip-content,
  .tooltip-content::before {
      opacity: 0;
      pointer-events: none;
      position: absolute;
      top: 100%;
      left: 50%;
      z-index: 10;
      transform: translate(-50%, 10px);
      transform-origin: top;
      transition: all 0.18s ease-out 0.18s;
  }

  .tooltip-box-with-html:hover .tooltip-content,
  .tooltip-box-with-html:hover .tooltip-content::before {
      opacity: 1;
      pointer-events: auto;
      transform: translate(-50%, 0);
  }

  .tooltip-content::before {
      content: "";
      width: 0;
      height: 0;
      margin-bottom: 6px;
      border-left: 6px solid transparent;
      border-right: 6px solid transparent;
      border-bottom: 6px solid #b7b5b5;
      top: -6px;
  }

  .tooltip-box-with-html:hover .tooltip-content,
  .tooltip-box-with-html:hover .tooltip-content::before {
      opacity: 1;
      pointer-events: auto;
      transform: translate(-50%, 0);
  }














  .winter-sale .winter-sale-outer {
      background: #FFF7D6;
      border-radius: 10px;
      padding: 30px;
      overflow: hidden;
  }

  @media (max-width: 767px) {
      .winter-sale .winter-sale-outer {
          padding: 20px;
      }
  }

  .winter-sale .winter-sale-outer .ws-content .title {
      font-size: 40px;
      font-weight: 800 !important;
      line-height: 1.2;
      margin-bottom: 10px;
  }

  @media (max-width: 767px) {
      .winter-sale .winter-sale-outer .ws-content .title {
          font-size: 32px;
      }
  }

  .winter-sale .winter-sale-outer .ws-content .subtitle {
      font-size: 30px;
      font-weight: 400 !important;
      line-height: 1.4;
      margin-bottom: 10px;
  }

  @media (max-width: 767px) {
      .winter-sale .winter-sale-outer .ws-content .subtitle {
          font-size: 20px;
          line-height: 1.4;
      }
  }

  .winter-sale .winter-sale-outer .ws-content .subtitle span {
      /* background: url(../img/shape-off-bg.svg); */
      background: url(https://circus.envigo-tech.co.uk/Hertz/winter-car-hire/img/shape-off-bg.svg);
      padding: 3px 10px 3px 1px;
      background-repeat: no-repeat;
  }

  @media (max-width: 767px) {
      .winter-sale .winter-sale-outer .ws-content .subtitle span {
          padding: 6px 13px 3px 5px;
      }
  }

  @media (min-width: 768px) and (max-width: 1200px) {
      .winter-sale .winter-sale-outer .ws-content .subtitle span {
          padding: 6px 6px 3px 6px;
          background-size: cover;
      }
  }

  .winter-sale .winter-sale-outer .ws-content h4 {
      font-size: 16px;
      font-weight: 700 !important;
      line-height: 1.75 !important;
  }

  .winter-sale .winter-sale-outer .ws-content p {
      color: #000;
      line-height: 1.75;
  }

  .winter-sale .winter-sale-outer .ws-content .save-more-outer {
      background-color: #fc0;
      padding: 12px;
      transform: skewX(20deg);
      position: relative;
      left: -60px;
      margin-bottom: 12px;
      display: inline-block;
      padding-right: 25px;
  }

  .winter-sale .winter-sale-outer .ws-content .save-more-outer .save-more {
      transform: skewX(-20deg);
      padding-left: 48px;
      font-size: 26px;
      font-weight: 700 !important;
      line-height: 1.23;
  }

  @media (max-width: 767px) {
      .winter-sale .winter-sale-outer .ws-content .save-more-outer .save-more {
          font-size: 18px;
      }
  }

  @media (min-width: 992px) and (max-width: 1080px) {
      .winter-sale .winter-sale-outer .ws-content .save-more-outer .save-more {
          font-size: 22px;
      }
  }

  .winter-sale .winter-sale-outer .ws-img {
      position: relative;
      z-index: 2;
  }

  @media (max-width: 991px) {
      .winter-sale .winter-sale-outer .ws-img {
          margin-top: 50px;
      }
  }

  .winter-sale .winter-sale-outer .ws-img::before {
      content: "";
      background-color: #fff;
      position: absolute;
      width: 100%;
      height: 230%;
      top: -65%;
      border-radius: 100%;
      z-index: -1;
  }

  @media (max-width: 540px) {
      .winter-sale .winter-sale-outer .ws-img::before {
          width: 100%;
          height: 160%;
          top: -20px;
          border-radius: 100%;
          z-index: -1;
      }
  }

  @media (min-width: 541px) and (max-width: 767px) {
      .winter-sale .winter-sale-outer .ws-img::before {
          width: 100%;
          height: 200%;
          top: -10%;
          max-width: 500px;
          left: 50%;
          transform: translateX(-50%);
      }
  }

  @media (min-width: 768px) and (max-width: 991px) {
      .winter-sale .winter-sale-outer .ws-img::before {
          width: 100%;
          height: 300%;
          top: 0%;
          border-radius: 100%;
          z-index: -1;
          max-width: 560px;
          left: 50%;
          transform: translateX(-50%);
      }
  }

  .winter-sale .winter-sale-outer .ws-img::after {
      content: "";
      background: url(../img/ws-stars-bg.svg) no-repeat;
      position: absolute;
      width: 100%;
      height: 150%;
      top: -25%;
      left: 0;
      z-index: -1;
      background-size: 100% 100%;
  }

  @media (max-width: 767px) {
      .winter-sale .winter-sale-outer .ws-img::after {
          width: 100%;
          height: 100%;
          top: 20px;
          left: 0;
          z-index: -1;
          background-size: 100% 100%;
      }
  }

  @media (min-width: 768px) and (max-width: 991px) {
      .winter-sale .winter-sale-outer .ws-img::after {
          width: 80%;
          height: 100%;
          top: 10%;
          left: 0;
          z-index: -1;
          background-size: 100% 100%;
          left: 50%;
          transform: translateX(-50%);
      }
  }

  .winter-sale .winter-sale-outer .ws-img img {
      width: 90%;
      margin: 0 auto;
      display: block;
  }

  @media (max-width: 767px) {
      .winter-sale .winter-sale-outer .ws-img img {
          padding-top: 60px;
          max-height: 220px;
          width: auto;
          max-width: 80%;
          -o-object-fit: contain;
          object-fit: contain;
      }

      .why-hertz-rv {
          padding: 30px 0;
      }

      .winter-sale {
          padding-bottom: 30px !important;
      }

      .terms-container {
          padding-bottom: 30px;
      }
  }

  @media (min-width: 768px) and (max-width: 991px) {
      .winter-sale .winter-sale-outer .ws-img img {
          width: 100%;
          max-width: 80%;
          height: 180px;
          -o-object-fit: contain;
          object-fit: contain;
          padding-top: 50px;
      }
  }



  .why-hertz-rv .icon-grid-wrapper .item-head {
      font-size: 20px;
      font-weight: 700 !important;
      line-height: 1.5;
      color: #222;
  }

  .heading-with-border {
      font-size: 36px;
      font-weight: 700 !important;
      line-height: 1.27;
      position: relative;
      padding-bottom: 15px;

      @media(max-width: 767px) {
          font-size: 28px;
      }
  }

  .heading-with-border::after {
      content: "";
      position: absolute;
      width: 70px;
      height: 3px;
      background-color: #fc0;
      left: 50%;
      transform: translateX(-50%);
      bottom: 0;
  }


  body {
      background-color: #fff !important;
  }


  .why-hertz-rv .icon-grid-wrapper {
      padding: 0;
  }


  .banner-section {
      overflow: hidden;

      .banner-wrapper {
          display: flex;
          align-items: center;
          position: relative;
          // height: 550px;
          height: auto;
          // padding-top: 50px;
          // padding-bottom: 50px;

          @media(max-width:767px) {
              padding-top: 0;
              padding-bottom: 0;
              flex-direction: column;
          }

          @media(min-width:768px) and (max-width:991px) {
              // padding-top: 30px;
              // padding-bottom: 30px;
          }

          &::before {
              content: '';
              height: 100%;
              position: absolute;
              width: 60%;
              background: #FFF9D7;

              @media(max-width:767px) {
                  width: 100%;
              }
          }

          &:after {
              content: "";
              position: absolute;
              width: 120%;
              height: 150px;
              bottom: -110px;
              left: -210px;
              background-color: var(--bs-white);
              z-index: 2;
              border-radius: 50%;

              @media(max-width:767px) {
                  display: none;
              }

              @media(min-width:768px) and (max-width:991px) {
                  width: 160%;
              }

              @media(min-width:992px) and (max-width:1400px) {
                  width: 150%;

              }
          }

          .banner-content {
              position: relative;
              z-index: 2;

              width: 100%;
              height: 100%;
              padding: 50px 0;

              // background-repeat: no-repeat;
              // background-size: cover;
              @media(max-width:767px) {
                  padding: 30px 0 15px;
              }


              &:before {
                  content: "";
                  position: absolute;
                  width: 85%;
                  height: 100%;
                  top: 0px;
                  left: 0;
                  background: url(https://circus.envigo-tech.co.uk/Hertz/winter-car-hire-evergreen/img/banner-bg-yellow.svg);
                  background-repeat: no-repeat;
                  z-index: -1;
                  background-position: right center;
                  background-size: cover;

                  @media(min-width:768px) and (max-width:992px) {
                      width: 115%;
                      height: 100%;
                      background-position: right;
                      background-size: cover;
                  }

                  @media(min-width:881px) and (max-width:991px) {
                      width: 98%;
                      height: 100%;

                  }

                  @media(min-width:992px) and (max-width:1200px) {
                      width: 90%;
                      height: 100%;
                      top: -50px;
                      background-position: top right;
                      background-size: unset;
                  }

                  @media(min-width:1201px) and (max-width:1320px) {
                      width: 85%;
                      height: 140%;
                      background-position: top;
                  }

                  @media(min-width:1321px) and (max-width:1660px) {
                      width: 85%;
                      height: 100%;
                  }
              }

              &:after {
                  content: "";
                  position: absolute;
                  width: 50%;
                  height: 100%;
                  top: -20px;
                  left: 0;
                  background: none;
                  background-repeat: no-repeat;
                  z-index: -1;
                  background-position: top right;
                  background-size: 95%;

                  @media(min-width:1600px) {
                      width: 47%;
                  }
              }

              .banner-content-wrapper {
                  max-width: 43%;
                  height: 100%;
                  display: flex;
                  flex-direction: column;
                  justify-content: center;
                  padding-bottom: 190px;
                  padding-left: 0px;

                  @media(max-width:767px) {
                      max-width: 100%;
                      padding: 0;
                  }

                  @media(min-width:768px) and (max-width:991px) {
                      max-width: 50%;
                      padding-bottom: 140px;
                  }

                  @media(min-width:992px) and (max-width:1200px) {
                      padding-bottom: 140px;
                  }

                  @media(min-width:768px) and (max-width:1400px) {
                      width: 100%;
                      padding-left: 0;
                  }

                  .banner-title {
                      font-size: 70px;
                      font-weight: 800 !important;
                      line-height: 1.28;
                      margin-bottom: 14px;

                      @media(max-width: 767px) {
                          font-size: 32px;
                          font-weight: 700 !important;
                      }

                      @media(min-width: 768px) and (max-width:991px) {
                          font-size: 42px;
                      }

                      @media(min-width: 992px) and (max-width:1200px) {
                          font-size: 50px;
                      }
                  }

                  .banner-subtitle {
                      font-size: 30px;
                      font-weight: 400 !important;
                      line-height: 1.4;
                      margin-bottom: 15px;

                      @media(max-width:767px) {
                          font-size: 18px;
                          line-height: 1.6;
                      }

                      @media(min-width:768px) and (max-width:991px) {
                          font-size: 20px;
                      }

                      @media(min-width:992px) and (max-width:1400px) {
                          font-size: 25px;
                      }


                      span {
                          background: url(https://circus.envigo-tech.co.uk/Hertz/winter-car-hire-evergreen/img/shape-off-bg.svg);
                          padding: 6px 10px 0px 3px;
                          background-repeat: no-repeat;
                          background-size: 100%;

                          @media(max-width:767px) {
                              padding: 6px 13px 3px 5px;
                          }

                          @media(min-width:768px) and (max-width:1200px) {
                              padding: 6px 6px 3px 6px;
                          }

                      }
                  }

                  p {
                      font-weight: 500;
                      color: #000;
                  }

                  .more-savings {
                      background: url(https://circus.envigo-tech.co.uk/Hertz/winter-car-hire-evergreen/img/more-saving-bg.webp);
                      padding: 15px 35px 25px;
                      background-repeat: no-repeat;
                      background-size: 100% 100%;
                      width: max-content;
                      max-width: 100%;

                      @media(max-width:1400px) {
                          padding: 15px 25px 25px;

                      }


                      .ms-title {
                          font-size: 24px;
                          font-weight: 700 !important;
                          line-height: 1.25;
                          margin-bottom: 5px;

                          @media(max-width:1400px) {
                              font-size: 22px;
                          }
                      }

                      .welcome-text {
                          background: #047E8C;
                          border-radius: 40px;
                          padding: 10px 15px;
                          color: var(--bs-white);
                          font-size: 16px;
                          font-weight: 600 !important;
                          line-height: 1.25 !important;
                          width: max-content;
                          max-width: 100%;
                          margin-top: 10px;
                      }

                      p {
                          line-height: 1.5;
                          color: var(--hertz-black);
                          margin-bottom: 10px;
                      }
                  }
              }
          }

          .banner-img {
              position: absolute;
              right: 0;
              z-index: 0;
              height: 100%;
              width: 55%;
              overflow: hidden;

              img {
                  object-fit: cover;
                  height: 100%;

                  @media(min-width:768px) and (max-width:1400px) {
                      height: 100%;
                      object-fit: cover;
                      object-position: left;
                  }
              }

              @media(max-width:767px) {
                  position: relative;
                  width: 100%;
                  height: auto;
                  margin-top: 20px;
              }

              @media(min-width:768px) and (max-width:800px) {

                  width: 77%;
              }

              @media(min-width:801px) and (max-width:860px) {

                  width: 70%;
              }

              @media(min-width:861px) and (max-width:991px) {

                  width: 62%;
              }

              @media(min-width:992px) and (max-width:1200px) {
                  width: 65%;
              }
          }
      }
  }

  .banner-section {
      padding-bottom: 30px;

      @media(max-width:991px) {
          margin-bottom: 30px;
      }

      @media(min-width:992px) and (max-width:1200px) {
          margin-bottom: 40px;
          padding-bottom: 20px;
      }

      .banner-image {
          margin-bottom: 25px;
      }
  }

  .banner-section .banner-image .banner-image-content .banner-image-heading {
      font-size: 62px;
      line-height: 66px;
  }

  .banner-section .banner-image .banner-image-content .banner-image-subheading {
      font-size: 32px;
      text-align: center;
      line-height: 42px;
  }

  .booking-widget-ev-section {
      z-index: 2
  }

  .user-logged .non-member {
      display: none;
  }

  .user-logged .member {
      display: block;
  }

  .btns {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      font-size: 14px;
      font-weight: 700;
      line-height: 1.28;
      align-items: center;
      color: #000;
  }

  .primary-btn {
      background-color: #FC0;
      border: 1px solid #FC0;
      color: #000 !important;
      text-decoration: none;
      padding: 10px 15px;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 600;
      line-height: 1.25;
      transition: 0.5s ease-in-out;
  }

  .secondary-btn {
      background-color: var(--bs-white);
      border: 1px solid #FC0;
      color: #000 !important;
      text-decoration: none;
      padding: 10px 15px;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 600;
      line-height: 1.25;
      transition: 0.5s ease-in-out;
  }

  .banner-section {
      & .banner-wrapper {
          & .banner-content {
              &::before {
                  @media (min-width: 768px) and (max-width: 992px) {
                      width: 125%;
                      height: 100%;
                      background-position: top right;
                      background-size: cover;
                  }

                  @media (min-width: 992px) and (max-width: 1200px) {
                      width: 110%;
                      height: 110%;
                      top: -50px;
                      background-position: top right;
                      background-size: cover;
                  }
              }
          }
      }
  }

  .disclaimer .disclaimer-heading {
      font-size: 18px;
      font-weight: 700 !important;
      line-height: 1.23;
      color: #000;
      margin-bottom: 8px;
  }

  .disclaimer p {
      font-size: 14px;
      font-weight: 400;
      line-height: 1.85;
  }

  .banner-section .banner-wrapper .banner-content .banner-content-wrapper {
      padding-bottom: 170px;

      @media (max-width: 767px) {
          padding-bottom: 0;
      }

      @media (min-width: 768px) and (max-width: 1200px) {
          padding-bottom: 140px;
      }
  }

  .why-renting-box .why-renting-text:last-child {
      margin-bottom: 0
  }


  @media (min-width: 1200px) {
      .hertz-benefit-section .bg-overflow img.gold-banner-img {
          height: 290px !important;
          margin-top: 0 !important;
          object-fit: cover;
          position: relative !important;
          max-width: 100% !important;
          width: 100% !important;
          margin-left: 0 !important;
      }
  }

  .rounded-10 {
      border-radius: 10px;
  }

  .tooltip-box-with-html > img{
    width:20px;
    height: 20px;
  }

  /* @media (max-width: 991px) {
      .order-md-2 {
          order: 2 !important;
      }
  }

  @media (max-width: 991px) {
      .order-md-1 {
          order: 1 !important;
      }
  } */