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


big {
    font-weight:600;
}

ul {
    font-family:montserrat;
}

blockquote {
    margin-left:20px;
    border-left: 3px solid var(--main-pink);
    padding-left:10px;
    font-family:montserrat;
}

.interview-content {
    /* display:flex;
    flex-direction:column;
    justify-content:space-between;
    align-items:center;
    margin-top:25px; */
    max-width:1500px;
    
}

.interview-step {
width:100%;
margin-bottom:35px;

}


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


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: #f3f3f3;
}
.tabs2 input[type="radio"] {
	display: none;
}
.tabs2 input[type="radio"]:checked + label {
	background: #f3f3f3
}
.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;
  
}

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