@font-face {
    font-family: 'LaGrotesque Arabic';
    src: url('/css/fonts/LaGrotesqueA-Regular.woff2') format('woff2'),
        url('/css/fonts/LaGrotesqueA-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    unicode-range:  U+0600-06FF, U+0750-077F, U+08A0-08FF,U+FB50-FDFF,U+FE70-FEFF,
    U+0020-002F,    /* space, ! " # $ % & ' ( ) * + , - . / */
    U+0030-0039,    /* digits 0-9 */
    U+003A-0040,    /* : ; < = > ? @ */
    U+005B-0060,    /* [ \ ] ^ _ ` */
    U+007B-007E,    /* { | } ~ */
    U+00A0-00FF,    /* Latin-1 Supplement (nbsp, ©, ®, °, ×, ÷, etc.) */
    U+2000-206F,    /* General Punctuation (em/en dash, smart quotes, ellipsis, LRM/RLM marks) */
    U+20A0-20CF    /* Currency Symbols (€, £, ₹, ₽, etc.) */;
}

@font-face {
    font-family: 'LaGrotesque Arabic';
    src: url('/css/fonts/LaGrotesqueA-Bold.woff2') format('woff2'),
        url('/css/fonts/LaGrotesqueA-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    unicode-range:  U+0600-06FF, U+0750-077F, U+08A0-08FF,U+FB50-FDFF,U+FE70-FEFF,
    U+0020-002F, 
    U+0030-0039,
    U+003A-0040,
    U+005B-0060,
    U+007B-007E,
    U+00A0-00FF, 
    U+2000-206F, 
    U+20A0-20CF;
}

@font-face {
    font-family: 'LaGrotesque Arabic';
    src: url('/css/fonts/LaGrotesqueA-Medium.woff2') format('woff2'),
        url('/css/fonts/LaGrotesqueA-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    unicode-range:  U+0600-06FF, U+0750-077F, U+08A0-08FF,U+FB50-FDFF,U+FE70-FEFF,
    U+0020-002F,
    U+0030-0039,
    U+003A-0040,
    U+005B-0060,
    U+007B-007E,
    U+00A0-00FF,
    U+2000-206F,
    U+2070-209F,
    U+20A0-20CF;
}

@font-face {
    font-family: 'ED Lavonia';
    src: url('/css/fonts/EDLavonia-Regular.woff2') format('woff2'),
        url('/css/fonts/EDLavonia-Regular.woff.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'EngraversGothic';
    src: url('/css/fonts/EngraversGothic-Regular-webfont.woff2') format('woff2'),
         url('/css/fonts/EngraversGothic-Regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'EngraversGothic';
    src: url('/css/fonts/EngraversGothic-Bold-webfont.woff2') format('woff2'),
         url('/css/fonts/EngraversGothic-Bold-webfont.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

:root {
    --font-size-small: 0.8rem;
    --font-size-text: 1rem;
    --font-size-title: 1.2rem;

    --font-scale-1: 1rem;      /* 16px */
    --font-scale-2: 1.25rem;   /* 20px */
    --font-scale-3: 1.563rem;  /* 25px */
    --font-scale-4: 1.953rem;  /* 31.25px */
    --font-scale-5: 2.441rem;  /* 39.06px */

    --color-background-main: #eee6d8;
    --color-background-alt: #f9d1bb;
    --color-background-alt-2: #fdf3b7;

    --color-terracotta: #93282c;
    --color-sun: #ffb81c;
    --color-midnight: #001489;

    --color-accent: #c98f55;
/*"Objektiv Mk1 Trial"*/
    --font-body-ar: "LaGrotesque Arabic", "EngraversGothic", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Tahoma, Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    --font-body-en: "EngraversGothic", "LaGrotesque Arabic", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Tahoma, Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;

    --font-headline-ar: "eskorte-arabic", "LaGrotesque Arabic", serif;
    --font-headline-en: "ED Lavonia", serif;

    --font-body: var(--font-body-en);
    --font-headline: var(--font-headline-en);


    --frame-thickness: 10px;
    --frame-margin: 0.25em;
    --frame-padding: calc(var(--frame-thickness) / 2.2);
    --frame-stroke: max(1px, calc(var(--frame-thickness) / 6));
    --content-padding-min: calc(var(--frame-margin) + (var(--frame-padding) * 2 + var(--frame-thickness) + var(--frame-stroke) * 2));
    --content-padding: calc(var(--content-padding-min) + 0.25em);
    --footer-height: 40px;
}

:root[lang="ar"] {
    --font-body: var(--font-body-ar);
    --font-headline: var(--font-headline-ar);
}

@media (max-width: 25em) {
    :root {
        --frame-thickness: 6px;
        --frame-margin: 0.1em;
    }
}

@media (min-width: 60em) {
    :root {
        --frame-margin: 0.75em;
        --frame-thickness: 12px;
        --content-padding: calc(var(--content-padding-min) + 0.75em);
    }
}


*, *::before, *::after {
    box-sizing: border-box;
}
  
html {
    -webkit-text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
    font-size: 100%;
}
  
body {
    margin: 0;
    min-height: 100svh;
    line-height: 1.2;
    font-family: var(--font-body);
    font-weight: normal;
    -webkit-font-smoothing: auto;
    background-color: var(--color-background-main);
}
  
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-body);
    font-weight: normal;
    font-style: normal;
    text-wrap: balance;
    line-height: 1.2;
}

h1, h5 {
    font-family: var(--font-headline);
}
  
p {
    text-wrap: pretty;
    line-height: 1.2;
    margin-bottom: 1rem;
}

div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, p, blockquote, th, td {
    margin: 0;
    padding: 0;
}
  
img, picture, video, canvas, svg {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
    border: 0 none;
}

a img {
    border: 0;
}
  
input, button, textarea, select {
    font: inherit;
    color: inherit;
}
  
button {
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}
  
  
a {
    color: var(--color-accent);
    text-decoration-skip-ink: auto;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
}
  
ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}
  
:target {
    scroll-margin-block: 2rem;
}
  
:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}
  
hr {
    border: none;
    border-top: 1px solid;
    opacity: 0.2;
}
  
table {
    border-collapse: collapse;
}


.ar-text {
    direction: rtl;
}


.page-intro h1 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--color-terracotta);
}

.tiled-frame {
    position: relative; /* needed for virtual frame */
    isolation: isolate;
}

.tiled-frame::before {
    content: "";
    position: absolute;
    left: var(--frame-margin);
    top: var(--frame-margin);
    width: calc(100% - var(--frame-margin) * 2);
    height: calc(100% - var(--frame-margin) * 2 - var(--footer-height));

    pointer-events: none;
    z-index: 0;
    padding: var(--frame-padding);
    border: var(--frame-stroke) solid #c98f55;
    background-origin: content-box;
    background-clip: content-box;
    background-image:
        url("/img/h-border-part.png"),
        url("/img/h-border-part.png"),
        url("/img/v-border-part.png"),
        url("/img/v-border-part.png");
    background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
    background-size:
        auto var(--frame-thickness),
        auto var(--frame-thickness),
        var(--frame-thickness) auto,
        var(--frame-thickness) auto;
    background-position:
        left top,
        left bottom,
        left top var(--frame-thickness),
        right top var(--frame-thickness);

    z-index: 1;
}

/* inner border of frame pattern */
.tiled-frame::after {
    --var-frame-outer-inset: calc(var(--frame-margin) + var(--frame-padding) * 2 + var(--frame-thickness) + var(--frame-stroke));
    content: "";
    position: absolute;
    top: var(--var-frame-outer-inset);
    right: var(--var-frame-outer-inset);
    bottom: calc(var(--var-frame-outer-inset) + var(--footer-height));
    left: var(--var-frame-outer-inset);

    border: var(--frame-stroke) solid var(--color-accent);
    pointer-events: none;
    z-index: 1;
}

/* Keep content above the frame layers */
:where(.tiled-frame) > * {
    position: relative;
    z-index: 2;
}

footer a:hover {
    color: var(--color-accent);
}


.content-container {
    max-width: 75rem;
    margin: 0 auto;
}

.panel {
    background-color: var(--color-background-alt);
    border: 1px solid hsl(from var(--color-background-alt) h calc(s * 1.4) l / 1);
    color: var(--color-terracotta);
    padding: 1rem;
    margin-bottom: 1rem;
}

.bar {
    width: 1px;
    height: 60px;
    background-image: radial-gradient(hsl(from var(--color-accent) h s l / 0.9), rgba(0, 0, 0, 0));
    background-size: 1px 90%;
    background-position: 0 center;
    background-repeat: no-repeat;
    margin: -2rem auto 1.5rem auto;
}

.bar.short {
    height: 48px;
    margin: 0.75rem auto 0.75rem auto;
}

.bar.really-short {
    height: 36px;
    margin: 0.75rem auto 0.75rem auto;
}

.medallions {
    display: flex;
    justify-content: space-evenly;
    gap: 1rem;
}

.inline-medallion {
    min-width: 50px;
    width: 30%;
    max-width: 124px;
}

.page-banner .background {
    object-fit: cover;
    height: 40vh;
    width: 100%;
    z-index: 1;
}

@media (min-width: 60em) {
    .page-banner .background {
        height: 60vh;
    }
}


.fade-top .background {
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 40%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 40%);
}

.fade-top-short .background {
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 23%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 23%);
}

header {
    position: relative;
    z-index: 500;
    padding: var(--content-padding);
    padding-bottom: 0;
}

.header-proper {
    display: flex;
    justify-content: center;
}

#site-link {
    flex: initial;
    /* vertically center content */
    display: flex;
    justify-content: center;
    flex-direction: column;

    margin: 3rem 0;
}

#logo { 
	width: 200px;
}

@media (max-width: 25em) {
    #logo {
        width: 180px;
    }
}

#main-navigation {
    position: fixed;
    visibility: hidden;
    top: 0;
    left: 0;
    width: 100vw;
    height: 0;
    padding: 0;

    font-weight: normal;
    font-size: var(--font-size-text);
    
    background-color: hsl(from var(--color-background-alt) h s l / 0.75);
    backdrop-filter: blur(10px) saturate(150%);

    z-index: 200;

    opacity: 0;
    transition: opacity 0.3s ease ;
}

.navigation-toggled #main-navigation {
    visibility: visible;
    width: 100vw;
    height: 100vh;
    opacity: 1;
}

.main-links {
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: center;
    transform:  translateY(-40px);
    transition: transform 0.3s ease;
}

.navigation-toggled .main-links {
    visibility: visible;
    transform:  translateY(0);
}

#main-navigation .monogram {
    background-image: none;
    margin-top: 2.4rem;
    margin-bottom: 3rem;
    width: clamp(108px, 30%, 120px);
    align-self: center;
    /* opacity: 0; */
    display: none;
}

.navigation-toggled #main-navigation .monogram {
    /* opacity: 1; */
    display: block;
}

#main-navigation a {
    position: relative; /* for the background image */

    display: flex;
    flex-direction: row-reverse;

    /* center contents */    
    justify-content: center;
    text-align: center;

    padding: 1rem 0;
    background-image: none;
    background-repeat: no-repeat;
    background-size: 70% 1px;
    background-position: center 90%;
    color: var(--color-terracotta);
    gap: 1rem;
}


#main-navigation a:hover, #main-navigation a.selected {
    color: hsl(from var(--color-terracotta) h calc(s * 1.6) l / 1);
    background-image: radial-gradient(hsl(from var(--color-terracotta) h calc(s * 1.5) l / 1), rgba(0, 0, 0, 0));
}

#main-navigation a.monogram {
    background-image: none;
}

.fountain {
    position: fixed;
    background-image: url(/img/fountain3.jpg);
    background-size: cover;
    background-position: 32% bottom;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: hard-light;
    mix-blend-mode: color-burn;
    opacity: 0.7;
    transform: scale(1.1);
    transition: transform .5s ease;
}

.navigation-toggled .fountain {
    transform: scale(1);
}

.essential-nav {
    display: none;
}

@media (max-width: 60em) {
    .essential-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0.5rem 0;
        margin: 1rem var(--content-padding-min) 0 var(--content-padding-min);
        color: var(--color-terracotta);
    }

    .essential-nav a {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        color: inherit;
        flex: 1;
    }

    .essential-nav a + a {
        border-left: 1px solid var(--color-accent);
    }
}


.ar-link {
    font-family: var(--font-headline-ar);
    line-height: 1;
    direction: rtl;
    position: relative;
    top: -1px;
}

.en-link {
    font-family: var(--font-body-en);
    line-height: 1;
    text-transform: uppercase;
    font-variant: small-caps;
}

#menu-toggle {
    position: absolute;
    right: calc(var(--content-padding) + 24px);
    top: 50px;
    width: 20px;
    height: 16px;
    z-index: 250;
    margin-top: 3rem;

    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 25em) {
    #menu-toggle {
        top: 36px;
        right: calc(var(--content-padding) + 16px);
    }
}

.navigation-toggled #menu-toggle {
    position: fixed;
}

.icon-menu {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 16px;
}

.icon-menu__bar {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-terracotta);
    transform-origin: center;
    transition: transform 240ms ease, opacity 180ms ease;
}

.icon-menu__bar:nth-child(1) { top: 0; }
.icon-menu__bar:nth-child(2) { top: 7px; }
.icon-menu__bar:nth-child(3) { top: 14px; }


.icon-menu:before {
    content: none;
}

.navigation-toggled .icon-menu__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg) scaleX(2);
}

.navigation-toggled .icon-menu__bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.2);
}

.navigation-toggled .icon-menu__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg) scaleX(2);
}

@media (min-width: 60em) {
    /* Stack logo + links vertically and center them */
    .header-proper {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #main-navigation {
        position: static;
        opacity: 1;
	    top: auto;
        left: auto;
	    width: 70%;
        height: auto;
        margin-top: 1.5rem;
        margin-bottom: 3rem;
        
        background-color: transparent;
        backdrop-filter: none;
        font-size: var(--font-size-title);
    }

    .main-links {
        visibility: visible;
        justify-content: space-evenly;    
        flex-direction: row; 
        gap: 0.75rem;
        transform: translateY(0);
    }

    .navigation-toggled #main-navigation {
        display: flex;
        width: 70%;
        height: auto;
    }

    #main-navigation .monogram {
        display: none;
    }

    #main-navigation a:nth-child(2) {
        background-image: none !important;
    }

    #main-navigation a {
        flex-direction: column;
        flex-grow: 0.45;
        gap: 4px;
        background-image: none;
        padding-top: 0.7rem;
        padding-bottom: 0.5rem;
        border: 1px solid transparent;
    }


    #main-navigation a:hover, #main-navigation a.selected {
        color: var(--color-accent);
        background-image: none;
    }

    #main-navigation a.selected {
        border: 1px solid var(--color-accent);
        border-radius: 50%;
    }

    #logo { 
        width: 288px;
    }

    #logo:hover {
        filter: saturate(120%);
        mix-blend-mode: multiply;
    }

    #site-link {
        margin-top: 4rem;
        margin-left: 0;
    }

    #menu-toggle {
        display: none;
    }

    .ar-link {
        top: 0;
    }

    .fountain {
        display: none;
    }
    
    #main-carousel-container {
        margin-top: 0;
    }
}

#main-carousel-container {
    position: relative;
    height: 70vh;
    z-index: 0;
}

#main-carousel {
    height: 100%;
}

.carousel-slide {
    height: 100%;
}

.slick-list,
.slick-track {
    height: 100%;
}

.carousel-slide .contents {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    position: relative;
    /* padding-top: var(--header-height); */

}

.carousel-slide .background {
    object-fit: cover;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.carousel-slide .text {
    display: inline-block;
    font-size: var(--font-scale-4);
    font-feature-settings: "ss01";
    text-align: center;
    text-shadow: 1px 0 #000, 0 1px #000, -1px 0 #000, 0 -1px #000;
    margin: 0 1.5rem;
    color: #fff;
    line-height: 1.2;
}

.carousel-slide .contents * {
    z-index: 2;
}


#location-container, #timings {
    background: url(/img/bg-dark.png);
    background-size: cover;
    padding: var(--content-padding);
    padding-top: 1.5rem;
    padding-bottom: calc(var(--content-padding) + 3rem);
    z-index: 0;
}

#timings {
    font-size: 1.5em;
    padding-bottom: 4rem;
}

#timings h5 {
    color: rgb(242, 201, 76);
    font-size: 1.25rem;
}

.opening-hours h5 {
    line-height: 1;
}


#timings h2 {
    font-size: 2rem;
    line-height: 1;
    text-align: center;
    margin: 0;
    color: rgb(242, 201, 76);
}

.section-heading {
    margin: 1rem 0 1.75rem 0;
}

@media (min-width: 60em) {
    #timings h5 {
        font-size: 1.75rem;
    }
}

.inner-page-contents {
    z-index: 0;   
}   
    
.inner-page-contents-proper {
    z-index: 0;
    padding: var(--content-padding) calc(var(--content-padding) + 0.9375rem) var(--content-padding) calc(var(--content-padding) + 0.9375rem);
    min-height: 120vh;
}

.inner-page-stylized {
    z-index: 2;
    position: relative;
    margin-top: 3rem;
    z-index: 3;
    padding: var(--frame-thickness);
    background-color: var(--color-terracotta);
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
    border-radius: 84px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin-bottom: 3rem;
}

.inner-page-stylized .inner-page-contents-proper {
    padding: 1.5rem 0 0 0;
    border: 1px solid var(--color-accent);
    border-radius: 76px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

@media (min-width: 60em) {
    .inner-page-stylized {
        margin-top: 0;
    }
}


/* ICONS */

.svg-icon {
  width: 32px;
  height: 32px;
}

.svg-icon path,
.svg-icon polygon,
.svg-icon rect {
  fill: #ccc;
}

.svg-icon:hover path,
.svg-icon:hover polygon,
.svg-icon:hover rect {
  fill: #fff;
}

.svg-icon circle {
  stroke: #ccc;
  stroke-width: 1;
}


/*
 * FOOTER
 */

footer {
    position: fixed;
    z-index: 4;
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--footer-height);
    border-top: 1px solid var(--color-accent);
    background: var(--color-background-main);
    font-size: 1rem;
    color: var(--color-accent);
}

footer a {  
    color: #111;
    vertical-align: top;
}

@media (max-width: 25em) {
    footer a {
        font-size: 12px;
    }
}

.footer-proper {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 0;

}


.opening-hours {
    grid-area: hours;
    display: flex;
    justify-content: space-between;
}

.opening-hours > .ar-text, .opening-hours .en-text {
    flex: 1;
}

.contact-info {
    list-style-type: none;
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-evenly;
    text-transform: uppercase;
    line-height: 1;
}


.contact-info .svg-icon {
    width: 16px;
    height: 16px;
    margin-right: 0.75rem;
}

.phone-number, .email {
    font-family: var(--font-body-en);
}

.restaurant-status {
    color: rgb(32, 131, 56);
    border: 1px solid rgb(32, 131, 56);
    border-radius: 4px;
    padding: 3px 5px 1px 5px;
    display: inline-block;
    line-height: 1;
    text-transform: uppercase;
    font-variant: small-caps;
    font-size: var(--font-size-text);
    position: relative;
    top: -0.325rem;
}

.days {
    line-height: 1;
}

.open {
   color: rgb(32, 131, 56);
   border-color: rgb(32, 131, 56); 
}

.closed {
    color: rgb(177, 32, 32);
    border-color: rgb(177, 32, 32);
    display: none;
}


.legal {
    grid-area: legal;
    margin-top:  1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#footer-logo {
    width: 96px;
    margin-bottom: 1.5rem;
}

.social-media {
    grid-area: social;
    text-align: right;   
}

.social-media a {
    display: inline-block;
    margin: 0 0.75rem;
}

.social-media a:first-child {
    margin-left: 0;
}

.restaurant-address {
    line-height: 1;
}

.restaurant-location .ar-text, .restaurant-location .en-text {
    flex: 1;
}

@media only screen and (max-width: 59.9em) {
    .days {
        display: block;
        margin-top: 0.75rem;
    }

    .hours {
        display: block;
        line-height: 1;
    }

    .social-media {
        text-align: left;
    }
}

@media (min-width: 60em) {

    .footer-proper {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        /* grid-template-areas: "hours hours contact social"
                 "legal legal nav ."; */
        grid-template-areas: "contact contact nav social" "legal legal . .";
        grid-row-gap: 0;
    }

    h5 {
        display: inline-block;
    }

    .restaurant-status {
        top: -1px;
    }

    .ar-text .restaurant-status {
        margin-right: 0.5rem;
    }

    .en-text .restaurant-status {
        margin-left: 0.5rem;
    }

    .hours {
        text-indent: 0.5rem;
        display: inline-block;
    }

    .legal {
        flex-direction: row;
        text-align: unset;
        align-items: normal;
    }

    #footer-logo {
        align-self: flex-start;
        margin-bottom: 0;
        margin-right: 1.5rem;
    }
}


/*
 * HOME
 */

 #calls-to-action {
    display: flex;
    flex-direction: column;
    justify-content: normal;

    position: relative;
    height: 100vh;
    background-color: #000;
}

.boxy {
    flex: 1;
    height: 33vh;
    width: 100%;
    margin: 1rem 0 0 0;		
    
    color: #fff;
    font-family: var(--font-headline);

    background-size: cover;
    background-position: center;
}


@media (min-width: 60em) {
    #calls-to-action {
        flex-direction: row;
        height: auto;
    }

    .boxy {
        height: 50vh;
        margin: 10px 10px 10px 0;
    }

    .boxy:first-child {
        margin-left: 0;
    }

    .boxy:last-child {
        margin-right: 0;
    }
}


.boxy-link {
    height: 100%;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: rgb(255, 255, 255);
    
}

.boxy-link .ar-text, .boxy-link .en-text {
    position: relative;
    font-size: var(--font-scale-3);
    display: inline-block;
    margin: 0.325rem;
    padding: 0.2rem 0.75rem;
    color: #000;
    z-index: 0;
}

.boxy-link .ar-text:before, .boxy-link .en-text:before {
    position: absolute;
    display: block;
    top: 0; 		
    left: 0;
    content: " ";
    background-color: rgba(242, 201, 76, 0.7);
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: transform 0.1s cubic-bezier(0.52, 0.16, 0.24, 1);
}

.boxy-link .ar-text:before {
    transform: skewX(-10deg);
}

.boxy-link .en-text:before {
    transform: skewX(10deg);
}

.boxy-link:hover .ar-text:before, .boxy-link:hover .en-text:before {
    background-color: rgba(76, 227, 242, 0.7);
}

.boxy-link:hover .ar-text:before {
    transform: skewX(10deg);
}

.boxy-link:hover .en-text:before {
    transform: skewX(-10deg);
}


.carousel-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 3rem;
}

@media (min-width: 60em) {
    .carousel-links {
        flex-direction: row;
       
    }
}

 /* Slick Slider */
 /* kenwheeler/slick@1.8.1/slick/slick.css */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/* tips */
.promotion .tingle-modal-box__content {
    padding: 0;
}

.promotion .tingle-modal-box {
    width: auto;
    margin: 2rem;
    background-color: transparent;
}