header {
    background-color: var(--main-pink);
}


.step-grid {
    display: grid;
    grid-template-columns: auto auto auto auto;
    margin-top:50px;

  }

.step-grid2 {
    display: grid;
    grid-template-columns: auto auto;
    margin-top:50px;

  }  
  
  
.step-grid3 {
    display: grid;
    grid-template-columns: auto auto auto;
    margin-top:50px;

  }
  
.step-grid4 {
    display: grid;
    grid-template-columns: auto auto auto auto;
    margin-top:50px;

  }  

  .step {
    padding: 20px;
    font-size: 30px;

    /* background-color: var(--main-dark); */
    border-radius:20px;
    min-width:200px;
  }

  .step h1 {
      color:var(--not-white);
      font-size:90px;
      text-align:left;
      margin-bottom:10px;
  }

  .step h5 {
      color:var(--main-dark);
  }


  .step h5:after {
  content: ""; 
    display: block; 
    margin: 0;
    margin-bottom:15px; 
    width: 10%; 
    padding-top: 15px; 
    border-bottom: 6px solid; 
}


  .step2 {
    padding: 20px;
    font-size: 30px;

    /* background-color: var(--main-dark); */
    border-radius:20px;
    min-width:200px;
  }

  .step2 h1 {
      color:var(--not-white);
      font-size:90px;
      text-align:left;
      margin-bottom:10px;
  }

  .step2 h5 {
      color:var(--main-dark);
  }


  .step2 h5:after {
  content: ""; 
    display: block; 
    margin: 0;
    margin-bottom:15px; 
    width: 10%; 
    padding-top: 15px; 
    border-bottom: 6px solid; 
}


  .step3 {
    padding: 20px;
    font-size: 30px;

    /* background-color: var(--main-dark); */
    border-radius:20px;
    min-width:200px;
  }

  .step3 h1 {
      color:var(--not-white);
      font-size:90px;
      text-align:left;
      margin-bottom:10px;
  }

  .step3 h5 {
      color:var(--main-dark);
  }


  .step3 h5:after {
  content: ""; 
    display: block; 
    margin: 0;
    margin-bottom:15px; 
    width: 10%; 
    padding-top: 15px; 
    border-bottom: 6px solid; 
}


  .step4 {
    padding: 20px;
    font-size: 30px;

    /* background-color: var(--main-dark); */
    border-radius:20px;
    min-width:200px;
  }

  .step4 h1 {
      color:var(--not-white);
      font-size:90px;
      text-align:left;
      margin-bottom:10px;
  }

  .step4 h5 {
      color:var(--main-dark);
  }


  .step4 h5:after {
  content: ""; 
    display: block; 
    margin: 0;
    margin-bottom:15px; 
    width: 50%; 
    padding-top: 15px; 
    border-bottom: 6px solid; 
}

@media only screen and (max-width: 1275px) {
    .step-grid {
        grid-template-columns: auto auto;
    }
    .step-grid2 {
        grid-template-columns: auto auto;
    }
        .step-grid3 {
        grid-template-columns: auto auto;
    }
    
        .step-grid4 {
        grid-template-columns: auto auto;
    }    
    
}

@media only screen and (max-width: 850px) {
    .step-grid {
        grid-template-columns: auto;
    }
    .step-grid2 {
        grid-template-columns: auto;
    }
    
        .step-grid3 {
        grid-template-columns: auto;
    }

        .step-grid4 {
        grid-template-columns: auto;
    }    
    
    
}

@media only screen and (max-width: 500px) {
    .step h1 {
        font-size:65px;
    }
}


.team-container2 {
    display: grid;
    grid-template-columns: auto auto;

}

.team-container3 {
    display: grid;
    grid-template-columns: auto auto auto;

}
  .team-member2 {
    display: block;
    padding: 20px;
    font-size: 30px;
    align-content: center;
    border-radius:20px;
     margin-left: auto;
  margin-right: auto;
    min-width:200px;


  }

  .team-member2 img {
      max-width:225px;
      transition: .3s ease-in-out;
  }

  .team-member2 img:hover {
    transform: scale(1.05)
  }
  
  
  
  @media only screen and (max-width: 850px) {
    .team-container2 {
        grid-template-columns: auto;
    }
}



.accordian-containter {
    border:1px solid #eeeeee;
}

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
    background-color:#f2f2f2;
    color: var(--main-dark);
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    transition: 0.4s;
    border:none;
    outline:none;
    font-family:montserrat;
    font-size:20px;
    font-weight:600;
  }
  
  /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
  .active, .accordion:hover {
    background-color: var(--main-pink);
    
  }
  
  /* Style the accordion panel. Note: hidden by default */

  .panel {
    font-family:montserrat;
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }


  .panel p {
      font-size:16px;
      font-weight:400;
      margin-top:10px;
  }
  
  .panel li {
  font-family: montserrat;
  font-size:16px;
  color:var(--main-dark);
  
}
  
  

  .accordion:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
  }
  
  .active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
  }

.accordian-wrapper {
    background-color: #f3f3f3;
    padding:10px;
}



.accordion2 {
            background-color: var(--main-pink);
            color: var(--main-dark);
            cursor: pointer;
            padding: 18px;
            width: 100%;
            text-align: left;
            transition: 0.4s;
            border:none;
            outline:none;
            font-family:montserrat;
            font-size:20px;
            font-weight:600;
          }
          
          /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
          .active, .accordion2:hover {
            background-color: white;
            
          }
          
          /* Style the accordion panel. Note: hidden by default */
        
          .panel2 {
            font-family:montserrat;
            padding: 0 18px;
            background-color: white;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.2s ease-out;
          }
        
        
          .panel2 p {
              font-size:16px;
              font-weight:400;
              margin-top:10px;
          }
        
          .accordion2:after {
            content: '\02795'; /* Unicode character for "plus" sign (+) */
            font-size: 13px;
            color: #777;
            float: right;
            margin-left: 5px;
          }
          
          .active:after {
            content: "\2796"; /* Unicode character for "minus" sign (-) */
          }
        
        .accordian-wrapper2 {
            background-color: var(--main-pink);
            padding:10px;
        }










a, a:visited {
    text-decoration:none;
    
}






  /**
 * Tabs
 */
.tabs {
	display: flex;
	flex-wrap: wrap; 
    margin-top:25px;
    
}
.tabs label {
	order: 1; 
	display: block;
	padding: 1rem 2rem;
	margin-right: 0.2rem;
	cursor: pointer;
  background: var(--main-pink);
  font-family:montserrat;
  font-weight: bold;
  transition: background ease 0.2s;
}

.tabs .tab {
  order: 99; 
  flex-grow: 1;
	width: 100%;
	display: none;
  padding: 1rem;
  background: #f3f3f3;
}
.tabs input[type="radio"] {
	display: none;
}
.tabs input[type="radio"]:checked + label {
	background: #f3f3f3
}
.tabs input[type="radio"]:checked + label + .tab {
	display: block;
}

@media (max-width: 45em) {
  .tabs .tab,
  .tabs label {
    order: initial;
  }
  .tabs label {
    width: 100%;
    margin-right: 0;
    margin-top: 0.2rem;
  }
}

.tab li {
  font-family: montserrat;
  
}

.tab h5 {
  color:var(--main-dark);
  margin-top:15px;
  margin-bottom:15px;
}







.tabs2 {
	display: flex;
	flex-wrap: wrap; 
    margin-top:25px;
    
}
.tabs2 label {
	order: 1; 
	display: block;
	padding: 1rem 2rem;
	margin-right: 0.2rem;
	cursor: pointer;
  background: var(--main-pink);
  font-family:montserrat;
  font-weight: bold;
  transition: background ease 0.2s;
}

.tabs2 .tab2 {
  order: 99; 
  flex-grow: 1;
	width: 100%;
	display: none;
  padding: 1rem;
  background:var(--main-dark);
}
.tabs2 input[type="radio"] {
	display: none;
}
.tabs2 input[type="radio"]:checked + label {
	background:var(--main-pink);
}
.tabs2 input[type="radio"]:checked + label + .tab2 {
	display: block;
}

@media (max-width: 45em) {
  .tabs2 .tab2,
  .tabs2 label {
    order: initial;
  }
  .tabs2 label {
    width: 100%;
    margin-right: 0;
    margin-top: 0.2rem;
  }
}

.tab2 li {
  font-family: montserrat;
  font-size:16px;
  color:var(--main-pink);
  
}

.tab2 h5 {
  color:var(--main-dark);
  margin-top:15px;
  margin-bottom:15px;
}

.panel a, .panel a:visited {
    color: #C2969D;
    font-weight:500;
    transition: .3 ease-in-out;
}
.panel a:hover {
    color: var(--main-dark);
}

.tab2 a, .tab2 a:visited {
    color: #C2969D;
    font-weight:500;
    transition: .3 ease-in-out;
}
.tab2 a:hover {
    color: var(--main-dark);
}


@media only screen and (max-width: 500px) {
    .panel p, .panel ul {
        font-size:14px;
    }

    .tab p, .tab2 li, .tabs , .tabs2 {
        font-size:14px;
    }

    label, .accordian {
        font-size:16px;
    }

    blockquote {
        display:none;
    }
}














  .seller-type1 {
    padding: 20px;
    font-size: 30px;
    border-radius:20px;
    min-width:200px;
    }
    
  .seller-type1 h1 {
      color:var(--not-white);
      font-size:90px;
      text-align:left;
      margin-bottom:10px;
  }

  .seller-type1 h5 {
      color:var(--main-dark);
  }


  .seller-type1 h5:after {
  content: ""; 
    display: block; 
    margin: 0;
    margin-bottom:15px; 
    width: 10%; 
    padding-top: 15px; 
    border-bottom: 6px solid; 
}    
    
    

    .seller-type1 ul{
      height: 5px;
      overflow: hidden;
      padding-left: 15px;
    }
    
    .seller-type1  ul.active{
    height: auto;
    color:var(--main-dark);
    background:var(--main-pink);
    }
    
    .seller-type1  ul li{
    margin-bottom: 5px;
    list-style: none;
    position: relative;
    }
    
    .seller-type1  ul li:before{
      content: "";
      position: absolute;
      top: 8px;
      left: -12px;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background:var(--main-dark);
    }

.seller-type1 .toggle_btn{
    font-weight: 700;
    font-family:montserrat;
    color:var(--main-dark);
    cursor: pointer;
    font-size: 15px;
    padding: 10px;
    background:var(--main-pink);
    }
    
    .seller-type1 .toggle_btn.active .fas{
    transform: rotate(180deg);
    }



  .seller-type2 {
    padding: 20px;
    font-size: 30px;
    border-radius:20px;
    min-width:200px;
    }
    
  .seller-type2 h1 {
      color:var(--not-white);
      font-size:90px;
      text-align:left;
      margin-bottom:10px;
  }

  .seller-type2 h5 {
      color:var(--main-dark);
  }


  .seller-type2 h5:after {
  content: ""; 
    display: block; 
    margin: 0;
    margin-bottom:15px; 
    width: 10%; 
    padding-top: 15px; 
    border-bottom: 6px solid; 
}    
    
    

    .seller-type2 ul{
      height: 5px;
      overflow: hidden;
      padding-left: 15px;
    }
    
    .seller-type2  ul.active{
    height: auto;
    color:var(--main-dark);
    background:var(--main-pink);
    }
    
    .seller-type2  ul li{
    margin-bottom: 5px;
    list-style: none;
    position: relative;
    }
    
    .seller-type2  ul li:before{
      content: "";
      position: absolute;
      top: 8px;
      left: -12px;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background:var(--main-dark);
    }

.seller-type2 .toggle_btn2{
    font-weight: 700;
    font-family:montserrat;
    color:var(--main-dark);
    cursor: pointer;
    font-size: 15px;
    padding: 10px;
    background:var(--main-pink);
    }
    
    .seller-type2 .toggle_btn2.active .fas{
    transform: rotate(180deg);
    }



  .seller-type3 {
    padding: 20px;
    font-size: 30px;
    border-radius:20px;
    min-width:200px;
    }
    
  .seller-type3 h1 {
      color:var(--not-white);
      font-size:90px;
      text-align:left;
      margin-bottom:10px;
  }

  .seller-type3 h5 {
      color:var(--main-dark);
  }


  .seller-type3 h5:after {
  content: ""; 
    display: block; 
    margin: 0;
    margin-bottom:15px; 
    width: 10%; 
    padding-top: 15px; 
    border-bottom: 6px solid; 
}    
    
    

    .seller-type3 ul{
      height: 5px;
      overflow: hidden;
      padding-left: 15px;
    }
    
    .seller-type3  ul.active{
    height: auto;
    color:var(--main-dark);
    background:var(--main-pink);
    }
    
    .seller-type3  ul li{
    margin-bottom: 5px;
    list-style: none;
    position: relative;
    }
    
    .seller-type3  ul li:before{
      content: "";
      position: absolute;
      top: 8px;
      left: -12px;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background:var(--main-dark);
    }

.seller-type3 .toggle_btn3{
    font-weight: 700;
    font-family:montserrat;
    color:var(--main-dark);
    cursor: pointer;
    font-size: 15px;
    padding: 10px;
    background:var(--main-pink);
    }
    
    .seller-type3 .toggle_btn3.active .fas{
    transform: rotate(180deg);
    }




  .mobile-img1 img {
      max-width:500px;
  }


@media only screen and (max-width: 500px) {
    .mobile-img1 img{
    max-width:300px;

}
}

