b {
	font-weight: bold;
}

i {
	font-style: italic;
}

div {
	box-sizing: border-box;
}

.external-link::after{
	content: "\e901";
	font-family: "raptoricon";
	font-size: 10px;
	font-weight: normal;
	margin-left: 6px;
	position: relative;
	top: -3px;
}

.hero-section-image {
	width: 100%;
	margin-bottom: 10px;
	border-radius: 29px 0 29px 0;
}

.tab {
	overflow: hidden;
	display: grid;
	grid-template-columns: repeat(5,1fr);
	grid-gap: 10px;
	justify-content: left;
	align-items: center;
}

.tab button {
	border: none;
	cursor: pointer;
	padding: 20px;
	transition: 0.3s;;
	font-size: 16px;
	font-family: inherit;
	border-radius: 9px;
	font-weight: bold;
}

.tab button:hover {
	background-color: rgba(0,20,137,0.2);
}

.tab button.active {
	background-color: rgba(0,20,137,1);
	color: rgba(277,277,277,1);
}

.tabcontent {
	display: none;
	padding: 15px 0px;
	border: none;
}

.section-text {
	background-color: rgba(150,140,131,0.1);
	padding: 20px 100px;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.section-heading {
	text-align: center;
	color: rgba(0,20,137,1);
	margin-top: 16px;
}

.section-heading-horizontal-line {
	border-top: 3px solid rgba(143,173,21,1);
	margin: auto;
	width: 20%;
}

.section-image {
	float: right;
	height: 200px;
	width: 200px;
	box-sizing: border-box;
	border-radius: 50%;
	margin: 10px;
}

.section-paragraph-signature {
	text-align: right;
}

.section-paragraph-signature i {
	font-size: 14px;
}

/*table styling for presenters pictures*/
.tbl-col-4 {
	width: 100%;
	margin-top: 20px;
}

.tbl-col-4 tbody {
	border-top: none;
}

.tbl-col-4 tr {
	display: grid;
	grid-template-columns: repeat(4,1fr);
}

.tbl-col-4 tr td {
	border: none;
	text-align: center;
}

.profile-img {
	border-radius: 50%;
	height: 100px;
	width: 100px;
	object-fit: cover;
}

.view-empty .coming-soon-page {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.view-empty .coming-soon-page .text-center {
    color: #ffc501;
    margin-top: 0;
    padding: 4px 8px;
    font-weight: bold;
	font-size: 28px;
	font-family: inherit;
}

.view-empty .coming-soon-page p {
    margin-top: 0;
    font-size: 28px;
    font-family: inherit;
}

/*list of publishers*/
.list-container {
	display: grid;
	grid-template-columns: reapeat(1,1fr);
	grid-gap: 15px;
	padding: 0;
}

.list-container .list-container-item {
	list-style: none;
	height: max-content;
	display: grid;
	grid-gap:15px;
	grid-template-columns: 30% 70%;
	align-items: center;
	padding: 20px;
	border-radius: 9px;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.list-container-item-img img {
	width: 100%;
}

.list-container-item-img {
	float: left;
	padding: 20px;
}

.text-description {
	margin-top: 16px;
	margin-bottom: 30px;
}

.lst-btn {
	display: inline-flex;
	border-radius: 19px;
	background-color: rgba(0,20,137,1);
	color:#ffffff;
	border:none;
	padding:10px 20px;
}

.lst-btn:hover {
	color: #ffffff;
	text-decoration: none;
}

@media only screen and (max-width: 600px) {
	.tab {
		overflow: auto;
		white-space: nowrap;
		scrollbar-width: thin;
		scroll-margin: 5px 0 0 0;
	}

	.tab button {
		display: inline;
	}

	.section-text {
		padding: 20px;
	}

	.section-image {
		float: none;
		display: block;
		margin-left: auto;
		margin-right: auto;
	}

	.tbl-col-4 tr {
		grid-template-columns: 1fr;
	}
	
	.tbl-col-4 tr td.hide {
		display:none;
	}

	.view-empty {
		padding: 20px;
	}

	.list-container .list-container-item {
		display: grid;
		grid-template-columns: repeat(1,1fr);
		overflow-wrap: anywhere;
	}

	.lst-btn {
		display: block;
		margin-bottom: 10px;
	}
}