@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap");
/* Basic Css */
* {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  text-decoration: none;
}

body {
  background-color: #F0FDF5;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
a,
span,
ul,
li,
input,
button {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.section-heading {
  font-size: 56px;
  background-color: transparent;
  border: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-weight: 600;
  color: #000;
}

@media screen and (max-width: 991px) {
  .section-heading {
    font-size: 52px;
  }
}

@media screen and (max-width: 767px) {
  .section-heading {
    font-size: 36px;
  }
}

@media screen and (max-width: 577px) {
  .section-heading {
    font-size: 32px;
  }
}

@media screen and (max-width: 480px) {
  .section-heading {
    font-size: 6.5vw;
  }
}

/* UI */
.merchant-card {
  position: relative;
  max-width: 304px;
  margin: 0 auto;
  border-radius: 0 0 10px 10px;
}

.merchant-card .card-img {
  position: relative;
  width: 100%;
  padding-top: 100%;
}

.merchant-card .card-img .card-img-top {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.merchant-card .card-img .favorite {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 32px;
  color: #8B8B8B;
  cursor: pointer;
}

@media screen and (max-width: 1199px) {
  .merchant-card .card-body {
    padding: 8px !important;
  }
}

.merchant-card .card-body .card-heading .left h4 {
  font-size: 15px;
  color: #27173E !important;
}

@media screen and (max-width: 1199px) {
  .merchant-card .card-body .card-heading .left h4 {
    font-size: 14px;
  }
}

.merchant-card .card-body .card-heading .left p {
  font-size: 12px;
  color: #8B8B8B;
}

@media screen and (max-width: 1199px) {
  .merchant-card .card-body .card-heading .left p {
    font-size: 11px;
  }
}

.merchant-card .card-body .card-heading .mer-rating {
  font-size: 14px;
  color: #000;
}

@media screen and (max-width: 1199px) {
  .merchant-card .card-body .card-heading .mer-rating {
    font-size: 12px;
  }
}

.merchant-card .card-body .card-address .left ion-icon {
  font-size: 16px;
  margin-top: 4px;
  margin-right: 4px;
}

.merchant-card .card-body .card-address .left p {
  font-size: 9px;
  color: #8B8B8B;
}

.merchant-card .card-body .card-address .right p {
  font-size: 9px;
  margin-right: 4px;
}

.merchant-card .card-body .card-address .right img {
  height: 24px;
  width: 24px;
  min-width: 24px;
  max-width: 24px;
}

.filter-action-wrapper {
  position: relative;
}

.filter-action-wrapper .filter-action-toggler img {
  cursor: pointer;
}

.filter-action-wrapper .filter-actions {
  position: absolute;
  right: -100%;
  background-color: #1FBE5F;
  top: 40px;
  padding: 16px;
  padding-top: 32px;
  width: 100%;
  z-index: 9;
  height: 500px;
  -webkit-transition: all .5s linear;
  transition: all .5s linear;
}

.filter-action-wrapper .filter-actions.show {
  right: 0;
}

.filter-action-wrapper .filter-actions ul li {
  border-bottom: 1px solid #fff;
  margin-bottom: 8px;
  padding-bottom: 8px;
  text-align: right;
  width: 100%;
}

.filter-action-wrapper .filter-actions ul li a {
  color: #fff;
}

/* Layout */
.landing-hero {
  position: relative;
  background-color: #1FBE5F;
}

.landing-hero .partner-nav {
  position: relative;
}

.landing-hero .partner-nav .account-wrapper img {
  height: 22px;
}

.landing-hero .partner-nav .account-wrapper p {
  font-size: 9px;
  margin-top: 2px;
}

.landing-hero .partner-nav .partner-btn {
  color: #fff;
  font-size: 24px;
  text-align: center;
}

@media screen and (max-width: 577px) {
  .landing-hero .partner-nav .partner-btn {
    font-size: 16px;
  }
}

.landing-hero .hero-wrapper {
  position: relative;
  top: 0;
}

.landing-hero .hero-wrapper .logo {
  width: 100%;
}

.landing-hero .hero-wrapper .logo img {
  height: auto;
  width: 596px;
  max-width: 596px;
}

@media screen and (max-width: 991px) {
  .landing-hero .hero-wrapper .logo img {
    width: 475px;
  }
}

@media screen and (max-width: 767px) {
  .landing-hero .hero-wrapper .logo img {
    width: 350px;
  }
}

@media screen and (max-width: 450px) {
  .landing-hero .hero-wrapper .logo img {
    width: 90%;
  }
}

.landing-hero .hero-wrapper .search-wrapper {
  border-radius: 12px;
  background-color: #FEFAFA;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}

.landing-hero .hero-wrapper .search-wrapper input {
  background-color: transparent;
  border: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #8B8B8B;
  width: 45ch;
  font-size: 24px;
}

@media screen and (max-width: 991px) {
  .landing-hero .hero-wrapper .search-wrapper input {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .landing-hero .hero-wrapper .search-wrapper input {
    font-size: 14px;
  }
}

@media screen and (max-width: 575px) {
  .landing-hero .hero-wrapper .search-wrapper input {
    font-size: 12px;
  }
}

@media screen and (max-width: 460px) {
  .landing-hero .hero-wrapper .search-wrapper input {
    font-size: 10px;
  }
}

@media screen and (max-width: 390px) {
  .landing-hero .hero-wrapper .search-wrapper input {
    font-size: 9px;
  }
}

.landing-hero .hero-wrapper .search-wrapper .bar {
  height: 43px;
  width: 1px;
  background-color: #D2D2D2;
  margin: 0 20px;
}

@media screen and (max-width: 991px) {
  .landing-hero .hero-wrapper .search-wrapper .bar {
    height: 36px;
    margin: 0 15px;
  }
}

@media screen and (max-width: 767px) {
  .landing-hero .hero-wrapper .search-wrapper .bar {
    height: 32px;
    margin: 0 12px;
  }
}

@media screen and (max-width: 575px) {
  .landing-hero .hero-wrapper .search-wrapper .bar {
    height: 28px;
    margin: 0 8px;
  }
}

@media screen and (max-width: 460px) {
  .landing-hero .hero-wrapper .search-wrapper .bar {
    height: 20px;
    margin: 0 7px;
  }
}

@media screen and (max-width: 390px) {
  .landing-hero .hero-wrapper .search-wrapper .bar {
    height: 16px;
    margin: 0 6px;
  }
}

.landing-hero .hero-wrapper .search-wrapper .location img {
  height: 43px;
}

@media screen and (max-width: 991px) {
  .landing-hero .hero-wrapper .search-wrapper .location img {
    height: 36px;
  }
}

@media screen and (max-width: 767px) {
  .landing-hero .hero-wrapper .search-wrapper .location img {
    height: 32px;
  }
}

@media screen and (max-width: 575px) {
  .landing-hero .hero-wrapper .search-wrapper .location img {
    height: 28px;
  }
}

@media screen and (max-width: 460px) {
  .landing-hero .hero-wrapper .search-wrapper .location img {
    height: 20px;
  }
}

@media screen and (max-width: 390px) {
  .landing-hero .hero-wrapper .search-wrapper .location img {
    height: 16px;
  }
}

.landing-hero .hero-wrapper .search-wrapper .scan img {
  height: 43px;
}

@media screen and (max-width: 991px) {
  .landing-hero .hero-wrapper .search-wrapper .scan img {
    height: 36px;
  }
}

@media screen and (max-width: 767px) {
  .landing-hero .hero-wrapper .search-wrapper .scan img {
    height: 32px;
  }
}

@media screen and (max-width: 575px) {
  .landing-hero .hero-wrapper .search-wrapper .scan img {
    height: 28px;
  }
}

@media screen and (max-width: 460px) {
  .landing-hero .hero-wrapper .search-wrapper .scan img {
    height: 20px;
  }
}

@media screen and (max-width: 390px) {
  .landing-hero .hero-wrapper .search-wrapper .scan img {
    height: 20px;
  }
}

.landing-hero .hero-wrapper .search-submit {
  font-size: 64px;
  background-color: transparent;
  border: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-weight: 600;
  color: #FFFBFB;
  text-align: center;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .landing-hero .hero-wrapper .search-submit {
    font-size: 52px;
  }
}

@media screen and (max-width: 767px) {
  .landing-hero .hero-wrapper .search-submit {
    font-size: 36px;
  }
}

.landing-content {
  width: 100%;
  overflow: hidden;
  background-color: #F0FDF5;
}

.landing-content .lg-filter-wrapper h3 {
  font-weight: 700;
  font-size: 18px;
  color: #7C7C7C;
}

.landing-content .lg-filter-wrapper img {
  height: 30px;
  min-height: 30px;
  width: 30px;
  min-width: 30px;
}

.search-nav-wrapper {
  background-color: #1fbe5f;
  position: relative;
  /* .search-input-wrapper {
    border-radius: 12px;
    background-color: #fefafa;
    height: max-content;
    @media screen and (max-width: 991px) {
      width: 100%;
      margin: 24px auto 0;
    }
    input {
      background-color: transparent;
      border: none;
      outline: none;
      box-shadow: none;
      color: #000;
      width: 46ch;
      @media screen and (max-width: 1300px) {
        width: 100%;
      }
    }
    .bar {
      height: 30px;
      width: 1px;
      background-color: #d2d2d2;
      margin: 0 20px;
    }
    .location {
      img {
        height: 30px;
      }
    }
    .scan {
      img {
        height: 30px;
      }
    }
  } */
}

.search-nav-wrapper .logo img {
  max-width: 300px;
}

@media screen and (max-width: 991px) {
  .search-nav-wrapper .logo {
    width: 50%;
    text-align: start !important;
  }
  .search-nav-wrapper .logo img {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .search-nav-wrapper .logo {
    width: auto;
  }
  .search-nav-wrapper .logo img {
    width: 250px;
  }
}

.search-nav-wrapper .search-input-wrapper {
  border-radius: 12px;
  background-color: #fefafa;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

@media screen and (max-width: 991px) {
  .search-nav-wrapper .search-input-wrapper {
    left: 50%;
    position: relative;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.search-nav-wrapper .search-input-wrapper input {
  background-color: transparent;
  border: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #8b8b8b;
  width: 45ch;
  font-size: 16px;
}

@media screen and (max-width: 991px) {
  .search-nav-wrapper .search-input-wrapper input {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .search-nav-wrapper .search-input-wrapper input {
    font-size: 14px;
  }
}

@media screen and (max-width: 575px) {
  .search-nav-wrapper .search-input-wrapper input {
    font-size: 12px;
  }
}

@media screen and (max-width: 460px) {
  .search-nav-wrapper .search-input-wrapper input {
    font-size: 10px;
  }
}

@media screen and (max-width: 390px) {
  .search-nav-wrapper .search-input-wrapper input {
    font-size: 9px;
  }
}

.search-nav-wrapper .search-input-wrapper .bar {
  height: 36px;
  width: 1px;
  background-color: #d2d2d2;
  margin: 0 10px;
}

@media screen and (max-width: 991px) {
  .search-nav-wrapper .search-input-wrapper .bar {
    height: 36px;
    margin: 0 15px;
  }
}

@media screen and (max-width: 767px) {
  .search-nav-wrapper .search-input-wrapper .bar {
    height: 32px;
    margin: 0 12px;
  }
}

@media screen and (max-width: 575px) {
  .search-nav-wrapper .search-input-wrapper .bar {
    height: 28px;
    margin: 0 8px;
  }
}

@media screen and (max-width: 460px) {
  .search-nav-wrapper .search-input-wrapper .bar {
    height: 20px;
    margin: 0 7px;
  }
}

@media screen and (max-width: 390px) {
  .search-nav-wrapper .search-input-wrapper .bar {
    height: 16px;
    margin: 0 4px;
  }
}

.search-nav-wrapper .search-input-wrapper .location img {
  height: 36px;
}

@media screen and (max-width: 991px) {
  .search-nav-wrapper .search-input-wrapper .location img {
    height: 36px;
  }
}

@media screen and (max-width: 767px) {
  .search-nav-wrapper .search-input-wrapper .location img {
    height: 32px;
  }
}

@media screen and (max-width: 575px) {
  .search-nav-wrapper .search-input-wrapper .location img {
    height: 28px;
  }
}

@media screen and (max-width: 460px) {
  .search-nav-wrapper .search-input-wrapper .location img {
    height: 20px;
  }
}

@media screen and (max-width: 390px) {
  .search-nav-wrapper .search-input-wrapper .location img {
    height: 16px;
  }
}

.search-nav-wrapper .search-input-wrapper .scan img {
  height: 36px;
}

@media screen and (max-width: 991px) {
  .search-nav-wrapper .search-input-wrapper .scan img {
    height: 36px;
  }
}

@media screen and (max-width: 767px) {
  .search-nav-wrapper .search-input-wrapper .scan img {
    height: 32px;
  }
}

@media screen and (max-width: 575px) {
  .search-nav-wrapper .search-input-wrapper .scan img {
    height: 28px;
  }
}

@media screen and (max-width: 460px) {
  .search-nav-wrapper .search-input-wrapper .scan img {
    height: 20px;
  }
}

@media screen and (max-width: 390px) {
  .search-nav-wrapper .search-input-wrapper .scan img {
    height: 16px;
  }
}

.search-nav-wrapper .partner-wrapper p {
  font-size: 9px;
}

@media screen and (max-width: 991px) {
  .search-nav-wrapper .partner-wrapper {
    width: 50%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
}

@media screen and (max-width: 767px) {
  .search-nav-wrapper .partner-wrapper {
    width: auto;
  }
}

@media screen and (max-width: 550px) {
  .search-nav-wrapper .partner-wrapper a {
    font-size: 10px;
  }
  .search-nav-wrapper .partner-wrapper .account-wrapper img {
    height: 18px;
  }
}

.partner-hero {
  position: relative;
  background-color: #1FBE5F;
}

.partner-hero .top-nav {
  position: relative;
}

.partner-hero .top-nav .logo img {
  height: 50px;
}

.partner-hero .top-nav .partner-btn {
  color: #fff;
  font-size: 24px;
  text-align: center;
}

@media screen and (max-width: 577px) {
  .partner-hero .top-nav .partner-btn {
    font-size: 16px;
  }
}

.partner-hero .top-nav .account-wrapper img {
  height: 20px;
}

.partner-hero .top-nav .account-wrapper p {
  font-size: 9px;
  margin-top: 2px;
}

.partner-hero .hero-wrapper {
  position: relative;
  top: 0;
}

.partner-hero .hero-wrapper p {
  padding: 0 10%;
}

.partner-hero .hero-wrapper .logo img {
  height: auto;
  width: 596px;
  max-width: 596px;
}

@media screen and (max-width: 991px) {
  .partner-hero .hero-wrapper .logo img {
    width: 475px;
  }
}

@media screen and (max-width: 767px) {
  .partner-hero .hero-wrapper .logo img {
    width: 350px;
  }
}

@media screen and (max-width: 450px) {
  .partner-hero .hero-wrapper .logo img {
    width: 90%;
  }
}

.partner-hero .hero-wrapper a {
  font-size: 64px;
  background-color: transparent;
  border: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-weight: 600;
  color: #FFFBFB;
}

@media screen and (max-width: 991px) {
  .partner-hero .hero-wrapper a {
    font-size: 52px;
  }
}

@media screen and (max-width: 767px) {
  .partner-hero .hero-wrapper a {
    font-size: 36px;
  }
}

@media screen and (max-width: 577px) {
  .partner-hero .hero-wrapper a {
    font-size: 32px;
  }
}

@media screen and (max-width: 480px) {
  .partner-hero .hero-wrapper a {
    font-size: 6.5vw;
  }
}

.partner-hero .hero-wrapper form {
  position: relative;
}

.partner-hero .hero-wrapper form input {
  width: 100%;
  text-align: center;
  border-radius: 10px;
  border: 1px solid #FFDD0E;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin-bottom: 24px;
  font-weight: 600;
  font-size: 32px;
  line-height: 48px;
}

@media screen and (max-width: 991px) {
  .partner-hero .hero-wrapper form input {
    font-size: 28px;
  }
}

@media screen and (max-width: 767px) {
  .partner-hero .hero-wrapper form input {
    font-size: 24px;
  }
}

@media screen and (max-width: 577px) {
  .partner-hero .hero-wrapper form input {
    font-size: 20px;
  }
}

@media screen and (max-width: 380px) {
  .partner-hero .hero-wrapper form input {
    font-size: 18px;
  }
}

.partner-hero .hero-wrapper form p {
  text-align: center;
  color: #fff;
  margin-bottom: 48px;
}

.partner-hero .hero-wrapper form input[type='submit'] {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  margin: 0 auto;
  padding: 0 32px;
  background-color: #FFDD0E;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (max-width: 575px) {
  .partner-hero .hero-wrapper form input[type='submit'] {
    width: 90%;
  }
}

.partner-hero .hero-wrapper form .resend-button input {
  background-color: transparent;
  border: none;
  color: #fff;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.partner-hero .hero-wrapper .forgot-btn {
  font-size: 16px;
}

.hero-pic {
  position: relative;
}

.hero-pic img {
  width: 100%;
}

.partner-order {
  position: relative;
}

.partner-order .col-12 {
  position: relative;
}

.partner-order .col-12 .order-details {
  width: 98%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  position: absolute;
  bottom: 20px;
  border-radius: 20px;
  background-color: #00000099;
  color: #fff;
  padding: 8px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .partner-order .col-12 .order-details {
    font-size: 14px;
  }
}

@media screen and (max-width: 680px) {
  .partner-order .col-12 .order-details {
    font-size: 13px;
  }
}

@media screen and (max-width: 630px) {
  .partner-order .col-12 .order-details {
    font-size: 12px;
  }
}

@media screen and (max-width: 585px) {
  .partner-order .col-12 .order-details {
    font-size: 11px;
  }
}

@media screen and (max-width: 540px) {
  .partner-order .col-12 .order-details {
    font-size: 10px;
  }
}

@media screen and (max-width: 493px) {
  .partner-order .col-12 .order-details {
    font-size: 9px;
    bottom: 15px;
  }
}

.partner-order .col-12 .order-details .order-btn-1 {
  -webkit-box-flex: 26.50%;
      -ms-flex: 26.50%;
          flex: 26.50%;
}

.partner-order .col-12 .order-details .order-btn-2 {
  -webkit-box-flex: 43.48%;
      -ms-flex: 43.48%;
          flex: 43.48%;
}

.partner-order .col-12 .order-details .order-btn-3 {
  -webkit-box-flex: 30.02%;
      -ms-flex: 30.02%;
          flex: 30.02%;
}

.get-started {
  background-color: #1FBE5F;
}

.get-started .section-heading {
  color: #fff;
}

.partner-todo {
  background-color: #F0FDF5;
  position: relative;
}

.partner-todo .single-todo {
  position: relative;
  height: 100%;
}

.partner-todo .single-todo h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

@media screen and (max-width: 767px) {
  .partner-todo .single-todo h2 {
    position: absolute;
    right: 1px;
    top: 15px;
    background-color: #FFDD0E;
    padding: 4px 8px;
    font-size: 15px;
    border-radius: 8px 0 0 8px;
  }
}

.partner-todo .single-todo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 20px;
}

.partner-todo .single-todo .todo-details {
  background-color: #00000099;
  border: none;
  outline: none;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  position: absolute;
  bottom: -42px;
  color: #fff;
  font-weight: 600;
  width: 100%;
  border-radius: 16px;
  padding: 12px;
}

@media screen and (max-width: 767px) {
  .partner-todo .single-todo .todo-details {
    bottom: 2px;
  }
}

.partner-todo .single-todo .todo-details .startup {
  position: absolute;
  top: -40px;
}

.partner-todo .todo-offer {
  position: absolute;
  background-color: #FFDD0E;
  width: 300px;
  min-width: 300px;
  max-width: 300px;
  height: 300px;
  min-height: 300px;
  max-height: 300px;
  bottom: -230px;
  z-index: 99;
  text-align: center;
  border-radius: 50%;
  color: #000;
  right: 36px;
}

@media screen and (max-width: 1199px) {
  .partner-todo .todo-offer {
    -webkit-transform: scale(0.68);
            transform: scale(0.68);
    right: -18px;
  }
}

@media screen and (max-width: 991px) {
  .partner-todo .todo-offer {
    -webkit-transform: scale(0.55);
            transform: scale(0.55);
    right: -48px;
    bottom: -170px;
  }
}

.partner-todo .todo-offer h2 {
  font-size: 56px;
  font-weight: 700;
}

.partner-todo .todo-offer h1 {
  font-size: 72px;
  font-weight: 900;
}

.partner-todo .todo-offer h1 small {
  font-size: 56px;
}

.partner-todo .todo-offer p {
  font-size: 14px;
  font-weight: 700;
}

.feature {
  background-color: #1FBE5F;
  position: relative;
  color: #fff;
}

.feature .section-heading {
  color: #fff;
}

.feature .single-feature h3 {
  margin-left: -20px;
  margin-bottom: 16px;
}

.partner-hardware {
  background-color: #F0FDF5;
  position: relative;
}

.partner-hardware .col {
  width: 20%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

@media screen and (max-width: 991px) {
  .partner-hardware .col {
    width: 33.33%;
  }
}

@media screen and (max-width: 767px) {
  .partner-hardware .col {
    width: 50%;
  }
}

@media screen and (max-width: 575px) {
  .partner-hardware .col {
    width: 100%;
  }
}

.partner-hardware .col .single-hardware {
  position: relative;
  height: 100%;
}

.partner-hardware .col .single-hardware h2 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 16px;
}

@media screen and (max-width: 1199px) {
  .partner-hardware .col .single-hardware h2 {
    font-size: 17px;
  }
}

@media screen and (max-width: 575px) {
  .partner-hardware .col .single-hardware h2 {
    position: absolute;
    right: 1px;
    top: 15px;
    background-color: #FFDD0E;
    padding: 4px 8px;
    font-size: 15px;
    border-radius: 8px 0 0 8px;
  }
}

.partner-hardware .col .single-hardware img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  background-color: #fff;
}

.partner-hardware .col .single-hardware .hardware-details {
  background-color: #00000099;
  border: none;
  outline: none;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  position: absolute;
  color: #fff;
  font-weight: 600;
  width: 100%;
  border-radius: 20px;
  padding: 12px;
  font-size: 15px;
  bottom: -36px;
}

@media screen and (max-width: 1199px) {
  .partner-hardware .col .single-hardware .hardware-details p {
    font-size: 12px;
  }
}

@media screen and (max-width: 575px) {
  .partner-hardware .col .single-hardware .hardware-details {
    bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .partner-hardware .col .single-hardware .hardware-details {
    position: absolute;
  }
}

.partner-contact input,
.partner-contact textarea {
  border: 1px solid #FFDD0E;
  border-radius: 30px;
  padding: 8px 16px;
  width: 100%;
  text-align: center;
  font-size: 56px;
  font-weight: 700;
}

@media screen and (max-width: 991px) {
  .partner-contact input,
  .partner-contact textarea {
    font-size: 52px;
  }
}

@media screen and (max-width: 767px) {
  .partner-contact input,
  .partner-contact textarea {
    font-size: 36px;
  }
}

@media screen and (max-width: 577px) {
  .partner-contact input,
  .partner-contact textarea {
    font-size: 32px;
  }
}

@media screen and (max-width: 480px) {
  .partner-contact input,
  .partner-contact textarea {
    font-size: 6.5vw;
  }
}

.partner-contact input[type='submit'] {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  margin: 0 auto;
  padding: 8px 32px;
  background-color: #FFDD0E;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 20px;
}

@media screen and (max-width: 575px) {
  .partner-contact input[type='submit'] {
    width: 90%;
  }
}
/*# sourceMappingURL=style.css.map */