/*----------------*/
/* Root variables */
/*----------------*/
:root {
    --sc_white_color: #FFFFFF;
    --sc_black_color: #000000;
    --sc_blackish_color: #222;
    --sc_font_family: "Didact Gothic", Sans-serif;
}


body {
    margin: 0;
    padding: 0;
    font-family: var(--sc_font_family), Arial, Helvetica, sans-serif !important;
    overflow: hidden;
}

* {
    margin: 0;
    padding: 0;
    border: none;
}

.sc_flags{
    position: absolute;
    z-index: 9;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.sc_flags button:first-child{ margin-right: 5px;}
.sc_flags img:hover{ 
  cursor: pointer;
  transform: scale(1.1);
}

/* Margins / Paddings */
.sc_margin_content{ margin: 0 auto 30px auto;}

/* Global classes */
.sc_displ_none{ display: none;}
.sc_displ_block{ display: block !important;}

/* Width/Height */
.sc_width_100-per{ width: 100%;}
.sc_height_100-per{ height: 100%;}

.sc_width_200{ width: 200px;}

/* Text Rules-Classes */
a{ 
	text-decoration: none;
    font-family: var(--sc_font_family), Arial, Helvetica, sans-serif !important;
}

.font_size-12{ font-size: 12px;}
.font_size-16{ font-size: 16px;}
.font_size-18{ font-size: 18px;}
.font_size-50{ font-size: 50px;}
.font_size-70{ font-size: 70px;}

.font_weight_normal{ font-weight: 400;}

.centered_content{ text-align: center;}

.text_shadow{ text-shadow: 0 20px 40px rgba(0,0,0,.5); }

/* Colors */
.tcolor_white{ color: var(--sc_white_color);}
.tcolor_black{ color: var(--sc_black_color);}

/* Flex alignment */
.sc_flex_center{
    display: flex;
    justify-content: center;
    align-items: center;
}

.sc_opcity_07{ opacity: 0.7;}

/* Positions */
.sc_pos_abs_center{
    position: absolute;
    bottom: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
}

.sc_pos_abs_horizontal_center{
    position: absolute;
    bottom: 0;
    z-index: 9;
    width: 100%;
    text-align: center;
}

/*---------------------------*/
/* Full Desktop presentation */
/*---------------------------*/
.split_screen_section{
    background: #424242;
    overflow: hidden;
    height: 100vh;
}

.split_screen_box{
    float: left;
    position: absolute;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: all 800ms;
}

.split_screen_box::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--sc_blackish_color);
    opacity: .3;
}

/* Text Content */
.split_screen_content{
    position: absolute;
    text-align: center;
    width: 50%;
}

.split_screen_content p{ 
    font-size: 22px;
    color: var(--sc_white_color);
}

.split_screen_content h2{
    font-size: 70px;
    font-weight: 300;
    color: var(--sc_white_color);
    margin: 0 0 40px 0;
}

.split_screen_content a{
    font-size: 14px;
    display: block;
    margin: 0 auto;
    width: fit-content;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    border: 1px solid var(--sc_white_color);
    color: var(--sc_white_color);
    background: transparent;
    padding: 14px 24px;
    transition: all 300ms ease-in-out;
}

.split_screen_content a:hover{
    background: var(--sc_white_color);
    color: var(--sc_black_color);
    border-radius: 40px;
    transform: scale(1.1);
}

.split_screen_section_left .split_screen_content{ left: 0;}
.split_screen_section_right .split_screen_content{ right: 0;}

/* Left split-screen slide */
.split_screen_box.split_screen_section_left{
    right: 3px;
    background-image: url('https://cyclades-cuisine.e-host.gr/assets/images/aegean-cuisine-cyclades.webp');
	background-position: bottom center;
	-webkit-clip-path: polygon(0 0, 60% 0, 40% 100%, 0 100%);
    clip-path: polygon(0 0, 60% 0, 40% 100%, 0 100%);
}

/* Right split-screen slide */
.split_screen_box.split_screen_section_right{
    left: 3px;
    background-image: url('https://cyclades-cuisine.e-host.gr/assets/images/aegean-cuisine-dodecanese.webp');
    -webkit-clip-path: polygon(60% 0, 100% 0, 100% 100%, 40% 100%);
    clip-path: polygon(60% 0, 100% 0, 100% 100%, 40% 100%);
}


@media screen and (min-width: 499px){
	/* Active split-screen slide */
	.left_section_active .split_screen_section_left { 
		-webkit-clip-path: polygon(0 0, 80% 0, 60% 100%, 0 100%);
		clip-path: polygon(0 0, 80% 0, 60% 100%, 0 100%);
	}
	.left_section_active  .split_screen_section_right { 
		-webkit-clip-path: polygon(80% 0, 100% 0, 100% 100%, 60% 100%);
		clip-path: polygon(80% 0, 100% 0, 100% 100%, 60% 100%);
		filter: blur(7px);
	}
	.left_section_active .split_screen_section_right::before{ opacity: .6;}

	.right_section_active .split_screen_section_left { 
		-webkit-clip-path: polygon(0 0, 40% 0, 20% 100%, 0 100%);
		clip-path: polygon(0 0, 40% 0, 20% 100%, 0 100%);
		filter: blur(7px);
	}
	.right_section_active .split_screen_section_right { 
		-webkit-clip-path: polygon(40% 0, 100% 0, 100% 100%, 20% 100%);
		clip-path: polygon(40% 0, 100% 0, 100% 100%, 20% 100%);
	}
	.right_section_active .split_screen_section_left::before{ opacity: .6;}
}



/*--------------------------------*/
/* Responsive Mobile presentation */
/*--------------------------------*/
.section.first_slide,
.section.second_slide{ display: none; }

/* Section and Slide Container */
.section{
    position: relative;
    height: 100vh;
    background-size: cover;
}

.slide_container{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    clip: rect(auto, auto, auto, auto);
    pointer-events: none;
}

.slide_container_inner{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    padding: 0;
    z-index: 99;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
    -webkit-perspective: 1000;
    perspective: 1000;
    pointer-events: all;
}

.slide_centered_content{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0 16px;
}

.left_section_active > img,
.right_section_active > img{ opacity: 0.5;}

/* Images */
.first_slide{ background-image: url('https://cyclades-cuisine.e-host.gr/assets/images/aegean-cuisine-cyclades.webp');}
.second_slide{ background-image: url("https://cyclades-cuisine.e-host.gr/assets/images/aegean-cuisine-dodecanese.webp");}

/* Text styling */
.section p,
.section a{
    letter-spacing: 2px;
    text-transform: normal;
}

.slide_container::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;  
    background: linear-gradient(to bottom, transparent, var(--sc_black_color));
    opacity: 0.5;
}

.slide_container.content-theme-light::before{ opacity: .35;}

.box{
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
}

.box span:hover{ cursor: pointer;}

.box span{
    display: block;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid #DDD;
    border-right: 2px solid #DDD;
    transform: rotate(45deg);
    margin: -10px;
    filter: drop-shadow(0 0 10px #FFF) drop-shadow(0 0 30px #FFF) drop-shadow(0 0 50px #FFF);
    animation: animate 2s infinite;
}

.box span:nth-child(2){ animation-delay: -0.2s;}
.box span:nth-child(3){ animation-delay: -0.4s;}
.box-down{ transform: rotate(180deg);}

#box-scroll{ opacity: 1;}

@keyframes animate{
    
    0%{
        opacity: 0;
        transform: rotate(45deg) translate(-20px, -20px);
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0;
        transform: rotate(45deg) translate(20px, 20px);
    }
}

.slide_centered_content a{
    text-transform: uppercase;
    letter-spacing: 1.3px;
    border: 1px solid var(--sc_white_color);
    background: transparent;
    padding: 14px 24px;
    transition: all 300ms ease-in-out;
    margin-top: 20px;
}

.slide_centered_content a:hover{
    background: var(--sc_white_color);
    color: var(--sc_black_color);
}

/*---------------*/
/* Media Queries */
/*---------------*/
@media screen and (max-width: 1460px){
    .split_screen_section > img{ width: 150px;}
    .split_screen_content a{
        border-left: 0;
        border-right: 0;
        border-top: 0;
    }
}

@media screen and (max-width: 1280px){
    .split_screen_section > img{ width: 100px;}
    .split_screen_content a{ margin-top: 20px;}
    .split_screen_content p{ 
        font-size: 18px;
        max-width: 360px !important;
        margin: auto;
    }

    .split_screen_section > p{ font-size: 55px;}
}


@media screen and (max-width: 960px){
    .split_screen_section > p{ 
        font-size: 33px;
        bottom: 5px;
    }

    .split_screen_content.split_screen_content_left{ top: 40px;}
    .split_screen_content.split_screen_content_right{ bottom: 80px;}
}

@media screen and (max-width: 960px) and (max-height: 430px){
    .sc_main_ac_logo { display: none;}
}


@media screen and (max-width: 840px){
    /* Font sizes text, title and button */
    .split_screen_content p{ font-size: 18px;}
    .split_screen_content h2{ font-size: 50px;}
    .split_screen_content a{ font-size: 12px;}

    .split_screen_content{ margin: 10px;}
}

@media screen and (max-width: 768px){
    body{ overflow: hidden;}
     .split_screen_content p {
        font-size: 16px;
        max-width: 320px !important;
    }
}

@media screen and (max-width: 498px){
	.split_screen_box.split_screen_section_left {
    	background-image: url('https://cyclades-cuisine.e-host.gr/assets/images/aegean-cuisine-cyclades.webp');
		right: 0px;
		-webkit-clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
		clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
	}
    
    .split_screen_section_left .split_screen_content,
    .split_screen_section_right .split_screen_content{ width: fit-content;}
    .split_screen_section_left .split_screen_content{
        top: 70px;
        left: 13px
    }
    
	.split_screen_box.split_screen_section_right {
		left: 0px;
		-webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 0% 100%);
		clip-path: polygon(100% 0, 100% 0, 100% 100%, 0% 100%);
	}
    
	.split_screen_section_right .split_screen_content{
		bottom: 70px;
        right: 13px
	}
	
	.split_screen_content p { font-size: 16px;}
	.split_screen_content h2{ font-size: 44px;}
	.split_screen_content a{ padding: 10px 20px;}
}


@media screen and (max-width: 480px){
    .split_screen_content h2{ font-size: 33px;}
    .split_screen_content p{ display: none !important;}
}