.expo-tabs-widget h2 {
    font-weight: 500;
    font-size: 36px;
    line-height: 44px;
    text-align: center;
    color: #101010;
    margin-bottom: 16px;
}

.expo-tabs-widget h4 {
	font-family: 'Montserrat';
  	font-style: normal;
  	font-weight: 400;
  	font-size: 16px;
  	line-height: 20px;
  	color: #101010;
    text-align: center;
    margin-bottom: 10px;
}

.expo-tabs {
    width: 100%;
}

.expo-tab-nav {
    display: flex;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #D1D1D1;
    justify-content: center;
}

.expo-tab-nav li {
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    padding: 9px 0;
    cursor: pointer;
    color: #736767;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.expo-tab-nav li::marker {
    content: none;
}

.expo-tab-nav li.active {
    color: #101010;
    border-bottom: 2px solid #4F6C84;
}

.expo-tab-contents {
    width: 100%;
    margin-top: 34px;
}

.expo-tab-content-inner {
    display: flex;
    gap: 24px;
    width: 100%;
}

.expo-tab-left {
    flex: 1 1 50%;
}

.expo-tab-right {
    flex: 1 1 50%;
	align-content: center;
}

.expo-tab-right img {
    width: 100%;
    height: auto;
    display: block;
}

.expo-tab-title {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 36px;
    color: #101010;
    margin-bottom: 10px;
}

.expo-tab-description {
	padding: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #101010;
    margin-bottom: 10px;
}

.expo-tab-subtitle {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    color: #101010;
    margin-bottom: 16px;
}

.expo-tab-info-block {
    margin-bottom: 16px;
}

.expo-tab-info-title {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    background: #4F6C84;
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 8px;
    display: inline-block;
}

.expo-tab-info-desc {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #101010;
    padding-bottom: 0;
}
@media (max-width: 500px) {
	.expo-tab-nav {
		flex-flow: column;
    }
	.expo-tab-nav {
		border: none;
  	}
    .expo-tab-content-inner {
  		display: block;
  	}
}