
:root {
  --light: #F6F8F8;
  --blue: #182741;
  --dark: #1A191F;
}

html, body {
    color: var(--dark);
    background: var(--light) !important;
}
.gradient_text {
    background-image: linear-gradient(167deg, var(--blue) 20%, var(--dark) 50%) !important;
    color: transparent;
    background-clip: text;
}
.slider-main {
	display: block;
	position: relative;
	height: calc(100vh - 308px);
	width: 100vw;
	background: var(--light);
	margin-top: 63px;
	padding: 42px 63px 0 63px;
	overflow: auto;
}
.slider-main .slide {
    padding: 0 !important;
    display: flex;
    position: relative;
    flex-direction: row;
    justify-content: space-between;
    gap: 42px;
    align-items: start;
}
.slider-main .details {
	display: flex;
	flex-direction: column;
	justify-content: start;
	flex-basis: calc(40% - 42px);
	color: var(--dark);
	padding: 42px;
	background: #fff;
	border-radius: 10px;
}
.slider-main .details h3 {
	font-size: 28px;
	margin-bottom: 28px;
	padding: 0 14px 0 14px;
}
.slider-main .detail {
    display: flex;
    flex-direction: row;
    gap: 14px;
    background: #fff;
    padding: 14px;
    border-bottom: 1px solid var(--light);
}
.slider-main .detail:last-child {
    border: none;
}
.slider-main .detail span {
    display: flex;
    flex-basis: calc(100% - 164px);
    justify-content: start;
    word-break: break-word;
}
.slider-main .detail .label {
    font-weight: bold;
	flex-basis: 150px;
}
.slider-nav {
	display: block;
	position: absolute;
	height: auto;
	left: 0;
	bottom: 0;
	width: 100vw;
	height: 245px;
	background: var(--light);
	overflow: hidden;
}
.slider-nav .slick-track {
    padding: 32px 0;
    background: none;
}
.slider-nav .slide {
	cursor: pointer;
	background: none;
	width: 320px !important;
	height: 181px !important;
	padding-top: 14px;
}
.slider-nav .slide .sliderwrapper {
	position: relative;
	background: none;
	border-left: 21px solid transparent;
	border-right: 21px solid transparent;
}
.slider-nav .slide .sliderwrapper .content {
	position: absolute;
  	top: 0; 
	bottom: 0; 
	left: 0; 
	right: 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 21px;
	color: var(--light);
	aspect-ratio: 16 / 9;
    border-radius: 10px;
}
.slider-nav .slide .sliderwrapper .content:before {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
    background: var(--dark);
	opacity: 0.5;
	border-radius: 10px;
	z-index: 2;
	transition: all 0.5s ease;
}
.slider-nav .slide.slick-current .sliderwrapper .content:before {
    content: "";
    opacity: 0;
}
.slider-nav .slide.slick-current .sliderwrapper .content:after {
    content: "";
    display: block;
    position: absolute;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    top: -10px;
    left: -10px;
    border-radius: 16px;
    background: #fff;
    z-index: -1;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
}
.slider-nav .slide .sliderwrapper .title {
    display: block;
    position: relative;
    z-index: 3;
    padding: 14px 21px;
    color: var(--light);
}
.video {
	display: flex;
  	position: relative;
  	justify-content: end;
  	flex-basis: 60%;
	max-height: calc(100vh - 350px);
	max-width: 60%;
	aspect-ratio: 16 / 9;
}
.video_container {
  	display: flex;
  	position: relative;
  	max-height: 100%;
    max-width: 100%;
    min-height: 270px;
    min-width: 100%;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 9;
	object-fit: contain;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
}
.video_container:before {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
    background: var(--dark);
	opacity: 0.25;
	z-index: 2;
}
.video button {
    display: block;
    position: relative;
    border: 1px solid var(--light);
    border-radius: 10px;
    padding: 10px 42px;
    color: var(--light);
    background: transparent;
    z-index: 3;
}
.video button:hover, .video button:active {
    color: var(--dark);
    background: var(--light);
}
lite-youtube {
    background: none !important;
}
.video iframe {
  	position: absolute;
  	top: 0;
  	left: 0;
  	width: 100%;
  	height: 100%;
  	border: none;
  	z-index: 4;
}
.slick-arrow {
    position: fixed;
  	display: flex;
    align-items: center;
    justify-content: center;
  	width: 63px;
  	height: calc(100vh - 308px);
  	top: 63px;
	font-size: 0;
	background: none !important;
}
.slick-prev {
    left: 0;
}
.slick-prev:before {
    content: "\f053";
    font-family: Font Awesome\ 6 Solid;
    color: var(--dark);
    font-size: 18px;
    position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.slick-next {
    right: 0;
}
.slick-next:before {
    content: "\f054";
    font-family: Font Awesome\ 6 Solid;
    color: var(--dark);
    font-size: 18px;
    position: absolute;
	top: 50%;
	right: 50%;
	transform: translate(50%, -50%);
}

/* Overview */

#overview {
    display: flex;
    flex-wrap: wrap;
    gap: 42px;
    padding: 42px 63px;
    margin-top: 63px;
}

#overview .thumb {
    display: block;
    position: relative;
	cursor: pointer;
	background: none;
	width: 320px !important;
	height: 181px !important;
	transition: all 0.5s ease;
	border-radius: 10px;
	overflow: hidden;
}
#overview .thumb .content {
	position: absolute;
  	top: 0; 
	bottom: 0; 
	left: 0; 
	right: 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 21px;
	color: var(--light);
	aspect-ratio: 16 / 9;
    transition: all 0.5s ease;
}
#overview .thumb .content:before {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
    background: var(--dark);
	opacity: 0.5;
	border-radius: 10px;
	z-index: 2;
	transition: all 0.5s ease;
}
#overview .thumb:hover > .content:before {
    opacity: 0;
}
#overview .thumb:hover > .content {
    transform: scale(1.1);
}
#overview .thumb .title {
    display: block;
    position: relative;
    z-index: 3;
    padding: 14px 21px;
    color: var(--light);
}

@media only screen and (min-width: 1200px) {
    .slides_to_show_large {
        transform: translate3d(0, 0px, 0px) !important;
    }
}
@media only screen and (max-width: 1300px) {

    .slides_to_show_medium {
        transform: translate3d(0, 0px, 0px) !important;
    }
}
@media only screen and (max-width: 1199px) {
    .slider-main .detail {
        flex-direction: column;
        gap: 0;
    }
    .slider-main .detail .label {
        flex-basis: auto;
    }
}
@media only screen and (max-width: 991px) {
    .slider-main {
    	height: 100%;
    	padding: 42px 63px;
    }
    .slider-main .slide {
        flex-direction: column-reverse;
    	justify-content: start;
    }
    .slider-nav {
        display: none;
    }
    .slider-main .details {
        flex-direction: column;
    	width: 100%;
    	padding: 21px 14px 14px 14px;
    }
    .slider-main .details h3 {
    	font-size: 21px;
    	margin-bottom: 21px;
    }
    .video {
    	width: 100%;
    	height: auto;
    	max-width: 100%;
    	max-height: auto;
    	margin: 0 auto;
    }
    .video_container {
        width: 100%;
        min-height: 100%;
        min-width: auto;
    }
    .slides_to_show_small {
        transform: translate3d(0, 0px, 0px) !important;
    }
    .slick-arrow {
      	height: calc(100vh - 63px);
    }
}