@font-face {
  font-family: 'bierstadtregular';
  src: url('/fonts/bierstadt-regular/bierstadt-webfont.woff2') format('woff2'),
       url('/fonts/bierstadt-regular/bierstadt-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  
}

* {
  margin: auto;
}

.nav {
  width: 100%;
  height: 9vh;
}

.top-nav {
  width: 100%;
  height: 20vh;
  border-bottom: 1px solid #e3e3e3;
}

.top-nav-container {
  display: flex;
  justify-content: space-between;
  width: 75%;
  height: 9vh;
}

.logo-container {
  width: auto;
  height: auto;
}

.nav-logo {
  float: left;
  width: 200px;
  height: auto;
}

.global-filter-search-container {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0px;
}

.global-filter-search {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 75%;
  height: 40px;
  background-color: #fff;
  border-radius: 25px;
  border: 1px solid #e3e3e3;
  padding: 0px;
}

/*---------------------------------------------------------*/

.search-container {
  width: 100%;
  height: 40px;
  border-right: 1px solid #e3e3e3;
}

.service-container {
  width: 100%;
  height: 40px;
  border-right: 1px solid #e3e3e3;
}

.location-container {
  display: grid;
  grid-template-columns: 1fr 50px;
  width: 100%;
  height: 40px;
}

.service-search[type=text] {
  width: 100%;
  height: 40px;
  padding: 0 0 0 20px;
  box-sizing: border-box;
  border-style: none;
  background-color: transparent;
  border-radius: 25px 0 0 25px;
}

.service-search[type=text]:focus {
  outline: none;
}

.filter-item-2 select {
  width: 90%;
  height: 40px;
  padding: 0 0 0 20px;
  margin: 0px;
  border-style: none;
  outline: none;
  background: transparent;

}

.filter-item-3 {
  width: 100%;
  height: 40px;
}

.filter-item-3 select {
  width: 100%;
  height: 40px;
  padding: 0 0 0 20px;
  margin: 0px;
  border-radius: 25px;
  outline: none;
  appearance: none;

}

.dropdown-container {
  width: 100%;
}

.search-btn-container {
  width: 100%;
  border-radius: 0 25px 25px 0;
}

.search-btn-container button {
  height: 40px;
  border-left: 1px solid #e3e3e3;
  border-radius: 0 25px 25px 0;
  border-style: none;
  border-left: 1px solid #e3e3e3;
  padding-right: 10px;
  cursor: pointer;
}

.search-btn-container button:hover {
  background-color: #e3e3e3;
}

.search-icon {
  width: 100%;
  height: 100%;
  background-color: transparent;
}

.search-icon img {
  width: 50%;
  height: 50%;
}

/*---------------------------------------------------------*/

.button-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* gap: 15px; */
  width: auto;
  height: auto;
}

.merchant-btn {
  width: 125px;
  height: 40px;
  background-color: #fff;
  font-size: 14px;
  font-family: 'bierstadtregular', Arial, sans-serif;
  font-weight: 200;
  border-radius: 25px;
  border: 2px solid #e3e3e3;

}



.merchant-btn:hover {
  background-color: #0B273D;
  color: #fff;
  border: 2px solid #0B273D;
  cursor: pointer;
}

.menu-btn {
  width: 100px;
  height: 40px;
  color: #0B273D;
  background-color: #7ADFF4;
  font-size: 14px;
  font-family: 'bierstadtregular', Arial, sans-serif;
  font-weight: 800;
  border-style: none;
  border-radius: 8px;
}

.menu-btn:hover {
  background-color: #7ae0f4d3;
  cursor: pointer;
}

.menu-bar {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  width: 75%;
  height: 6vh;
}

.menu-item {
  display: flex;
  width: 100%;
  text-align: center;
}

.menu-item>h4 {
  font-size: 14px;
  font-family: 'bierstadtregular', Arial, sans-serif;
  font-weight: 200;
}

.menu-item>h4>a {
  color: #000;
  text-decoration: none;
}

.menu-item>h4>a:hover {
  color: #01AA68;
  text-decoration: none;
}

/*----------------------end navbar------------------------*/



/*-----------------------start section 1--------------------------*/

.section-1 {
  position: relative; /* Add relative positioning */
  width: 100%;
  height: 40vw;
  margin-top: 20px;
  background-image: url("../assets/merchant-banner.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.text-container-1 {
  width: 75%; /* Adjust as needed */
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.header h1 {
    color: #fff;
    font-size:50px;
    font-family: 'bierstadtregular', Arial, sans-serif;
    font-weight: 600;
}

.subheader-text p {
    color: #fff;
    font-size: 20px;
    line-height: 1.4em;
    font-family: 'bierstadtregular', Arial, sans-serif;
    font-weight: 500;
}

.become-a-merchant-btn {
    width: auto;
    height: 50px;
    color: #0B273D;
    background-color: #7ADFF4;
    font-size: 16px;
    font-family: 'bierstadtregular', Arial, sans-serif;
    font-weight: 800;
    border-style: none;
    border-radius: 8px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .become-a-merchant-btn:hover {
    background-color: #7ae0f4d3;
    cursor: pointer;
  }


/*-------------------------start section 2------------------------*/

.section-2 {
  width: 75%;
  height: auto;
  margin-top: 5%;
}

.item-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    column-gap: 30px;
}

.merchant-item {

    display: grid;
    width: 100%;
    min-height: 275px;
    align-items: center;
    background-color: #F5F9FE;
    border-radius: 10px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.merchant-item h3 {
    color: #000;
    text-align: center;
    font-size: 24px;
    font-family: 'bierstadtregular', Arial, sans-serif;
    font-weight: 800;
}

.merchant-item p {
    color: #000;
    text-align: center;
    font-size: 16px;
    line-height: 1.4em;
    font-family: 'bierstadtregular', Arial, sans-serif;
    font-weight: 500;
}

.app-banner-1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  height: 6vw;
  background-color: #AFEDF9;
  border-radius: 10px;
}

.banner-text {
  width: 90%;
  color: #000;
  font-size: 22px;
  font-family: 'bierstadtregular', Arial, sans-serif;
  font-weight: 500;
}

.green-txt {
  color:#01CF68;
}

.app-btns {
  display: grid;
  grid-template-columns: 1fr 175px 175px;
  gap: 20px;
  width: 90%;
  height: 50px;
}

.app-btn {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-title {
  width: 100%;
}

.section-title h1 {
  width: 100%;
  height: auto;
  color: #000;
  text-align: center;
  font-size: 40px;
  font-family: 'bierstadtregular', Arial, sans-serif;
  font-weight: 700;
}

.section-title p {
  width: 100%;
  height: auto;
  color: #000;
  text-align: center;
  font-size: 22px;
  font-family: 'bierstadtregular', Arial, sans-serif;
  font-weight: 500;
}



/*-------------------------------------------------------------------*/


/*---------------------start section 3--------------------------------*/

.section-3 {
  width: 75%;
  height: auto;
  margin-top: 2.5vw;
}

.filter-2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  width: 100%;
  height: auto;
  margin-top: 2.5vw;
}

.filter-links {
  color: #000;
  text-decoration: none;
}

.filter-links h4 {
  font-size: 18px;
  font-family: 'bierstadtregular', Arial, sans-serif;
  font-weight: 500;
  color: #000;
  text-decoration: none;
}

.filter-links h4:hover {
  color: #01aa69d3;
  text-decoration: none;
}


.popular-filter {
  width: 100%;
  height: auto;
}

.popular-title {
  font-size: 24px;
  font-family: 'bierstadtregular', Arial, sans-serif;
  font-weight: 600;
}

.footer {
  width: 100%;
  height: auto;
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
  margin-top: 2.5vw;

}

.footer-items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  width: 75%;
  height: auto;
  margin-top: 4vw;
  margin-bottom: 4vw;
}

.footer-column {
  width: 100%;
  height: auto;
  margin-top: 0px;
}

.footer-title {
  font-size: 18px;
  font-family: 'bierstadtregular', Arial, sans-serif;
  font-weight: 600;
}

.footer-logo {
  width: 75%;
}

.soc-icons {
  float: left;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 80%;
  height: 40px;
  gap: 15px;
}

.icon {
  margin-left: 0px;
  width: 75%;
  height: 75%;
}

.icon a img {
  margin-left: 0px;
}

.app-download {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
  float: left;
  margin-top: 15px;
  width: 65%;
  height: auto;
}

.app-btn-footer {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-2 {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100px;
}

.text-container {
  width: 75%;
  height: 20px;
}

.left-txt {
  float: left;
  font-size: 18px;
  font-family: 'bierstadtregular', Arial, sans-serif;
  font-weight: 500;
}

.right-txt {
  float: right;
  font-size: 18px;
  font-family: 'bierstadtregular', Arial, sans-serif;
  font-weight: 500;
}

/*----------------------section 4--------------------------*/

.section-4 {
    width: 75%;
    height: auto;
    margin-top: 5%;
}

.section-5 {
    width: 75%;
    height: auto;
    margin-top: 5%;
}

.banner-2-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 100px;
}

.phone-mockup {
    width: 100%;
    height: auto;
}

.phone-mockup img {
    width: 100%;
}

.banner-2-text {
    width: 100%;
    height: auto;
}

.banner-2-text h1 {
    color: #000;
    font-size: 40px;
    font-family: 'bierstadtregular', Arial, sans-serif;
    font-weight: 700;
}

.banner-2-text p {
    color: #000;
    font-size: 18px;
    line-height: 1.4em;
    font-family: 'bierstadtregular', Arial, sans-serif;
    font-weight: 500;
}

/*----------------section-6------------------------*/

.section-6 {
    display: flex;
    justify-content: center;
    width: 100%;
    height: auto;
    background-color: #7ADFF4;
    margin-top: 5%;
}

.section-6-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 100px;
    width: 75%;
    height: auto;
    margin-top: 5%;
    margin-bottom: 5%;
}

.sec6-img-container {
    width: 100%;
    height: auto;
}

.sec6-img-container img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
}

/*-----------------section-7-----------------*/

.section-7 {
    width: 75%;
    margin-top: 5%;
}

label {
    color: #000;
    font-size: 18px;
    font-family: 'bierstadtregular', Arial, sans-serif;
    font-weight: 500;
}

input[type=text], select {
    width: 100%;
    height: 50px;
    color: #000;
    font-size: 18px;
    font-family: 'bierstadtregular', Arial, sans-serif;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    background-color: #f3f7fb;
    border-style: none;
    border-radius: 4px;
    box-sizing: border-box;
  }

  input[type=text], select:focus {
    outline: none;
  }

  input[type=submit] {
    width: auto;
    height: 45px;
    background-color: #7ADFF4;
    color: #0B273D;
    font-size: 16px;
    font-family: 'bierstadtregular', Arial, sans-serif;
    font-weight: 800;
    margin-top: 2.5%;
    padding-left: 25px;
    padding-right: 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }

  input[type=submit]:hover {
    background-color: #7ae0f4d3;
  }

  #form {
    width: 60%;
  }

  .form {
    color: red;
    font-size: 20px;
    font-family: 'bierstadtregular', Arial, sans-serif;
  }

  @media only screen and (max-width: 1366px) {

    .top-nav-container {
      display: flex;
      justify-content:space-between;
      width: 85%;
      height: 9vh;
    }
    
    .nav-logo {
      float: left;
      width: 150px;
      height: auto;
    }

    .menu-btn {
      width: 75px;
      height: 35px;
      color: #0B273D;
      background-color: #7ADFF4;
      font-size: 12px;
      font-family: 'bierstadtregular', Arial, sans-serif;
      font-weight: 800;
      border-style: none;
      border-radius: 8px;
    }

    .text-container-1 {
      width: 85%;
      height: auto;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
  }

  .header h1 {
    color: #fff;
    font-size:40px;
    font-family: 'bierstadtregular', Arial, sans-serif;
    font-weight: 600;
}

.subheader-text p {
    color: #fff;
    font-size: 16px;
    line-height: 1.4em;
    font-family: 'bierstadtregular', Arial, sans-serif;
    font-weight: 500;
}

.become-a-merchant-btn {
    width: auto;
    height: 45px;
    color: #0B273D;
    background-color: #7ADFF4;
    font-size: 14px;
    font-family: 'bierstadtregular', Arial, sans-serif;
    font-weight: 800;
    border-style: none;
    border-radius: 8px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .section-2 {
    width: 85%;
    height: auto;
    margin-top: 2.5vw;
  }

  .merchant-item img {
    width: 100px;
    height: 100px;
  }

  .section-title h1 {
    width: 100%;
    height: auto;
    color: #000;
    text-align: center;
    font-size: 30px;
    font-family: 'bierstadtregular', Arial, sans-serif;
    font-weight: 700;
  }
  
  .section-title p {
    width: 100%;
    height: auto;
    color: #000;
    text-align: center;
    font-size: 18px;
    font-family: 'bierstadtregular', Arial, sans-serif;
    font-weight: 500;
  }

  .section-4 {
    width: 85%;
    height: auto;
    margin-top: 5%;
}

.banner-2-text h1 {
  color: #000;
  font-size: 30px;
  font-family: 'bierstadtregular', Arial, sans-serif;
  font-weight: 700;
}

.banner-2-text p {
  color: #000;
  font-size: 16px;
  line-height: 1.4em;
  font-family: 'bierstadtregular', Arial, sans-serif;
  font-weight: 500;
}

.section-5 {
  width: 85%;
  height: auto;
  margin-top: 5%;
}

.section-6-container {
  width: 85%;
  height: auto;
  margin-top: 5%;
}

.section-7 {
  width: 85%;
  height: auto;
  margin-top: 5%;
}

.merchant-item h3 {
  color: #000;
  text-align: center;
  font-size: 20px;
  font-family: 'bierstadtregular', Arial, sans-serif;
  font-weight: 550;
}

.merchant-item p {
  color: #000;
  text-align: center;
  font-size: 14px;
  line-height: 1.4em;
  font-family: 'bierstadtregular', Arial, sans-serif;
  font-weight: 500;
}

}