
#presentationSec {
	position: relative;
	padding-top: 100px;
	padding-bottom: 100px;
	overflow: hidden;
}
#presentationSec .bgBox {
	width: 50%;
    background: #f9fafe;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
}
#presentationSec span.verticalTitle {
    font-size: 15px;
    color: var(--text-color);
	font-weight: 500;
    line-height: 20px;
	letter-spacing: 2px;
	text-transform: uppercase;
	white-space: nowrap;
	position: absolute;
    top: 45%;
    left: calc(var(--container-padding) / 2);
	z-index: 2;
	writing-mode: vertical-rl;
    transform: translateX(-50%) translateY(-50%) rotate(-180deg);
}
#presentationSec .presentation {
    display: flex;
	flex-direction: row-reverse;
    float: left;
    width: calc(100% + var(--container-padding) - 20px);
	padding-bottom: 63px;
    position: relative;
    z-index: 2;
}
#presentationSec .presentation .slider {
    float: left;
    width: 70%;
}
#presentationSec .presentation .slider .presentation-slider .owl-stage-outer {
    width: calc(100% + var(--container-padding));
	padding: 15px 0 22px;
}
#presentationSec .presentation .slider .presentation-slider .item {
    position: relative;
	background-color: #000000;
    overflow: hidden;
}
#presentationSec .presentation .slider .presentation-slider .active .item {
    box-shadow: 0px 7px 15px rgb(0 0 0 / 15%);
}
#presentationSec .presentation .slider .presentation-slider .active ~ .active .item {
    box-shadow: none;
}
#presentationSec .presentation .slider .presentation-slider .item img {
	opacity: 0.9;
	transform: scale(1.0);
    transition: all .7s ease-in-out;
}
#presentationSec .presentation .slider .presentation-slider .item:hover img {
	opacity: 1;
	transform: scale(1.05);
}
#presentationSec .presentation .slider .presentation-slider .item .info {
	pointer-events: none;
	position: absolute;
    bottom: 30px;
	right: 30px;
    left: 30px;
}
#presentationSec .presentation .slider .presentation-slider .item .info span.name {
	display: block;
	margin: 0;
    font-size: 30px;
    color: #ffffff;
	font-weight: 400;
    line-height: 30px;
    text-transform: uppercase;
}
#presentationSec .presentation .content {
	display: flex;
    align-items: center;
    float: left;
    width: 30%;
    padding-right: 100px;
}
#presentationSec .presentation .content .presentation-info {
    position: inherit;
}
#presentationSec .presentation .content .presentation-info h2 {
    margin: 0;
    font-size: 40px;
    color: var(--primary-color);
	font-weight: 300;
    line-height: 70px;
	text-transform: uppercase;
}
#presentationSec .presentation .content .presentation-info p {
    margin: 20px 0 0 0;
    font-size: 18px;
    color: var(--text-color);
    font-weight: 400;
    line-height: 28px;
}
#presentationSec .presentation .content .presentation-info a.button {
	display: inline-block;
	margin-top: 20px;
    padding: 18px 43px;
    border: 2px solid var(--secondary-color);
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 500;
    line-height: 20px;
	letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all .3s ease-in-out;
}
#presentationSec .presentation .content .presentation-info a.button:hover {
	background-color: var(--secondary-color);
	color: #ffffff;
}
#presentationSec .presentation .content .presentation-info .owl-dots {
	position: absolute;
    bottom: 0;
    right: 0;
}




/* #Additional - Large Screens beyond 1600px
================================================== */
@media only screen and (min-width: 1367px) and (max-width: 1600px) {

/*----------------- Other Blocks -----------------*/
#presentationSec .presentation .slider		{ width: 65%; }
#presentationSec .presentation .content		{ width: 35%; }

}

/* #Additional - Large Screens beyond 1366px
================================================== */
@media only screen and (min-width: 1180px) and (max-width: 1366px) {

/*----------------- Other Blocks -----------------*/
#presentationSec .presentation				{ width: 100%; }
#presentationSec .presentation .slider		{ width: 65%; }
#presentationSec .presentation .content		{ width: 35%; padding-right: 70px; }


}



/* #iPad Pro - Large Screens beyond 1024px
================================================== */
@media only screen and (min-width: 959px) and (max-width: 1180px) {

#presentationSec span.verticalTitle			{ font-size: 13px; left: 4px; transform: translateX(0) translateY(-50%) rotate(-180deg); }
#presentationSec .presentation				{ width: 100%; }
#presentationSec .presentation .slider		{ width: 65%; }
#presentationSec .presentation .content		{ width: 35%; padding-right: 15px; }
#presentationSec .presentation .content .presentation-info h2 { font-size: 40px; line-height: 60px; hyphens: auto;}
#presentationSec .presentation .content .presentation-info p { font-size: 16px; line-height: 26px; }

}



/* #Tablet (Portrait)
================================================== */
/* Note: Design for a width of 768px */
@media only screen and (min-width: 768px) and (max-width: 959px) {


#presentationSec							{ padding-top: 70px; padding-bottom: 70px; }
#presentationSec span.verticalTitle			{ display: none; }
#presentationSec .presentation				{ width: 100%; padding-bottom: 60px; }
#presentationSec .presentation .slider		{ width: 50%; }
#presentationSec .presentation .slider .presentation-slider .owl-stage-outer { width: calc(100% + 15px); }
#presentationSec .presentation .slider .presentation-slider .item .info { bottom: 15px; right: 15px; left: 15px; }
#presentationSec .presentation .slider .presentation-slider .item .info span.name { font-size: 25px; line-height: 25px; }
#presentationSec .presentation .content		{ width: 50%; padding-right: 15px; }
#presentationSec .presentation .content .presentation-info h2 { font-size: 40px; line-height: 50px; }
#presentationSec .presentation .content .presentation-info p { font-size: 16px; line-height: 26px; }
#presentationSec .presentation .content .presentation-info a.button { padding: 10px 15px; }
#presentationSec .presentation .content .presentation-info .owl-dots { right: 0; left: auto; }
#presentationSec .presentation .content .presentation-info .owl-dots .owl-dot { width: 32px; height: 32px; margin: 0 5px; }
#presentationSec .presentation .content .presentation-info .owl-dots .owl-dot:first-child { margin-left: 0; }
#presentationSec .presentation .content .presentation-info .owl-dots .owl-dot:last-child { margin-right: 0; }
#presentationSec .presentation .content .presentation-info .owl-dots .owl-dot:before, #presentationSec .presentation .content .presentation-info .owl-dots .owl-dot:after { display: none; }
#presentationSec .presentation .content .presentation-info .owl-dots .owl-dot span { width: 8px; height: 8px; }

}



/*  #Mobile (Portrait)
================================================== */
/* Note: Design for a width of 320px */
@media only screen and (max-width: 767px) {

#presentationSec							{ padding-top: 50px; padding-bottom: 50px; }
#presentationSec span.verticalTitle			{ display: none; }
#presentationSec .presentation				{ width: 100%; flex-direction: column; padding-bottom: 62px; }
#presentationSec .presentation .slider		{ width: calc(100% + 30px); margin-left: -15px; }
#presentationSec .presentation .slider .presentation-slider .owl-stage-outer { width: 100%; padding: 0 0 22px; }
#presentationSec .presentation .slider .presentation-slider .item .info { bottom: 15px; right: 15px; left: 15px; }
#presentationSec .presentation .slider .presentation-slider .item .info span.name { font-size: 20px; line-height: 20px; }
#presentationSec .presentation .content		{ width: 100%; padding-right: 0; }
#presentationSec .presentation .content .presentation-info h2 { font-size: 30px; line-height: 40px; }
#presentationSec .presentation .content .presentation-info p { font-size: 16px; line-height: 26px; }
#presentationSec .presentation .content .presentation-info a.button { padding: 10px 15px; }
#presentationSec .presentation .content .presentation-info .owl-dots { right: 0; left: auto; }
#presentationSec .presentation .content .presentation-info .owl-dots .owl-dot { width: 32px; height: 32px; margin: 0 5px; }
#presentationSec .presentation .content .presentation-info .owl-dots .owl-dot:first-child { margin-left: 0; }
#presentationSec .presentation .content .presentation-info .owl-dots .owl-dot:last-child { margin-right: 0; }
#presentationSec .presentation .content .presentation-info .owl-dots .owl-dot:before, #presentationSec .presentation .content .presentation-info .owl-dots .owl-dot:after { display: none; }
#presentationSec .presentation .content .presentation-info .owl-dots .owl-dot span { width: 8px; height: 8px; }


}



/* #Mobile (Landscape)
================================================== */
/* Note: Design for a width of 480px */
@media only screen and (min-width: 480px) and (max-width: 767px) {

/*----------------- Other Blocks -----------------*/
#presentationSec .presentation				{ width: 100%; flex-direction: row-reverse; padding-bottom: 40px; }
#presentationSec .presentation .slider		{ width: 50%; }
#presentationSec .presentation .slider .presentation-slider .owl-stage-outer { width: calc(100% + 15px); }
#presentationSec .presentation .content		{ width: 50%; padding-right: 15px; }

}
