/*
Theme Name: Cleancut_Custom_Theme_NK 
Author: Theofylaktos Angourias
Author URI: https://cleancut.gr
Version: 0.0.9
 */

:root {
         color-scheme: light only;
       }


/* Font Faces */

@font-face {
    font-family: CFAstyStd Light;
    src: url("assets/fonts/CFAstyStd-Light.otf") format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: CFAstyStd Book;
    src: url("assets/fonts/CFAstyStd-Book.otf") format('opentype');
    /* font-weight: 900; */
    font-style: normal;
}

@font-face {
    font-family: la-brands;
    src: url("assets/fonts/la-brands-400.woff2") format('woff2'),
        url("assets/fonts/la-brands-400.woff") format('woff');
}

@font-face {
    font-family: la-regular;
    src: url("assets/fonts/la-regular-400.woff2") format('woff2'),
        url("assets/fonts/la-brands-400.woff") format('woff');
}

@font-face {
    font-family: la-solid;
    src: url("assets/fonts/la-solid-900.woff2") format('woff2'),
        url("assets/fonts/la-brands-400.woff") format('woff');
}

/* Global Classes */

.fs-16 {
    font-size: calc(14.6px + (16 - 14.6) * ((100vw - 576px) / (2560 - 576)));
}

.fs-17 {
    font-size: calc(15px + (17 - 15) * ((100vw - 576px) / (2560 - 576)));
}

.fs-29 {
    font-size: calc(24px + (29 - 24) * ((100vw - 768px) / (2560 - 768)));
}

.fs-35 {
    font-size: calc(30px + (35 - 30) * ((100vw - 768px) / (2560 - 768)));
}

.fs-50 {
    font-size: calc(33px + (38.5 - 33) * ((100vw - 768px) / (2560 - 768)));
}

.fs-73 {
    font-size: calc(36.5px + (73 - 36.5) * ((100vw - 768px) / (2560 - 768)));
}

.asty-light {
    font-family: 'CFAstyStd Light';
}

.asty-book {
    font-family: 'CFAstyStd Book';
}

.c-dark {
    color: rgba(35, 31, 32, 1) !important;
}

.c-gold {
    color: rgba(233, 192, 125, 1) !important;
}


/* Global Variables */


:root {
    /* --navbar-height: 145px; */
    --navbar-height: 90px;
    --theme-color-a: rgba(35, 31, 32, 1) !important;
    --theme-color-b: rgba(233, 192, 125, 1) !important;
    --theme-color-grey-lighter: rgba(208, 210, 210, 1) !important;
    --theme-color-grey-darker: rgba(128, 128, 128, 1) !important;
    --theme-custom-letter-spacing: -3px;
    --CFAstyStd-Light: 'CFAstyStd Light';
    --CFAstyStd-Book: 'CFAstyStd Book';
    --homepage-card-header-height: 57px;
    --nav-font-size: 17px;
    --projects-nav: 60px;
    --global-title-font-size: calc(36.5px + (51.1 - 36.5) * ((100vw - 768px) / (2560 - 768)));
    --global-subtext-font-size: calc(16px + (17 - 16) * ((100vw - 576px) / (2560 - 576)));
    --services-title-line-height: 80px;
    --max-screen-width: 1920px;
    --min-screen-width: 320px;
    --next-prev-swiper-nav-color: rgb(255, 255, 255);
}

::-webkit-scrollbar {
  width: 7px;
	height: 7px;
}
 
::-webkit-scrollbar-track {
  background-color: #ffffff;
}
 
::-webkit-scrollbar-thumb {
  background-color: #e9c07d;
	border-radius: 50px;
}




/* Hamburger */

.hamburger {
    /* padding: 15px 15px; */
    outline: none !important;
    padding: 0;
    transform: scale(0.8);
    display: none;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
    background-color: var(--theme-color-a);
}

.hamburger-box {
    width: 40px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: var(--theme-color-a);
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}

/*
   * Collapse
   */
.hamburger--collapse .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-duration: 0.13s;
    transition-delay: 0.13s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner {
    transform: translate3d(0, -10px, 0) rotate(-45deg);
    transition-delay: 0.22s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* Global Styling */

* {
    /* margin: 0; */
    /* padding: 0; */
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

ul,
li {
    padding: 0;
    margin: 0;
}

/* html {
} */

/* html {
    height: 100vh;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth !important;
} */
html,
body {
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    min-width: 300px !important;
    scroll-behavior: smooth;
    font-weight: 400;
    line-height: 1.5;
    color: var(--theme-color-a);
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    scroll-behavior: smooth !important;
    /* min-height: 100vh; */
    /* min-height: -webkit-fill-available;
    min-height: fill-available;
    min-height: -moz-available; */
    height: calc(var(--vh, 1vh) * 100);
	  scrollbar-color: #ffffff #e9c07d;
	scrollbar-width: thin;

}

html {
    min-height: 100vh;
}

hr {
    border-top: 2px solid var(--theme-color-grey-lighter);
    border-bottom: 0;
    border-left: 0;
    border-right: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: .5rem;
}

p {
    margin-bottom: 1rem;
}

label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

[type=button],
[type=reset],
[type=submit],
button {
    -webkit-appearance: button;
}

input,
select,
textarea {
    font-size: 16px !important;
}

button,
input,
optgroup,
select,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    outline-color: var(--theme-color-b);
}

.global-title {
    font-size: var(--global-title-font-size);
    font-family: var(--CFAstyStd-Light);
    color: var(--theme-color-a);
    text-transform: uppercase;
}

.global-subtext {
    font-size: var(--global-subtext-font-size);
    font-family: var(--CFAstyStd-Book);
    color: var(--theme-color-a);
}

.global-container {
    position: relative;
    padding: 0;
    margin: 0;
    width: 100%;
    height: calc(var(--vh, 1vh) * 100 - var(--navbar-height));
    top: var(--navbar-height);
    /* overflow: auto; */
    scroll-behavior: smooth;
}

/* Navigation */

.hide_scrollbar {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.hide_scrollbar::-webkit-scrollbar {
    display: none;
}

#desktop-nav {
    /* border-bottom: 1px solid var(--theme-color-grey-darker); */

    /* padding: 0 2.5rem; */
    width: 100%;
    z-index: 1000000;
    position: fixed;
    background: rgba(255, 255, 255, 1);
    color: var(--theme-color-a);
    font-size: var(--nav-font-size);
    top: 0px;
    /* left: 50%; */
    /* transform: translateX(-50%); */
    text-transform: uppercase;
    /* border-bottom: 1px solid #d0d2d3; */
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    height: var(--navbar-height);
    /* min-height: 10vh; */
    padding: 0 40px;
    font-family: var(--CFAstyStd-Book);
    transition: all 0.2s ease-in-out;
    transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.navbar-li-custom-class {
    transition: all 0.2s ease;
}

#logo-img {
    margin: 0;
    height: 100%;
    padding: 16px 0;
}

#desktop-nav a {
    height: 100%;
    /* width: 100%; */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /* padding: 16px 0; */
}

#desktop-nav img {
    height: 60%;
}

.desktop-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    margin: 0;
    list-style: none;
    position: relative;
}

.navbar-li-custom-class {
    padding: 5px 0px;
    margin: 0px 24px;
    position: relative;
}

.navbar-li-custom-class>.navbar-menu-a-class {
    color: var(--theme-color-a);
    padding: 0px 2px;
    position: relative;
    transition: all 0.2s ease;
    font-family: var(--CFAstyStd-Book);
}

.navbar-li-custom-class>.nav-item-hover:hover {
    /* border-bottom: 2px solid var(--theme-color-b); */
    color: var(--theme-color-b) !important;
    position: relative;
}

#desktop-nav a {
    text-decoration: none !important;
}

#desktop-nav a:hover {
    text-decoration: none !important;
}

.current-menu-item {
    /* active item */
    border-bottom: 2px solid var(--theme-color-b);
    position: relative;
}

/* #language-selector {
    display: flex;
    justify-content: space-around;
    align-items: center;
} */

/* #language-selector li:last-child {
    margin-left: 0.5rem;
} */

.lang-item-el {
    margin-right: 2.5px;
    margin-left: 24px;
}

.lang-item-en {
    margin-left: 2.5px;
}

.lang-item {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: calc(var(--nav-font-size) - 2px);
    color: #BBBDBF;
    border: 1px solid #BBBDBF;
    padding: 0px;
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    position: relative;
    -webkit-border-top-left-radius: 100rem;
    -webkit-border-top-right-radius: 100rem;
    -webkit-border-bottom-right-radius: 100rem;
    -webkit-border-bottom-left-radius: 100rem;
    -moz-border-radius-topleft: 100rem;
    -moz-border-radius-topright: 100rem;
    -moz-border-radius-bottomright: 100rem;
    -moz-border-radius-bottomleft: 100rem;
    border-top-left-radius: 100rem;
    border-top-right-radius: 100rem;
    border-bottom-right-radius: 100rem;
    border-bottom-left-radius: 100rem;
}

.lang-list {
    padding: 0;
    display: flex;
    flex-direction: row;
}

.lang-item>a {
    color: #BBBDBF;
}

.lang-item:hover,
.lang-item:hover>a,
.current-lang,
.current-lang>a {
    color: var(--theme-color-a);
    border-color: var(--theme-color-a);
}

#menu-icon {
    height: 100%;
    font-size: 28px;
    padding: 0 4px;
    color: #eeeeee;
    display: none;
    align-items: center;
}

@media all and (min-width: 1921px) {
    :root {
        --navbar-height: 90px;
        --global-title-font-size: 2.5rem;
        --global-subtext-font-size: 17px;
    }

    .fs-50 {
        font-size: 2.25rem;
    }
}

@media all and (max-width: 1920px) {
    :root {
        --navbar-height: 72px;
        --nav-font-size: 16px;
    }

    #desktop-nav img {
        height: 65%;
    }
}

@media all and (max-width: 1366px) {
    :root {
        --navbar-height: 4rem;
        /* --nav-font-size: 15px; */
    }

    #desktop-nav {
        padding: 0 1.5rem;
    }

    .navbar-li-custom-class {
        margin: 0px 8px;
    }

    .lang-item-el {
        margin-right: 2.5px;
        margin-left: 8px;
    }

    .lang-item-en {
        margin-left: 2.5px;
        margin-right: 0;
    }

    .lang-item {
        height: 2.25rem;
        width: 2.25rem
    }
}


@media all and (min-width: 993px) {
    .desktop-menu {
        transform: translateY(0) !important;
    }

    .desktop-menu>* {
        opacity: 1 !important;
        pointer-events: auto !important;
        touch-action: none !important;
    }

    .hide_scrollbar {
        -ms-overflow-style: auto;
        /* IE and Edge */
        scrollbar-width: auto;
        /* Firefox */
    }

    .hide_scrollbar::-webkit-scrollbar {
        display: block;
    }
}

@media all and (max-width: 992px) {
    :root {
        --navbar-height: 3.5rem;
        height: calc(var(--vh, 1vh) * 100);
    }

    .body {
        height: calc(var(--vh, 1vh) * 100);
    }

    #desktop-nav img {
        height: 60%;
    }

    .desktop-menu {
        position: absolute;
        width: 100%;
        left: 0;
        height: calc(var(--vh, 1vh) * 100 - var(--navbar-height));
        background-color: rgba(255, 255, 255, 1);
        top: var(--navbar-height);
        z-index: -1;
        margin: 0;
        padding: 0;
        flex-direction: column;
        justify-content: center;
        transform: translateY(-100%);
        overflow-y: auto;
    }

    .desktop-menu>* {
        opacity: 0;
        pointer-events: none;
        touch-action: none;
    }

    .hamburger {
        display: inline-block;
    }

    /* .navbar-li-custom-class:first-of-type {
        margin-top: 15%;
    } */
    .navbar-li-custom-class {
        margin-bottom: 1rem;
    }

    .navbar-li-custom-class a {
        width: fit-content;
        width: -moz-fit-content;
        width: -webkit-fit-content;
    }

    .lang-list {
        margin: 0;
        padding: 0;
    }

    .lang-item-el {
        margin: 0 !important;
    }

    .lang-item-en {
        margin-left: 1rem;
    }
}

@media all and (max-width: 768px) {
    :root {
        /* --navbar-height: 60px; */
        --global-title-font-size: 36.5px;
        /* --nav-font-size: 15px; */
    }

    .fs-50 {
        font-size: 33px;
    }

    /* .navbar-li-custom-class:first-of-type {
        margin-top: 3rem;
    } */
}

@media all and (max-width: 576px) {
    :root {
        --global-subtext-font-size: 16px;
        /* --nav-font-size: 14px; */
    }

    #desktop-nav {
        padding: 0 0.6rem;
    }

    /* #desktop-nav img {
        height: 60%;
    } */
    .hamburger {
        transform: scale(0.75);
    }

    /* .navbar-li-custom-class:first-of-type {
        margin-top: 2rem;
    } */
}

@media all and (max-width: 320px) {
    :root {
        --navbar-height: 55px;
    }

    #desktop-nav {
        padding: 0 0.5rem;
    }

    /* .navbar-li-custom-class:first-of-type {
        margin-top: 1rem;
    } */
    #desktop-nav img {
        height: 55%;
    }

    .hamburger {
        transform: scale(0.6);
    }
}


/* Swiper Global Settings */

.swiper-button-next,
.swiper-button-prev {
    transform: translateY(-50%);
    margin: 0 !important;
    width: 15% !important;
    max-width: 42px !important; 
    height: 50% !important;
}


.swiper-button-next:after,
.swiper-button-prev:after {
    opacity: 0;
    pointer-events: none;
    touch-action: none;
}

.swiper-button-next,
.swiper-button-white {
    outline: none;
}

.swiper-button-prev,
.swiper-button-white {
    outline: none;
}

.swiper-button-next {
    right: 0 !important;
}

.swiper-button-next img {
    position: absolute;
    max-height: 40.67px !important;
    max-width: 21.05px !important;
    min-width: 20px !important;
}

.swiper-button-prev {
    left: 0 !important;
}

.swiper-button-prev img {
    position: absolute;
    max-height: 40.67px !important;
    max-width: 21.05px !important;
    min-width: 20px !important;
}