/*================================================
RB Banner Area CSS
=================================================*/
.rb-banner-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.rb-banner-content span a {
  font-size: 16px;
  font-weight: 600;
  color: var(--mainColor);
  display: inline-block;
  margin-bottom: 15px;
}

.rb-banner-content h1 {
  font-size: 50px;
  font-weight: 900;
  margin-bottom: 15px;
  line-height: 1.4;
}

.rb-banner-content h1 a {
  color: #141414;
}

.rb-banner-content h1 a:hover {
  color: var(--mainColor);
}

.rb-banner-content p {
  margin-bottom: 0;
}

.rb-banner-content .banner-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 20px;
}

.rb-banner-content .banner-list li {
  list-style-type: none;
  display: inline-block;
  color: #141414;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  margin-left: 25px;
}

.rb-banner-content .banner-list li::before {
  content: '';
  position: absolute;
  left: -18px;
  top: 10px;
  height: 5px;
  width: 5px;
  background: var(--mainColor);
  border-radius: 50px;
}

.rb-banner-content .banner-list li:first-child {
  margin-left: 0;
}

.rb-banner-content .banner-list li:first-child::before {
  display: none;
}

.rb-banner-image {
  position: relative;
}

.rb-banner-image .right-arrow {
  position: absolute;
  right: -50px;
  bottom: 50px;
}

.rb-banner-image .right-arrow a i {
  display: inline-block;
  height: 120px;
  width: 120px;
  line-height: 130px;
  font-size: 50px;
  text-align: center;
  background-color: var(--mainColor);
  color: var(--whiteColor);
  border-radius: 50%;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.rb-banner-image .right-arrow a i:hover {
  background-color: var(--optionalColor);
}

.rb-banner-shape-1 {
  position: absolute;
  left: 5px;
  top: -10px;
  z-index: -1;
}

.rb-banner-shape-2 {
  position: absolute;
  bottom: 0;
  left: 45%;
  -webkit-transform: translateX(-45%);
          transform: translateX(-45%);
  z-index: -1;
}

.rb-square-shape {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}

/* Max width 767px */
@media only screen and (max-width: 767px) {
    .rb-banner-content h1 {
      font-size: 30px;
    }
    .rb-banner-content .banner-list {
      margin-top: 10px;
    }
    .rb-banner-content .banner-list li {
      font-size: 14px;
      margin-left: 20px;
    }
    .rb-banner-content .banner-list li::before {
      left: -15px;
    }
    .rb-banner-area {
      padding-top: 50px;
    }
    .rb-banner-shape-1 {
      display: none;
    }
    .rb-banner-image {
      margin-top: 30px;
      text-align: center;
    }
    .rb-banner-image .right-arrow {
      right: 10px;
      bottom: 10px;
    }
    .rb-banner-image .right-arrow a i {
      height: 70px;
      width: 70px;
      line-height: 70px;
      font-size: 35px;
    }
}

/* Min width 768px to Max width 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .rb-banner-content h1 {
      font-size: 50px;
    }
    .rb-banner-content .banner-list {
      margin-top: 10px;
    }
    .rb-banner-content .banner-list li {
      font-size: 14px;
      margin-left: 20px;
    }
    .rb-banner-content .banner-list li::before {
      left: -15px;
    }
    .rb-banner-area {
      padding-top: 70px;
    }
    .rb-banner-shape-1 {
      display: none;
    }
    .rb-banner-image {
      margin-top: 30px;
      text-align: center;
    }
    .rb-banner-image .right-arrow {
      right: 10px;
      bottom: 10px;
    }
}