/*========================================
            BANNER PART STYLE
=========================================*/
.banner-part {
  padding: 165px 0px 285px;
  background: url(../images/pattern/wave.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.banner-part::before {
  position: absolute;
  content: "";
  z-index: -1;
  opacity: 0.9;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: var(--gradient);
}

.banner-content h4 {
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.3px;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.banner-content h1 {
  font-size: 55px;
  font-weight: 900;
  margin-bottom: 30px;
  color: var(--white);
  letter-spacing: -2px;
  text-transform: capitalize;
}

.banner-content table {
  width: 85%;
  margin-bottom: 40px;
}

.banner-content table tr td {
  color: var(--chalk);
  padding-left: 22px;
  line-height: 40px;
  position: relative;
  text-transform: capitalize;
}

.banner-content table tr td::before {
  position: absolute;
  content: "\f192";
  top: 50%;
  left: 0px;
  font-size: 14px;
  line-height: 14px;
  color: var(--primary-light);
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  transform: translateY(-50%);
}

.banner-content .btn {
  font-size: 16px;
  padding: 16px 32px;
}

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

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

@media (max-width: 575px) {
  .banner-part {
    padding: 125px 0px 270px;
  }
  .banner-content h4 {
    font-size: 18px;
  }
  .banner-content tr {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .banner-content h1 {
    font-size: 45px;
  }
  .banner-content table {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .banner-image {
    display: none;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .banner-content h1 {
    font-size: 45px;
  }
  .banner-content table {
    width: 100%;
  }
}

/*========================================
            DOMAIN PART STYLE
=========================================*/
.domain-content {
  padding: 80px;
  margin-top: -200px;
  background: var(--white);
  box-shadow: var(--primary-bshadow);
  position: relative;
  z-index: 1;
}

.domain-nav {
  margin-bottom: 25px;
  justify-content: center;
}

.domain-nav li {
  margin-right: 20px;
  padding-right: 20px;
  border-right: 1px solid var(--border);
}

.domain-nav li:last-child {
  margin: 0px;
  padding: 0px;
  border: none;
}

.domain-form {
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 10px solid var(--white);
  box-shadow: var(--primary-bshadow);
}

.domain-form input {
  width: 100%;
  height: 60px;
  padding-left: 20px;
}

.domain-form .nice-select {
  font-size: 24px;
  font-weight: 500;
  padding: 0px 18px 0px 30px;
  border-left: 1px solid var(--border);
}

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

.domain-form .nice-select::after {
  font-size: 14px;
}

.domain-form button {
  height: 60px;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 50px;
  margin-left: 30px;
  color: var(--white);
  background: var(--primary);
  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;
}

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

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

.domain-suggest {
  display: flex;
  align-items: center;
  justify-content: center;
}

.domain-suggest li {
  padding: 0px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-right: 1px solid var(--border);
}

.domain-suggest li img {
  margin-bottom: 5px;
}

.domain-suggest li:last-child {
  border: none;
}

@media (max-width: 767px) {
  .domain-content {
    padding: 30px 15px;
  }
  .domain-nav {
    flex-wrap: nowrap;
  }
  .domain-nav li {
    margin-right: 25px;
    padding-right: 25px;
  }
  .domain-form {
    border: none;
    box-shadow: none;
    flex-direction: column;
    margin-bottom: 30px;
  }
  .domain-form input {
    padding: 0px 20px;
    margin-bottom: 15px;
    box-shadow: var(--primary-bshadow);
  }
  .domain-form .nice-select {
    padding: 0px 18px 0px 0px;
    margin-bottom: 15px;
    border: none;
  }
  .domain-form button {
    margin-left: 0px;
  }
  .domain-suggest li {
    width: 100%;
    padding: 0px;
    border: none;
  }
  .domain-suggest li img {
    height: 11px;
  }
  .domain-suggest li strong {
    font-size: 12px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .domain-content {
    padding: 50px;
  }
  .domain-suggest li {
    padding: 0px 30px;
  }
}

/*========================================
            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;
  }
}
