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

.step-wrapper {
    display:flex;
    flex-direction:row;
    justify-content:center;
    
    flex-wrap:wrap;
    text-align:center;

}


.grow-step {
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    align-items:center;
    width:325px;
    padding:30px;
}



  .grow-step img {
      height:350px;
  }

  .grow-step p {
      font-size:14px;
      
  }
/* 
  .para-wrapper {
    display:flex;
    flex-direction:row;
    justify-content:space-between;
    flex-wrap:wrap;
  }

  .para {
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    align-items:flex-start;
    padding:20px;
    width:600px;
  } */

  .para-wrapper {
    display: grid;
    grid-template-columns: auto auto;
    padding-top:30px;
  }
  .para {
    padding-right: 40px;
    padding-bottom:50px;
    font-size: 30px;
    text-align: left;
    /* margin:20px; */
    /* background-color: var(--main-dark); */
    border-radius:20px;
    /* width:600px; */
  }


  .para h5:after {
    content: ""; 
      display: block; 
      margin: 0;
      margin-bottom:15px; 
      width: 45px; 
      padding-top: 15px; 
      border-bottom: 5px solid; 
  }


  .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;
}

.tab2 li {
  font-family: montserrat;
  
}

.tab2 h5 {
  color:white;
  margin-top:15px;
  margin-bottom:15px;
  text-align: center;
}

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





.para a, .para a:visited, .para a:active {
    font-family: poppins;
    font-size: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    background-color: transparent;
    color: var(--main-pink);
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 20px;
    padding-left: 20px;
    margin-right: 20px;
    margin-bottom: 20px;
    border: 4px solid var(--main-pink);
    transition: .3s ease-in-out;
    display:inline;
}

.para a:hover {
    color: white;
    background-color: var(--main-pink);
}


.alt-modal-content {
    font-family:montserrat;
    font-size:18px;
    font-weight:500;
    margin-bottom:25px;

}

.alt-button {
    font-family:montserrat;
    font-size:18px;
    font-weight:600;
    color:var(--main-pink);
    background-color:transparent;
    border:none;
    transition: .3s ease-in-out;
    display:inline;
}

.alt-button:hover {
    color:white;
    cursor:pointer;

}

 .alt-button2 {
            background:transparent;
            border:0;
            font-size:40px;
            transition: .3s ease-in-out;
            color:white;
            font-family:poppins;
            text-transform:uppercase;
            font-weight:700;
        }

        .alt-button2:hover {
            color:var(--main-dark);
        }




.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;
  }

  .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;
}



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

    .entry-level, .senior-level {
        width:300px;
        height:300px;
    }

    h3 {
        font-size:30px !important; 
    }
    
}


@media only screen and (max-width: 875px) {
.para-wrapper {
    grid-template-columns: auto;
  }
  .para {
    padding-right: 0px;
   
   
  }

}