@import url("https://fonts.googleapis.com/css?family=Encode+Sans+Condensed:300,400,500,700,900&display=swap&subset=latin-ext");
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400&display=swap&subset=latin-ext");

body {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Encode Sans Condensed", sans-serif;
}

/* ! Header */

.content-wrapper {
	width: 80%;
	margin: auto;
}

.header {
	position: relative;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	height: 37.5rem;
}

.header .lang-version {
	text-decoration: none;
	position: absolute;
	right: 0.5rem;
	top: 0.5rem;
	font-weight: bold;
	letter-spacing: 1.4px;

}

.header-logo {
	background-color: #fff;
	background-position: center;
	background-size: 80%;
	background-repeat: no-repeat;
	width: 24rem;
	height: 15.5rem;
	position: absolute;
	top: 3rem;
	left: 12rem;
}

.timetable-box {
	position: absolute;
	bottom: -49px;
	left: 50%;
	transform: translate(-50%, 0);
	width: 75%;
	display: flex;
	justify-content: center;
	color: #fff;
	padding: 1.75rem 0;
	background: rgb(114, 51, 96);
	background: linear-gradient(90deg,
			rgba(114, 51, 96, 1) 12%,
			rgba(229, 137, 34, 1) 100%);
}

_:-ms-lang(x),
.timetable-box {
	transform: none;
	left: 0;
	width: 90%;
	margin-left: 4.5rem;
}

.timetable-box .date,
.timetable-box .time,
.timetable-box .place,
.timetable-box .registration {
	display: flex;
	align-items: center;
	font-size: 1.625rem;
	letter-spacing: -0.65px;
	margin: 0 1rem;
}

.timetable-box .registration  a{
	color:#fff;
}

.timetable-box .registration  a:hover{
	color:#723360;
}
.header-icon {
	width: 2.625rem;
	height: 2.625rem;
	margin-right: 1rem;
}

.calendar {
	background: center / contain no-repeat url("/html/img/lp/caal.svg");
}

.clock {
	background: center / contain no-repeat url("/html/img/lp/clock.svg");
}

.location {
	background: center / contain no-repeat url("/html/img/lp/location.svg");
}

.feather {
	background: center / contain no-repeat url("/html/img/lp/feather.svg");
}

@media only screen and (max-width: 1366px) {
	.content-wrapper {
		width: 90%;
	}

	.header {
		height: 28.5rem;
	}

	.header-logo {
		left: 6rem;
	}

	.timetable-box {
		width: 85%;
	}
}

@media only screen and (max-width: 500px) {
	.content-wrapper {
		width: 100%;
	}

	.header {
		height: 10rem;
		position: static;
	}

	.header-logo {
		background-size: 60%;
		width: 10rem;
		height: 5rem;
		position: absolute;
		top: 4rem;
		left: 0rem;
	}

	.timetable-box {
		width: 100%;
		top: 9rem;
		bottom: 58%;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.timetable-box .date,
	.timetable-box .time,
	.timetable-box .place,
	.timetable-box .registration{
		font-size: 0.8rem;
		letter-spacing: -0.65px;
		margin: 0 0.5rem;
		width: 40%;
	}
	
	.feather  {
		background-size:70%;
	}
	
	.location  {
		padding-left:0.75rem;
	}
}

/* ! lead section */

.description {
	display: flex;
	width: 75%;
	margin: auto;
	margin-top: 5rem;
	padding: 2rem 0;
	
}

.description .lead {
	font-weight: 300;
	font-size: 1.375rem;
	line-height: 2.25rem;
	width: 35%;
	padding: 1rem;
	overflow-wrap: break-word;
	border-right: 5px solid #f0f0f0;
	color: #e58922;
}

.description .text {
	font-family: "Roboto", sans-serif;
	line-height: 1.5rem;
	font-weight: 300;
	padding: 1rem 0 1rem 2.375rem;
	color: #666;
	width: 65%;
}

.description .text div {
	margin-bottom: 1rem;
}

button {
	font-family: "Roboto", sans-serif;
	background-color: #723360;
	color: #fff;
	font-weight: bold;
	font-size: 1em;
	border: none;
	border-radius: 5px;
	padding: 1rem 2.5rem;
	text-transform: uppercase;
	margin-top: 2rem;
	cursor: pointer;
}

.read-modal-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #fff;
	padding: 1rem 2rem 2rem 2rem;
	width: 40%;
	border-radius: 5px;
	display: flex;
	max-height: 70vh;
}

.close-read-btn {
	margin-bottom: 2rem;
}

@media only screen and (max-width: 500px) {
	.description {
		display: block;
		width: 90%;
		margin: 8rem auto 0;
		padding: 2rem 1rem;
	}

	.description .lead {
		font-weight: 300;
		font-size: 1.375rem;
		width: 100%;
		padding: 1rem 0;
		border: 0;
	}

	.description .text {
		padding: 1rem 0 0 0;
		width: 100%;
	}

	.description .text a {
		display: block;
		text-align: center;
	}

	button {
		display: block;
		margin: auto;
		font-size: 1em;
		padding: 0.75rem 2rem;
		margin-top: 2rem;
	}

	.read-more-modal {
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.5);
		opacity: 0;
		visibility: hidden;
		transform: scale(1.1);
		transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
	}

	.read-modal-content {
		width: 80%;
		max-height: 86vh;
	}
}

/* ! Sponsors logo */

.agenda, .sponsors {
	background-color: #fafafa;
}

.sponsors,
.speakers-wrapper {
	margin-top: 1rem;
	text-align: center;
}

.sponsors .sponsor-header {
	padding-top: 2rem;
	font-size: 1.25rem;
	color: #999;
	text-transform: uppercase;
}

.sponsors .logo-box {
	width: 70%;
	height: 100%;
	margin: auto;
	padding: 2rem 0 3rem 0;
}

.sponsors .logo-box div {
	margin: 2rem 0;
}

.sponsors .row {
	display: flex;
	align-items: center;
}

.sponsors .row a {
	text-decoration: none;
	display: flex;
	justify-content: center;
}

.sponsors .row-1 a {
	width: 33%;
}

.sponsors .row-2 a {
	width: 50%;
}

.sponsors .row-3 a {
	width: 100%;
}

.sponsors-img {
	justify-self: center;
	align-self: center;
}

.sponsors-img img {
	width: 90%;
	max-width: 400px;
	max-height: 120px;
}

.beta {
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	width: 20rem;
	height: 5rem;
	justify-self: center;
	align-self: center;
}

.pzu {
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	width: 20rem;
	height: 5rem;
	justify-self: center;
	align-self: center;
}

.mbank {
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	width: 20rem;
	height: 5rem;
	justify-self: center;
	align-self: center;
}

.gpw {
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	width: 12rem;
	height: 5rem;
	justify-self: end;
	align-self: center;
}

.logo-box .logo-text {
	font-size: 1.875rem;
	color: #999;
	justify-self: start;
	align-self: center;
	text-transform: uppercase;
}

@media only screen and (max-width: 500px) {
	.sponsors .logo-box {
		width: 100%;
		grid-template-columns: auto;
	}

	.gpw,
	.logo-box .logo-text {
		justify-self: center;
	}

	.sponsors .row-1,
	.sponsors .row-2 {
		flex-direction: column;
	}

	.sponsors .row a {
		width: 100%;
	}

}

/* ! Agenda list */

.agenda {
	width: 75%;
	margin: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.agenda .title {
	padding: 2rem;
	margin: 1rem 0 0 -7rem;
	font-size: 2.25rem;
	font-weight: bold;
	text-transform: uppercase;
	color: #723360;
}

.agenda ul {
	list-style: none;
	padding-left: 0;
	margin-left: 15.5rem;
	width: 80%;
}

.agenda ul li {
	display: flex;
	justify-content: center;
}

ul li .time {
	font-weight: lighter;
	color: #e58922;
	font-size: 1.25rem;
	padding: 0 1rem;
	width: 15%;
	padding-top: 1rem;
}

li .border {
	height: 100%;
	padding: 0 2rem 0 1rem;
}

li .bar {
	position: relative;
	width: 4px;
	height: 100%;
	background-color: #f0f0f0;
}

li .circle {
	position: absolute;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background-color: #f0f0f0;
	left: -6px;
	top: 22px;
}

li .event {
	display: flex;
	font-weight: lighter;
	font-size: 1.25rem;
	color: #666;
	width: 80%;
}

li .event-box {
	padding: 1rem;
	width: 90%;
}

li .event-box:hover {
	-webkit-box-shadow: 0px 0px 10px 3px rgba(7, 6, 6, 0.1);
	-moz-box-shadow: 0px 0px 10px 3px rgba(7, 6, 6, 0.1);
	box-shadow: 0px 0px 10px 3px rgba(7, 6, 6, 0.1);
	border-radius: 5px;
}

li .event .event-title {
	font-size: 1.25rem;
	color: #666;
	opacity: 0.5;
	text-transform: uppercase;
	padding-bottom: 1.5rem;
	font-weight: normal;
}

li .event .event-title-orange {
	color: #e68923;
	opacity: 1;
	font-weight: normal;
}

li .event .event-text {
	color: #666;
	font-size: 1rem;
	font-family: "Roboto", sans-serif;
	padding-bottom: 1rem;
}

.event-footer {
	display: flex;
	align-items: center;
}

.event-box .multi-footer {
	justify-content: space-between;
	margin-bottom: 1rem;
	align-items: flex-start;
}

.event-footer .event-footer-box {
	display: flex;
	width: 48%;
	padding: 0 1%;
	word-break: unset;
}

.event-footer .event-footer-box span {
	display: block;
}

.lector-img {
	border-radius: 50%;
	height: 3.75rem;
	width: 3.75rem;
	background-position: center top;
	background-size: cover;
	background-repeat: repeat;
}

.lector-data {
	padding: 0 1rem;
}

.lector-data .name {
	font-size: 1rem;
	font-weight: bold;
	color: #666;
	padding-bottom: 0.5rem;
}

.lector-data .company {
	font-size: 0.8rem;
	font-weight: lighter;
	color: #b2b2b2;
}

.lector-data .company span {
	font-weight: bold;
}

.download-pdf {
	margin: 0 0 6rem 5rem;
}

@media only screen and (max-width: 1366px) {
	.agenda {
		width: 85%;
	}

	.agenda .title {
		margin-left: 1rem;
	}
}

@media only screen and (max-width: 500px) {
	.agenda {
		width: 100%;
	}

	.agenda ul {
		margin-left: 0;
		width: 100%;
	}

	.agenda ul li {
		flex-direction: column;
		margin: 1rem 0;
	}

	ul li .time {
		width: 90%;
		padding: 1rem 0 0 1rem;
	}

	li .border {
		display: none;
	}

	li .event {
		width: 100%;
	}

	li .event-box {
		width: 94%;
		padding: 1rem 3%;
	}

	li .event-box:hover {
		box-shadow: none;
	}

	.event-footer {
		align-items: flex-start;
	}

	.event-box .multi-footer .lector-img {
		margin: auto;
	}

	.event-footer .event-footer-box {
		display: block;
	}

	.multi-footer .lector-data {
		padding: 0;
		text-align: center;
	}

	.download-pdf {
		margin: 0 auto 6rem;
	}
}

/* ! Speakers */

.speaker-box {
	display: flex;
	flex-wrap: wrap;
	width: 75%;
	margin: auto;
}

.speaker-box .speaker {
	width: 33%;
}

.speakers-title,
.gallery-title {
	padding: 2rem;
	margin-top: 1rem;
	font-size: 2.25rem;
	font-weight: bold;
	text-transform: uppercase;
	color: #723360;
}

.gallery-title {
	text-align: center;
	background-color: #FAFAFA;
	margin-top: 0;
	padding-bottom: 0;

}

.speaker {
	-webkit-box-shadow: 1px 0px 0px 0px rgba(153, 153, 153, 0.3);
	-moz-box-shadow: 1px 0px 0px 0px rgba(153, 153, 153, 0.3);
	box-shadow: 1px 0px 0px 0px rgba(153, 153, 153, 0.3);
	margin-bottom: 2rem;
}

.no-border {
	box-shadow: none;
}

.img-container {
	height: 15.5rem;
	width: 15.5rem;
	overflow: hidden;
	position: relative;
	display: inline-block;
	cursor: pointer;
	border-radius: 50%;
	max-width: 100%;
}

.img-container .speaker-img {
	border-radius: 50%;
	background-position: center top;
	background-size: cover;
	background-repeat: repeat;
	height: 100%;
	width: 100%;
	margin: auto;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media only screen and (min-width: 501px) {
	.img-container:hover .speaker-img {
		transform: scale(1.2);
	}
	
	.img-container .speaker-img:before {
		background-color: rgba(230, 137, 35, 0.65);
	}
}
.img-container:hover .speaker-img:before {
	display: block;
}

.img-container .speaker-img:before {
	content: "";
	display: none;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.speaker-img .speaker-bio {
	background: center / cover no-repeat url("/html/img/lp/bio.svg");
	height: 6rem;
	width: 4rem;
	display: none;
}

.img-container:hover .speaker-bio {
	display: block;
	position: relative;
}

.speaker .speaker-name {
	font-size: 1.375rem;
	color: #e68923;
	opacity: 1;
	font-weight: normal;
	text-transform: uppercase;
	padding-bottom: 1.5rem;
}

.speaker .speaker-company {
	font-size: 1rem;
	font-weight: lighter;
	color: #b2b2b2;
}

.speaker .speaker-company span {
	font-weight: bold;
	display: block;
}

@media only screen and (max-width: 500px) {
	.speaker-box {
		grid-template-columns: auto;
	}

	.speaker {
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
	}

	.img-container {
		height: 12.5rem;
		width: 12.5rem;
		margin-bottom: -3rem;
	}

	.img-container .speaker-img {
		height: 70%;
		width: 70%;
	}

	.speaker .speaker-name {
		padding-bottom: 0.5rem;
	}

	.speaker-box .speaker {
		width: 100%;
	}
}

/* ! speaker modal */

.modal {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 0;
	visibility: hidden;
	transform: scale(1.1);
	transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
	z-index: 10;
}

.modal-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: white;
	padding: 2rem;
	width: 40%;
	border-radius: 5px;
	display: flex;
	max-height: 70vh;
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {

	/* IE10+ CSS styles go here */
	.modal-content {
		max-height: 700px !important;
	}

	.modal-text {
		max-height: 500px !important;
	}

}

.modal-img {
	padding-right: 2rem;
}

.modal-img .img {
	background-position: center top;
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 50%;
	width: 12rem;
	height: 12rem;
}

.modal-textbox {
	width: 100%;
}

.modal-textbox .name {
	font-size: 1.375rem;
	color: #e68923;
	opacity: 1;
	font-weight: normal;
	text-transform: uppercase;
	padding-bottom: 0.5rem;
}

.modal-textbox .company {
	font-size: 1rem;
	color: #666;
}

.modal-textbox .company span {
	font-weight: bold;
}

.modal-textbox hr {
	width: 60%;
	height: 4px;
	background-color: #b2b2b2;
	border: none;
	margin: 1.25rem 0;
	opacity: 0.2;
	text-align: left;
}

.modal-text {
	color: #666;
	line-height: 1.5rem;
	overflow-y: auto;
	max-height: 80%;
}

.modal-header {
	display: flex;
	justify-content: space-between;
}

.close-button {
	background: center / cover no-repeat url("/html/img/lp/close.svg");
	cursor: pointer;
	height: 1.25rem;
	width: 1.25rem;
}

.show-modal {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
	transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

@media only screen and (max-width: 1366px) {
	.modal-content {
		width: 55%;
		max-height: 86vh;
	}
}

@media only screen and (max-width: 500px) {
	.modal-img {
		display: none;
	}

	.modal-content {
		width: 80%;
	}
}

/* ! footer gallery */

.gallery {
	background-color: #fafafa;
	padding-top: 5rem;
}

.gallery .row {
	display: flex;
}

.gallery .row div {
	width: 16.7%;
	height: 20rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.gallery .row .play-img {
	background: center / cover no-repeat url("/html/img/lp/play.svg");
	height: 6rem;
	width: 5rem;
	cursor: pointer;
}

@media only screen and (max-width: 1366px) {
	.gallery .play-img {
		height: 4.75rem;
		width: 30%;
	}
}

.gallery .gallery-img,
.gallery .video-gallery-wrapper {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	cursor: pointer;
}

@media only screen and (max-width: 500px) {
	.gallery {
		grid-template-columns: auto auto;
		padding-top: 2rem;
	}
}

/* ! photo modal */
.photo-modal .photo-div {
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	width: 100%;
	height: 35rem;
	position: relative;
}

.close-photo-button {
	background: center / cover no-repeat url("/html/img/lp/yt-close.svg");
	position: absolute;
	right: 0;

}

.photo-modal-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: transparent;
	padding: 1rem;
	width: 80%;
	max-height:90%;
	border-radius: 5px;
	display: block;
}

@media only screen and (max-width: 500px) {
	.photo-modal-content {
		width: 100%;
	}

	.close-photo-button {
		right: 0.5rem;
		top: 0.5rem;

	}
}


/* ! video modal */

.video-modal iframe {
	border: 0;
	width: 40rem;
	height: 20rem;
}

.video-modal-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: transparent;
	padding: 1rem;
	width: 70%;
	max-height:90%;
	border-radius: 5px;
	display: flex;
}

.close-video-button {
	background: center / cover no-repeat url("/html/img/lp/yt-close.svg");
	/* margin: 0 0.5rem 0.5rem; */
	position: absolute;
	right: 1rem;
	top: -0.5rem;
}

@media only screen and (max-width: 500px) {
	.video-modal .video-modal-content {
		width: 100% !important;
	}
}

/* ! Footer */

.footer {
	background-color: #723361;
	padding-top: 3rem;
	font-family: "Roboto", sans-serif;
}

.footer-content {
	width: 60%;
	margin: auto;
}

.footer-info {
	display: flex;
	justify-content: space-between;
}

.footer-logo {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	width: 17.5rem;
	height: 10rem;
}

.footer-counter .text,
.footer-location {
	color: #fff;
	font-weight: 300;
}

.footer-counter .time {
	display: flex;
	padding: 1.5rem 0;
}

.time p {
	margin: 0;
}

.footer-counter .time div {
	font-family: "Encode Sans Condensed", sans-serif;
	width: 7.5rem;
	height: 7rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	font-weight: 300;
	border-radius: 5px;
	margin-right: 0.375rem;
	font-size: 3.75rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.footer-counter .time span {
	display: block;
	font-size: 13px;
	opacity: 0.3;
	text-transform: uppercase;
}

.footer-location .address {
	line-height: 1.5rem;
	padding: 1.5rem 0;
}

.map {
	display: flex;
	align-items: center;
	margin-left: -0.25rem;
	text-decoration: none;
	cursor: pointer;
}

.map .img {
	background: center / contain no-repeat url("/html/img/lp/location.svg");
	width: 2rem;
	height: 2rem;
	margin-right: 0.5rem;
}

.map .text {
	font-size: 14px;
	color: #fff;
}

.footer a {
	text-decoration: none;
}

.footer hr {
	height: 2px;
	background-color: #fff;
	border: none;
	margin: 3rem 0;
	opacity: 0.2;
}

.footer .email {
	font-size: 1.875rem;
	color: #fff;
	font-weight: lighter;
	padding-bottom: 4rem;
	margin: auto;
	width: 60%;
}

.email a {
	text-decoration: underline;
	color: #fff;
}

.bottom-footer {
	background-color: #5a254c;
	padding: 2rem 0;
	color: #fff;
}

.bottom-footer .footer-content {
	display: flex;
	justify-content: space-between;
	font-weight: lighter;
	line-height: 1.5rem;
}

.edditions {
	text-align: right;
}

@media only screen and (max-width: 1366px) {
	.footer-content {
		width: 85%;
	}
}

@media only screen and (max-width: 500px) {
	.footer {
		padding-top: 2rem;
	}

	.footer-content {
		width: 100%;
	}

	.footer-info {
		display: block;
		padding: 0 1rem;
	}

	.footer-counter .text,
	.footer-location {
		padding-top: 2.5rem;
	}

	.footer .email {
		font-size: 1.375rem;
		padding-bottom: 2rem;
		width: 100%;
		text-align: center;
	}

	.bottom-footer {
		padding: 1rem 0.5rem;
	}

	.bottom-footer .footer-content {
		display: block;
		font-size: 0.875rem;
	}

	.edditions {
		text-align: left;
	}
}

/* ! map modal */
.map-modal .map-div {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	width: 100%;
	height: 40rem;
	position: relative;
}

.close-map-btn {
	background: center / cover no-repeat url("/html/img/lp/close.svg");
	position: absolute;
	right: 0;

}

.map-modal-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #fff;
	padding: 1rem;
	width: 40%;
	border-radius: 5px;
	display: block;
}

@media only screen and (max-width: 500px) {
	.map-modal-content {
		width: 90%;
		height: 94%;
	}
}


/* ! Gallery swiper */
.mobile {
	display: none;
}
@media only screen and (max-width: 1240px) {
	.desktop {
		display: none;
	}
}
@media only screen and (max-width: 1239px) {
	.mobile {
		display: block;
	}
}



@media only screen and (max-width: 1239px) {

	.mobile .gallery .row div {
		width: 50%;
		height: 15rem;
	}

	.mobile .gallery .row .play-img {
		height: 4rem;
		width: 4rem;
	}
}


.swiper-container {
	width: 100%;
	height: 100%;
	margin-left: auto;
	margin-right: auto;
}

.swiper-slide {
	width: 100vw;
	text-align: center;
	font-size: 18px;
	background: #fff;
	height: calc((100% - 30px) / 2);
	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.swiper-pagination-bullet {
	width: 14px !important;
	height: 14px !important;
	background-color: #fff !important;
}

.swiper-button-prev,
.swiper-button-next {
	color: #fff !important;
	background: rgba(184, 184, 185, 0.3);
	padding: 1rem;
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {

	.swiper-button-next {
		background-image: url('/html/img/lp/button-right.svg');
		background-position: center;
		background-size: contain;
		background-repeat: no-repeat;
	}

	.swiper-button-prev {
		background-image: url('/html/img/lp/button-left.svg');
		background-position: center;
		background-size: contain;
		background-repeat: no-repeat;
	}
}

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	background: rgba(184, 184, 185, 0.3);
	bottom: 0 !important;
}
@media only screen and (min-width: 501px) and (max-width: 1239px) {
    .content-wrapper {
        width: 100%
    }

    .lang-version{
        left: 0.5rem;
    }

    .header-logo {
        left: 0;
    }

    .timetable-box {
        width: 100%
    }

    .description {
        width: 95%
    }

    .read-modal-content {
        width: 60%
    }
    .sponsors .logo-box {
        width: 100%
    }

    .agenda {
        width: 96%;
        padding: 0 2%;
    }

    .agenda ul {
        margin-left: 0;
        width: 100%
    }

    .speaker-box {
        width: 100%;
    }

    .speaker .img-container {
        width: 11.5rem;
        height: 11.5rem;
    }

    .lector-modal .modal-content {
        width: 80%;
    }

    .footer-content {
        width: 96%
    }

    .footer-logo {
        width: 12.5rem
    }

    .footer-counter {
        margin: 0 0.5rem;
    }

    .footer-counter .time div {
        width: 6.5rem;
        height: 6.5rem;
        font-size: 2.75rem;
    }

    .footer-location {
        padding-left: 1rem
    }

    .footer .email {
        text-align: center;
    }

    .map-modal .map-modal-content {
        width: 90%
    }
	.photo-modal .photo-div {
		height: 24rem;
	}
} 