/*========================================
            BANNER PART STYLE
=========================================*/
.banner-part {
  padding: 175px 0px 95px;
  background: var(--gradient);
}

.banner-content {
  margin-right: 30px;
}

.banner-content h1 {
  font-size: 70px;
  font-weight: 900;
  line-height: 75px;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
  text-transform: capitalize;
  color: var(--white);
}

.banner-content p {
  color: var(--white);
  margin-bottom: 45px;
  margin-right: 50px;
}

.banner-image img {
  width: 100%;
  animation: miron 5s linear infinite;
}

@keyframes miron {
  0% {
    transform: translateY(20px) rotate(5deg);
  }
  50% {
    transform: translateY(-20px) rotate(0deg);
  }
  100% {
    transform: translateY(20px) rotate(5deg);
  }
}

.banner-tabs {
  margin: 0px 0px 25px;
  background: transparent;
}

.banner-tabs .tab-link {
  color: var(--primary-light);
}

.banner-tabs .tab-link:hover {
  color: var(--white);
}

.banner-form {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.banner-form button {
  height: 60px;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 40px;
  margin-left: 15px;
  color: var(--white);
  background: var(--primary);
  box-shadow: var(--primary-bshadow);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.banner-form button:hover {
  background: var(--primary-deep);
}

.banner-form button i {
  margin-right: 8px;
}

.banner-input-group {
  width: 100%;
}

.banner-input {
  width: 100%;
  padding: 0px 22px;
  margin-bottom: 15px;
  background: var(--white);
  box-shadow: var(--primary-bshadow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-input input {
  width: 100%;
  height: 60px;
}

.banner-input .nice-select {
  font-weight: 500;
  padding: 0px 15px 0px 20px;
  border-left: 1px solid var(--border);
}

.banner-input .nice-select .list {
  height: 160px;
  overflow: inherit;
  overflow-y: scroll;
}

.banner-suggest {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.banner-suggest a h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.banner-suggest a h5 span {
  font-size: 16px;
  font-weight: 400;
}

.banner-suggest a h5:hover {
  color: var(--primary-light);
}

@media (max-width: 991px) {
  .banner-content {
    text-align: center;
    margin-right: 0px;
  }
  .banner-content p {
    margin-right: 0px;
  }
  .banner-form {
    flex-direction: column;
    align-items: center;
  }
  .banner-form button {
    margin-left: 0px;
    margin-top: 25px;
  }
  .banner-image {
    display: none;
  }
}

@media (max-width: 480px) {
  .banner-suggest a h5 span {
    display: block;
  }
}

@media (max-width: 575px) {
  .banner-part {
    padding: 120px 0px 65px;
  }
  .banner-content h1 {
    font-size: 38px;
    line-height: 48px;
  }
  .banner-tabs {
    margin: 0px auto 25px;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .banner-part {
    padding: 135px 0px 80px;
  }
  .banner-content h1 {
    font-size: 45px;
    line-height: 55px;
  }
  .banner-tabs {
    margin: 0px auto 25px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .banner-suggest {
    justify-content: space-evenly;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .banner-content h1 {
    font-size: 55px;
    line-height: 65px;
  }
}

/*========================================
            FEATURE PART STYLE
=========================================*/
.feature-part {
  padding: 115px 0px 65px;
  background: var(--primary-chalk);
}

@media (max-width: 575px) {
  .feature-part {
    padding: 60px 0px 5px;
  }
}

@media (min-width: 575px) and (max-width: 767px) {
  .feature-part {
    padding: 80px 0px 25px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .feature-part {
    padding: 100px 0px 45px;
  }
}
