/*Equalize column heights and pin buttons to bottom*/
/*Only apply to desktop*/
@media only screen and (min-width: 992px) {
    /*PARENT CONTAINER*/
    /*must set height based on content*/
    /*must set height because all child elements are absolutely positioned and collapse the parent height to 0*/
  .items_e6fad53d7bbf4b12a387a5d740c04fd1 {
    height: 330px;
  }
    /*CHILD CONTAINER*/
    /*fills 100% of parent container*/
  .items_e6fad53d7bbf4b12a387a5d740c04fd1 .item {
    height: 100%;
  }
    /*2ND CHILD OF .item*/
    /*fills 100% of container*/
  .items_e6fad53d7bbf4b12a387a5d740c04fd1 .item .itemContent {
    height: 100%;
  }
    /*2ND CHILD OF .itemContent*/
    /*creates flex container with stacked elements*/
    /*height dependent on content*/
  .items_e6fad53d7bbf4b12a387a5d740c04fd1 .item .itemContent .itemInnerContent {
    display: flex;
    flex-direction: column;
    height: 45%;
  }
    /*2ND CHILD OF .itemInnerContent*/
    /*will change depending on the number of paragraphs*/
    /*typically button is last so it will be the pseudo :last-child or :last-of-type*/
  .items_e6fad53d7bbf4b12a387a5d740c04fd1 .item .itemContent .itemInnerContent p:nth-child(2) {
    margin-top: auto;
    padding-bottom: 0;
  }
    /*I DON'T KNOW WHAT THIS IS*/
    /*invisible added element of the last column - doesn't appear in the builder markup*/
    /*may or may not always appear in the last column after the button*/
  .items_e6fad53d7bbf4b12a387a5d740c04fd1 .item .itemContent .itemInnerContent p:nth-child(3) {
    display: none;
  }
}

/*Tabs CSS*/

.tab-sec {
    margin: 60px 0;
}

ul#tabs {
    padding: 0;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

ul#tabs li {
    display: inline-block;
    background: black;
    padding: 6px;
    border-radius: 20px 20px 0 0;
    width: 17%;
    border: 1px solid black;
}
ul#tabs li a {
    font-size: 30px;
    text-decoration: none;
    color: white;
		display: block;
}

#tabs li.active {
	background: #7fbfff;
}
#tabs li.active a {
	color: black;
}
#tabs li:hover {
    background: #7fbfff;
}
#tabs li:hover a {
    color: black;
}
.content-wrapper {
    border: 1px solid black;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    min-height: 200px;
		width: 100%;
}
.tab-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    min-height: 500px;
}
.tab-content img {
    max-width: 100%;
}


.tab-content .half {
    width: 50%;
    text-align: center;
}

.tab-content .half h3 {
    font-size: 30px;
    font-weight: bold;
}
@media screen and (max-width:991px){
	.tab-content{
		flex-direction:column;
	}
	.tab-content .half {
    width: 100%;
	}
	ul#tabs li a{
		font-size: 17px;

	}
}
@media screen and (max-width: 768px){
	ul#tabs li{
		padding: 5px;
		border-radius: 15px 15px 0 0;
		width: 13%;
	}
	ul#tabs li a{
		font-size: 13px;
        font-weight: bold;
	}
}