.program .flex-container {
	gap: 0;
	justify-content: space-between;
	align-items: top;
	margin-bottom: 100px;
	flex-wrap: wrap;
}

.program .flex-container>.full:first-of-type {
	width: 100%;
	display: flex;
	align-content: center;
	justify-content: center;
	align-items: center;
}

.program .flex-container .full .btn {
	display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    width: auto;
    background: #DEFC52;
    text-transform: uppercase;
    padding: 16px 20px;
    transition: 300ms;
	max-width: 300px;
}

.program .flex-container .full .btn:hover {
	background: #000;
}

.program .flex-container .full .btn span {
	color: #000;
    font-family: "Space Grotesk";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 111%;
    text-transform: uppercase;
    transition: 300ms;
}

.program .flex-container .full a.btn:hover span {
	color: #DEFC52;
}

.program .flex-container .full .btn div {
	position: relative;
    overflow: hidden;
    width: 20px;
    height: 20px;
}

.program .flex-container .full .btn div svg path {
	transition: 300ms;
}

.program .flex-container .full .btn:hover div svg path {
	  fill: #DEFC52;
}

.program .flex-container .full .btn div svg:nth-child(1) {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 300ms;
}

.program .flex-container .full .btn div svg:nth-child(2) {
	position: absolute;
    top: 100%;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: 300ms;
}

.program .flex-container .full .btn:hover div svg:nth-child(1) {
	top: -100%;
	left: 100%;
}

.program .flex-container .full .btn:hover div svg:nth-child(2) {
	top: 0;
    left: 0;
}

.program .flex-container .full h2 {
	color: #000;
	font-family: "Space Grotesk";
	font-size: 80px;
	font-style: normal;
	font-weight: 600;
	line-height: 97%; /* 77.6px */
	margin: 0 auto 75px 0;
}

.module-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.module-content .module {
	margin-left: 0;
}

.module-content .widok {
	display: flex;
	gap: 30px;
	row-gap: 12px;
	flex-wrap: wrap;
    align-items: center;
    justify-content: end;
}

.module-content .widok span {
	display: block;
	width: 100%;
	color: #000;
	text-align: right;
	font-family: "Space Grotesk";
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 16px; /* 106.667% */
	text-transform: uppercase;
}

.module-content .widok a svg {
	height: 25px;
	width: auto;
}

.module-content .widok a svg rect {
	fill: #757575;
	transition: 300ms;
}

.module-content .widok a.active svg rect, 
.module-content .widok a:hover svg rect {
	fill: #000;
}

.days {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.days .btns {
	display: flex;
	gap: 20px;
	align-items: center;
	justify-content: flex-start;
}

.days .btns a {	
	border-radius: 2px;
	border: 1px solid #000;
	padding: 16px 22px;
	transition: 300ms;
	color: #000;
	font-family: "Space Grotesk";
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 111%; /* 16.65px */
	text-transform: uppercase;
}

.days .btns a:hover,
.days .btns a.active {
	border-radius: 2px;
	border: 1px solid #000;
	background: #000;
	color: #DEFC52;
	font-family: "Space Grotesk";
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 111%; /* 16.65px */
	text-transform: uppercase;
}

.days .filters {
	display: flex;
	gap: 50px;
	align-items: center;
	justify-content: flex-start;
	transition: 300ms;
}

.days .filters .filter {
	position: relative;
	cursor: pointer;
}

.days .filters .filter .head {
	display: flex;
	gap: 25px;
	align-items: center;
	justify-content: flex-start;
}

.days .filters .filter .head span {
	color: #000;
	font-family: "Space Grotesk";
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 111%; /* 16.65px */
	text-transform: uppercase;
	transition: 300ms;
}

.days .filters .filter .head svg {
	transition: 300ms;
	width: 19px;
	height: 13px;
}

@media only screen and (min-width: 997px) {
	.days .filters .filter:hover {
		background: #fff;
	}

	.days .filters .filter:hover .head svg {
		transform: rotate(180deg);
	}
}

.days .filters .filter .content {
	position: absolute;
	display: none;	
	z-index: 999;
}

.days .filters .filter .content span {
	display: block;
	color: #000;
	padding: 7px 10px;
	font-family: "Space Grotesk";
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 111%; /* 16.65px */
	text-transform: uppercase;
	border-bottom: 1px solid #000;
	transition: 300ms;
}

.days .filters .filter .content span.active,
.days .filters .filter .content span:hover {
	background: #000;
	color: #fff;
}

@media only screen and (max-width: 1350px) {
	.days .filters {
		margin-top: 50px;
	}
}

@media only screen and (min-width: 1066px) {
	.days .filters .filter:hover .content { 
		display: block;
		top: 100%;
		left:0;
		width: 100%;
		height: auto;
		background: #fff;
	}
}

.day .item .list {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 34px 20px 40px 20px;
	border-bottom: 1px solid #000;
}

.day .item .list .title {
	transition: 300ms;
	color: #000;
	leading-trim: both;
	text-edge: cap;
	font-family: "Space Grotesk";
	font-size: 25px;
	font-style: normal;
	font-weight: 500;
	line-height: 97%; /* 24.25px */
	text-transform: uppercase;
	width: 55%;
}

.day .item .list .title sup {
	position: relative;
	left: 5px;
	top: -5px;
	transition: 300ms;
	color: #6FCFA3;
	font-family: "Space Grotesk";
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 111%; /* 16.65px */
	text-transform: uppercase;
}

@media only screen and (max-width: 996px) {
	.day .item .list .title sup {
		white-space: nowrap;
	    overflow: hidden;
	    text-overflow: ellipsis;
	    width: 100px;
	    display: inline-block;
	}
}

.day .item .list .img {
	position: relative;
	display: block;
	width: 20%;
	height: 100%;
}

.day .item .list .img img {
	position: absolute;
	width: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opaciy: 0;
	height: 0;
	transition: 300ms;
}

.day .item .list .street {
	transition: 300ms;
	color: #000;
	font-family: "Space Grotesk";
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 111%; /* 16.65px */
	width: 15%;
}

.day .item .list svg {
	width: 60px;
	height: 60px;
}

.day .item .list svg path {
	transition: 300ms;
}

@media only screen and (min-width: 997px) {
	.day .item .list:hover {
		background: #000;
	}

	.day .item .list:hover svg path {
		fill: #DEFC52;
	}

	.day .item .list:hover .title {
		color: #fff;
	}

	.day .item .list:hover .street {
		color: #fff;
	}

	.day .item .list:hover .title sup {
		opacity: 0;
	}

	.day .item .list:hover .img img { 
		height: 500px;
		object-fit: cover;
	}

	.day .item .block .flex>div {
		position: relative;
		width: calc(100% - 300px);
	}
}

.day.blocks {
	display: flex; 
	flex-wrap: wrap;
	gap: 24px;
}

.day.blocks .item {
	width: calc(50% - 12px);
}

.day .item .block {
	position: relative;
	display: block;
	padding: 30px;
}

.day .item .block svg.bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.day .item .block svg.bg path {
	transition: 300ms;
}

.day .item .block .flex {
	display: flex;
	gap: 30px;
}

.day .item .block .flex img {
	position: relative;
	border-radius: 3px;
	background: #000;
	width: calc(50% - 30px);
	height: 325px;
	object-fit: cover;
	z-index: 9;
}

.day .item .block .flex>div .category {
	display: block;
	color: #6FCFA3;
	font-family: "Space Grotesk";
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 111%; /* 16.65px */
	text-transform: uppercase;
	margin: 0 auto 0 auto;
}

.day .item .block .flex>div .title {
	display: block;
	color: #000;
	leading-trim: both;
	text-edge: cap;
	font-family: "Space Grotesk";
	font-size: 25px;
	font-style: normal;
	font-weight: 500;
	line-height: 97%; /* 24.25px */
	text-transform: uppercase;
	margin: 34px auto 24px auto;
}

.day .item .block .flex>div .street {
	display: block;
	 color: #000;
	 margin: 0 auto;
	font-family: "Space Grotesk";
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 111%; /* 16.65px */
}

.day .item .block .flex>div svg.cross {
	display: block;
	width: 59px;
	height: 59px;
	margin-left: auto;
	margin-right: 0;
    position: relative;
    top: -20px;
    right: 0;
}

.day .item .block .flex>div svg.cross path {
	 transition: 300ms;
}

@media only screen and (min-width: 997px) {
	.day .item .block:hover svg.bg path {
		fill: #000;
	}

	.day .item .block:hover .flex>div svg.cross path {
		fill: #D3FF82;
	}

	.day .item .block:hover .flex>div .title,
	.day .item .block:hover .flex>div .street {
		color: #fff;
	}
}

.popup {
	position: fixed;
	top: 0;
	right: -100%;
	width: 100%;
	height: 100%;
	z-index: 999999999;
	background: #000;
	;padding: 50px 40px;
	transition: 500ms;
}

.popup.open {
	right: 0;
}

.popup .head {
	padding: 0 0 54px 0;
	border-bottom: 1px solid #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.popup .head .title {
	margin: 0;
	color: #FFF;
	font-family: "Space Grotesk";
	font-size: 60px;
	font-style: normal;
	font-weight: 600;
	line-height: 97%; /* 58.2px */
}

.popup .head a.close {
	
}

.popup .head a.close div {
	position: relative;
	width: 67px;
	height: 67px;
	overflow: hidden;
	transform: rotate(180deg);
}

.popup .head a.close div svg:first-of-type {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: 300ms;
}

.popup .head a.close div svg:last-of-type {
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	transition: 300ms;
}

.popup .head a.close div svg path {
	transition: 300ms;
}

@media only screen and (min-width: 997px) {
	.popup .head a.close:hover div svg path {
		fill: #DEFC52;
	}

	.popup .head a.close:hover div svg:first-of-type {
		left: 100%;
	}

	.popup .head a.close:hover div svg:last-of-type {
		left: 0;
	}
}

.popup .content {
	position: relative;
	overflow-y: auto;
    height: calc(100vh - 210px);
}

.popup .content .flex-container {
	border-bottom: 1px solid #fff;
}

.popup .content .flex-container .half {
	
}

.popup .content .flex-container .half:first-of-type {
	padding-right: 100px;
}

.popup .content .flex-container .half p.desc {
	color: #FFF;
	margin: 0 auto;
	leading-trim: both;
	margin: 0 auto 40px auto;
	text-edge: cap;
	font-family: "Space Grotesk";
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 133%; 
}

.popup .content .flex-container .half p.cat,
.popup .content .flex-container .half p.loc {
	margin: 40px auto 0 auto;
}

.popup .content .flex-container .half p.cat span:first-of-type,
.popup .content .flex-container .half p.loc span:first-of-type {
	color: #DEFC52;
	leading-trim: both;
	text-edge: cap;
	font-family: "Space Grotesk";
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 133%; /* 26.6px */
	text-transform: uppercase;
}

.popup .content .flex-container .half p.cat span:last-of-type,
.popup .content .flex-container .half p.loc span:last-of-type {
	color: #FFF;
	leading-trim: both;
	text-edge: cap;
	font-family: "Space Grotesk";
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 133%;
}

.popup .content .flex-container .half p.green {
	color: #DEFC52;
	display: block;
	margin: 28px auto 208px auto;
	leading-trim: both;

	text-edge: cap;
	font-family: "Space Grotesk";
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 133%; /* 19.95px */
	text-transform: uppercase;
}

.popup .content .flex-container .half:last-of-type {
	padding: 40px;
	border-left: 1px solid #fff;
}

.popup .content .flex-container .half:last-of-type img {
	width: auto;
	height: 100%;
	max-width: 100%;
    max-height: 100%;
	object-fit: cover;
}

.popup .content .flex-container .half:last-of-type video {
	width: auto;
	height: 100%;
	max-width: 100%;
    max-height: 100%;
}

.popup .content .flex-container .half:last-of-type iframe {
	width: 100%;
	height: 100%;
	max-width: 100%;
    max-height: 100%;
}

.popup .content .flex-container + .flex-container,
.popup .content .flex-container + .flex-container .half {
	border: none;
}

.popup .content .flex-container + .flex-container {
	padding: 50px 0 100px 0;
}

.popup .content .flex-container + .flex-container .half p.title {
	color: #FFF;
	margin: 0 auto;
	font-family: "Space Grotesk";
	font-size: 60px;
	font-style: normal;
	font-weight: 600;
	line-height: 97%; /* 58.2px */
}

.popup .content .flex-container + .flex-container .half p:not(.title) {
	color: #FFF;
	leading-trim: both;
	text-edge: cap;
	font-family: "Space Grotesk";
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 133%; /* 19.95px */
	margin: 0 auto;
}

.popup .content .flex-container + .flex-container .half p:not(.title) span {
	display: block;
	margin: 0 auto 25px auto;
	color: #DEFC52;
	leading-trim: both;
	text-edge: cap;
	font-family: "Space Grotesk";
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 133%; /* 26.6px */
	text-transform: uppercase;
}

.popup .content .flex-container + .flex-container .half p:not(.title) + p:not(.title) {
	margin-top: 38px;
}

.popup .mobile {
	display: none;
}

.popup .pc {
	display: block;
}

.filters_content.mobile {
	display: none;
}

.filters_mobile {
	display: none;
}

@media only screen and (max-width: 996px) {
	.program .flex-container {
		flex-wrap: wrap;
		gap: 68px;
	}

	.program .flex-container .full {
		width: 100% !important;
	}

	.program .flex-container .full h2 {
		color: #000;
		color: #000;
		font-family: "Space Grotesk";
		font-size: 40px;
		font-style: normal;
		font-weight: 600;
		line-height: 97%; /* 38.8px */
		margin-bottom:0;
	}

	.program .flex-container {
		margin-bottom: 40px;
	}

	.module {
		margin-bottom: 20px;
	}

	.module-content .widok,
	.days .filters {
		display: none;
	}

	.program .flex-container {
		gap: 40px;
	}

	.days .btns {
		width: 100%;
	}

	.days .btns a {
		width: 33.3%;
		padding-left: 0;
		padding-right: 0;
		text-align: center;
	}

	.day .item .list .street,
	.day .item .list .img {
		display: none !important;
	}

	.day .item .list .title {
		color: #000;
		leading-trim: both;
		text-edge: cap;
		font-family: "Space Grotesk";
		font-size: 15px;
		font-style: normal;
		font-weight: 500;
		line-height: 97%; /* 14.55px */
		text-transform: uppercase;
	}

	.day .item .list .street .title sup {
		color: #6FCFA3;
		font-family: "Space Grotesk";
		font-size: 10px;
		font-style: normal;
		font-weight: 400;
		line-height: 111%; /* 11.1px */
		text-transform: uppercase;           
	}

	.day .item .list {
		padding: 24px 0;
	}

	.day .item .list svg {
		width: 35px;
		height: 35px;
	}

	.filters_content.mobile {
		margin: 40px auto 40px auto;
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
	}

	.filters_content .widok span {
		display: block;
		color: #000;
		text-align: right;
		font-family: "Space Grotesk";
		font-size: 15px;
		font-style: normal;
		font-weight: 400;
		line-height: 16px; /* 106.667% */
		text-transform: uppercase;
		margin: 0 auto 10px auto;
	}

	.filters_content .widok a + a {
		margin-left: 20px;
	}

	.filters_content .widok a svg {
		width: auto;
		height: 25px;
	}

	.filters_content .filters_button {
		padding: 12px 22px;
		border-radius: 2px;
		border: 1px solid #000;
		color: #000;
		width: 165px;
		text-align: center;
		font-family: "Space Grotesk";
		font-size: 15px;
		font-style: normal;
		font-weight: 400;
		line-height: 111%; /* 16.65px */
		text-transform: uppercase;
	}

	.filters_mobile {
		display: block;
		position: fixed;
		overflow-y: auto;
		top: 0;
		right: -100%;
		width: 100%;
		height: 100dvh;
		padding: 25px 17px;
		z-index: 999999;
		transition: 300ms;
        background: #000;
	}

	.filters_mobile.open {
		right: 0;
	}

	.filters_mobile a.close {
		display: block;
		text-align: right;
	}

	.filters_mobile a.close svg {
		width: 33px;
		height: auto;
	}

	.filters_mobile h2 {
		color: #FFF;
		font-family: "Space Grotesk";
		font-size: 40px;
		font-style: normal;
		font-weight: 600;
		line-height: 97%; /* 38.8px */
		margin: 0 auto 0 auto;
		padding-bottom: 15px;
	}

	.filters_mobile .filter {

	}

	.filters_mobile .filter>span {
		display: block;
		color: #FFF;
		padding: 20px 0;
		margin: 0;
		border-bottom: 1px solid #fff;
		font-family: "Space Grotesk";
		font-size: 20px;
		font-style: normal;
		font-weight: 600;
		line-height: 97%; /* 19.4px */
		text-transform: uppercase;
	}

	.filters_mobile .filter>.content {
		margin-top: 20px;
	}

	.filters_mobile .filter>.content span {
		position: relative;
		display: block;
		color: #FFF;
		font-family: "Space Grotesk";
		font-size: 20px;
		font-style: normal;
		font-weight: 400;
		line-height: 97%; /* 19.4px */
		text-transform: uppercase;
		margin-bottom: 20px;
		padding-left: 40px;
	}

	.filters_mobile .filter>.content span:before {
		content: " ";
		position: absolute;
		display: block;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
		border-radius: 2px;
		border: 1px solid #FFF;
		width: 24px;
		height: 24px;
	}

	.filters_mobile .filter>.content span:after {
		content: " ";
		position: absolute;
		display: block;
		left: 3px;
		top: 50%;
		transform: translateY(-50%);
		background: #C4EE7A;
		width: 18px;
		height: 18px;
		opacity: 0;
	}

	.filters_mobile .filter>.content span.active:after {
		opacity: 1;
	}

	.day.blocks .item {
		width: 100%;
	}

	.filters_content .widok a svg rect {
		fill: #757575;
		transition: 300ms;
	}	

	.filters_content .widok a.active svg rect {
		fill: #000;
	}	

	.day .item .block {
		padding: 24px;
	}

	.day .item .block .flex>div .category {
		color: #6FCFA3;
		margin: 0;
		font-family: "Space Grotesk";
		font-size: 15px;
		font-style: normal;
		font-weight: 400;
		line-height: 111%; /* 16.65px */
		text-transform: uppercase;
	}

	.day .item .block .flex>div .title {
		color: #000;
		margin: 14px auto 18px auto;
		leading-trim: both;

		text-edge: cap;
		font-family: "Space Grotesk";
		font-size: 15px;
		font-style: normal;
		font-weight: 500;
		line-height: 97%; /* 14.55px */
		text-transform: uppercase;
	}

	.day .item .block .flex>div .street {
		color: #000;
		font-family: "Space Grotesk";
		font-size: 15px;
		font-style: normal;
		font-weight: 400;
		line-height: 111%; /* 16.65px */
		margin: 0;
		width: 80%;
	}

	.day .item .block .flex>div svg.cross {
        position: absolute;
        width: 35px;
        height: 35px;
        right: 0;
        top: 255px;
	}

	.day .item .block .flex {
		position: relative;
		flex-wrap: wrap;
	}

	.day .item .block .flex img {
		width: 100%;
		height: 241px;
		object-fit: cover;
	}

	.popup .mobile {
		display: block;
	}

	.popup .pc {
		display: none;
	}

	.popup {
		padding: 22px;
	}

	.popup .mobile {
		position: relative;
		overflow-y: auto;
		height: 100%;
	}

	.popup .mobile a.close {
		display: block;
	    margin: 0 0 0 auto;
	    text-align: left;
        margin-bottom: 50px;
	}

	.popup .mobile a.close svg {
		width: 60px;
        height: 60px;
		transform: rotate(180deg);
	}

	.popup .mobile h2 {
		color: #FFF;
		margin-top: 0;
		font-family: "Space Grotesk";
		font-size: 40px;
		font-style: normal;
		font-weight: 600;
		line-height: 97%; 
		margin-bottom: 25px;

		padding-bottom: 25px;
		border-bottom: 1px solid #fff;
	}

	.popup .mobile p.cat,
	.popup .mobile p.loc {
		margin: 0 auto 29px auto;
	}

	.popup .mobile p.cat span:first-of-type,
	.popup .mobile p.loc span:first-of-type {
		color: #DEFC52;
		leading-trim: both;
		text-edge: cap;
		font-family: "Space Grotesk";
		font-size: 15px;
		font-style: normal;
		font-weight: 400;
		line-height: 133%; 
	}

	.popup .mobile p.cat span:last-of-type,
	.popup .mobile p.loc span:last-of-type {
		color: #FFF;
		leading-trim: both;
		text-edge: cap;
		font-family: "Space Grotesk";
		font-size: 15px;
		font-style: normal;
		font-weight: 400;
		line-height: 133%;
	}

	.popup .mobile p.green {
		color: #DEFC52;
		leading-trim: both;
		text-edge: cap;
		font-family: "Space Grotesk";
		font-size: 15px;
		font-style: normal;
		font-weight: 400;
		line-height: 133%; /* 19.95px */
		text-transform: uppercase;
		margin: 0 auto 50px auto;
	}

	.popup .mobile p.desc {
		color: #FFF;
		margin: 0 auto;
		leading-trim: both;

		text-edge: cap;
		font-family: "Space Grotesk";
		font-size: 15px;
		font-style: normal;
		font-weight: 400;
		line-height: 133%;
	}

	.popup .mobile img,
	.popup .mobile video,
	.popup .mobile iframe {
		width: 100%;
		height: auto;
		margin-top: 25px;
		padding-top: 25px;
		margin-bottom: 25px;
		padding-bottom: 25px;
		border-top: 1px solid #fff;
		border-bottom: 1px solid #fff;
	}
	
	.popup .mobile iframe {
		height: 50vh;
	}

	.popup .mobile p.title {
		color: #FFF;
		font-family: "Space Grotesk";
		font-size: 40px;
		font-style: normal;
		font-weight: 600;
		line-height: 97%; /* 38.8px */
		margin: 0 auto 45px auto;
	}

	.popup .mobile div.artist p {
		color: #FFF;
		margin: 0 auto;
		leading-trim: both;

		text-edge: cap;
		font-family: "Space Grotesk";
		font-size: 15px;
		font-style: normal;
		font-weight: 400;
		line-height: 133%; 
	}

	.popup .mobile div.artist p + p {
		margin-top: 30px;
	}

	.popup .mobile div.artist p span {
		display: block;
		margin: 0 auto 20px auto;
		color: #DEFC52;
		leading-trim: both;
		text-edge: cap;
		font-family: "Space Grotesk";
		font-size: 15px;
		font-style: normal;
		font-weight: 400;
		line-height: 133%; /* 19.95px */
		text-transform: uppercase;
	}
	
	.program .flex-container>.full:first-of-type {
		flex-wrap: wrap;
	}
	
	.program .flex-container>.full:first-of-type .btn {
		max-width: 100%;
		margin-top: 25px;
	}
}