/* ---------------------------------------------------------------------------- */
/* --- --- --- --- --- --- --- --- --- BASE --- --- --- --- --- --- --- --- --- */
/* ---------------------------------------------------------------------------- */

/* --- COMMON BREAKPOINTS --- */
/* HD screens */
@media only screen and (min-height: 900px) and (min-width: 1500px){}
/* FullHD screens */
@media only screen and (min-height: 1000px) and (min-width: 2400px){}
/* UltraHD screens */
@media only screen and (min-height: 2000px) and (min-width: 3500px) {}

/* Laptop screens */
@media only screen and (max-height: 900px) {}
/* Medium devices / tablets 770 - 1030 width*/
@media only screen and (max-width: 1030px) {}
/* Medium devices / tablets 500px - 770px */
@media only screen and (max-width: 770px) {}
/* Small devices (phones, 500px and down) */
@media only screen and (max-width: 500px) {}

/* --- custom font --- */
@font-face {
    font-family: 'Satoshi';
    src: url('/assets/fonts/Satoshi-Light.otf') format("opentype");
    font-weight: 200;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('/assets/fonts/Satoshi-Regular.otf') format("opentype");
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'Satoshi';
    src: url('/assets/fonts/Satoshi-Medium.otf') format("opentype");
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: 'Satoshi';
    src: url('/assets/fonts/Satoshi-Bold.otf') format("opentype");
    font-weight: 600;
    font-display: swap;
}
@font-face {
    font-family: 'Satoshi';
    src: url('/assets/fonts/Satoshi-Black.otf') format("opentype");
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: 'Nohemi';
    src: url('/assets/fonts/Nohemi-Medium.ttf') format("truetype");
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: 'Nohemi';
    src: url('/assets/fonts/Nohemi-SemiBold.ttf') format("truetype");
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Cooper Hewitt';
    src: url('/assets/fonts/CooperHewitt-Bold.ttf') format("truetype");
    font-weight: bold;
    font-display: swap;
}

/* --- ROOT --- */
:root {
    /* main colors */
    --main-background:          #FFFFFF;
    --main-text-color:          #2E2E2E;
    --main-accent:              #572C24;
    --light-color:              #FFFFFF;
    --grey-color:               #BEBEBE;
    /* font */
    --main-paragraph-font:      200 16px 'Satoshi', sans-serif;
    --capital-font:             bold clamp(0.75rem, 0.35vw + 0.403rem, 1.5rem) 'Nohemi', sans-serif;  
    /* outline */
    --border-radius:            15px;
    --outline-width:            1px;
    --main-outline:             var(--outline-width) solid var(--main-text-color);
    /* proportions */
    --main-margin:              20px;
    --section-padding:          120px;
    --main-width:               100svw;
    --section-width:            calc(var(--main-width) - 2 * (var(--section-padding)));
    --half-proportion:          50svw;
    --navbar-height:            calc(4 * var(--main-margin));
    
}

@media (prefers-color-scheme: dark) {
    :root {
        --main-background:      #2B2727;
        --main-text-color:      #F4F1EC;
    } 
}

[data-theme="light"] {
    color-scheme: light;
    --main-background:          #F4F1EC;
    --main-text-color:          #2B2727;
}

[data-theme="dark"] {
    color-scheme: dark;
    --main-background:          #2B2727;
    --main-text-color:          #F4F1EC;
}
/* HD screens */
@media only screen and (min-height: 900px) and (min-width: 1500px){
    :root {
        --main-margin: 30px;
        --main-outline: 2px solid var(--main-text-color);
    }
}
/* FullHD screens */
@media only screen and (min-height: 1000px) and (min-width: 2400px){
    :root {
        --main-margin:              40px;
        --main-outline:             2px solid var(--main-text-color);
        --main-paragraph-font:      200 24px 'Satoshi', sans-serif;
    }
}
/* UltraHD screens */
@media only screen and (min-height: 2000px) and (min-width: 3500px) {
    :root {
        --main-margin:              40px;
        --main-outline:             2px solid var(--main-text-color);
        --main-paragraph-font:      200 36px 'Satoshi', sans-serif;
        --section-padding:          250px;
    }
}
/* Laptop screens */
@media only screen and (max-height: 899px) and (max-width: 1499px){
    :root {
        --main-margin: 20px;
        --main-outline: 1px solid var(--main-text-color);
    }
}
/* Medium devices / tablets 770 - 1030 width*/
@media only screen and (max-width: 1030px) {
    :root {
        --section-padding:          50px;
    } 
}
/* Small devices (phones, 500px and down) */
@media only screen and (max-width: 550px) {
    :root {
        --main-margin:              10px;
        --navbar-height:            calc(8 * var(--main-margin));
        --section-padding:          20px;
    }
}
/* ------------------------------------------------------------------------------------- */
/* --- --- --- --- --- --- --- --- --- MAIN ELEMENTS --- --- --- --- --- --- --- --- --- */
/* ------------------------------------------------------------------------------------- */
html {
    margin: 0px;
    padding: 0px; 
    scroll-behavior: smooth;
}
body {
    margin: 0px;
    padding: 0px;
    font: var(--main-paragraph-font);
    color: var(--main-text-color);
    background: var(--main-background);
    position: relative;
    z-index: 1;
}
.cs-main-container {
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100svh;
    text-align:center;
    white-space: collapse;
    width: 90svw;
}
.mobile-only {
    display: none;
}
.desktop-only {
    display: block;
}

/* --- main-title --- */
h1 {
    font-size: 80px;
    /* 40px - 96px */
    /* font-size: clamp(2.5rem, 2.16rem + 1.6vw, 6rem); */
    font-family: 'Satoshi';
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 25px;
    margin: 0px;
}
/* --- section titles ---  */
h2 {
    /* font-size: 26px; */
    font-size: clamp(1.25rem, 1.257vw + 0.983rem, 4rem);
    font-family: 'Nohemi';
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0px 0px 20px 0px;
    
}
h3 {
    /* font-size: 24px; */
    font-size: clamp(1.125rem, 0.857vw + 0.943rem, 3rem);
    font-family: 'Cooper Hewitt';
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0px 0px 30px 0px;
}
h4 {
    font-size: 14px;
    /* font-size: clamp(1rem, 0.40vw + 0.7rem, 2.25rem); */
    font-family: 'Nohemi';
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0px 0px 5px 0px;
}
h5 {
    /* font-size: 14px;
    font-weight: 600; */
    /* font-size: clamp(0.875rem, 0.398vw + 0.79rem, 1.75rem); */
    font-size: 16px;
    font-family: 'Satoshi';
    font-weight: 500;
    letter-spacing: 8px;
    margin: 20px 0px 10px 0px;
}
h6 {
    /* font-size: clamp(0.75rem, 0.28vw + 0.6rem, 1.5rem); */
    font-size: 15px;
    font-family: 'Satoshi';
    font-weight: 200;
    letter-spacing: 2px;
    margin: 0px 0px 10px 0px;
}
p, .smaller-p {
    
    font: var(--main-paragraph-font);
    letter-spacing: 3px;
    line-height: 1.5;
    margin: 0px;
    font-weight: 200;
}
.smaller-p {
    font-size: 12px;
}
a, button.navbar-link {
    font-family: 'Satoshi';
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    color: var(--main-text-color);
    letter-spacing: 4px;
    margin: 0px;
    padding: 0px;
    transition: 0.4s linear all; 
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
}
a.disabled {
    pointer-events: none;
    cursor: default;
  }
a:not(.regular-button):hover, button.navbar-link:hover {
    transform-origin: center;
    transform: scale(1.1, 1.1);
}

.regular-button {
    width: fit-content;
    align-self: center;
    color: var(--main-background);
    background-color: none;
    outline: var(--main-outline);
    border: none;
    text-decoration: none;
    font-family: 'Satoshi';
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 6px;
    padding: calc(var(--main-margin) / 2) calc(var(--main-margin) * 3);
    margin-top: calc(var(--main-margin) * 2);
    cursor: pointer; 
    transition: 0.5s;
    position: relative;
}
.regular-button-white {
    color: var(--light-color) !important;
    outline-color: var(--light-color) !important; 
}
.regular-button:hover {
    padding: calc(var(--main-margin) / 2) calc(var(--main-margin) * 5);
}

.outline {
    outline: var(--main-outline);
}

.grid {
    width: var(--section-width);
    display: grid;
}
.grid-2 {
    grid-template-columns: 1fr 1fr;
}
.grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
}
.cell {
    display: flex;
    flex-direction: column;
    align-items: end;
    text-align: end;
    padding: 40px;
    max-width: var(--section-width);
}
.icon {
    height: 20px;
    aspect-ratio: 1/1;
    width: auto;
    object-fit: contain;
}
.section {
    display: flex;
    flex-direction: column;
    padding: var(--section-padding);
    padding-top: var(--navbar-height);
    width: var(--section-width);
}
.grey {
    color: var(--grey-color);
}
.single-letter2 {
    position: relative;
    margin-right: 5px;
    top: 7rem;
}
.italic {
    font-style: italic;
}
.title-frame {
    overflow: hidden;
}
/* HD screens */
@media only screen and (min-height: 900px) and (min-width: 1500px){}
/* FullHD screens */
@media only screen and (min-height: 1000px) and (min-width: 2400px){
    h1 {
        font-size: 120px;
    }
    h4 {
        font-size: 28px;
    }
    h5 {
        font-size: 32px;
        letter-spacing: 12px;
        margin: 50px 0px 20px 0px;
    }
    h6 {
        font-size: 24px;
        letter-spacing: 5px;
        margin: 30px 0px 30px 0px;
    }
    p {
        font: var(--main-paragraph-font);
        letter-spacing: 5px;
    }
    .smaller-p {
        font-size: 20px !important;
    }
    a, button.navbar-link {
        font-size: 20px;
        letter-spacing: 6px;
    }
    .regular-button {
        width: fit-content;
        font-size: 20px;
        letter-spacing: 8px;
        padding: 20px 150px;
        margin-top: 20px;
    }
}
/* UltraHD screens */
@media only screen and (min-height: 2000px) and (min-width: 3500px) {
    h1 {
        font-size: 200px;
    }
    h4 {
        font-size: 32px;
    }
    h5 {
        font-size: 42px;
        letter-spacing: 12px;
        margin: 50px 0px 30px 0px;
    }
    h6 {
        font-size: 32px;
        letter-spacing: 5px;
        margin: 30px 0px 30px 0px;
    }
    p {
        font: var(--main-paragraph-font);
        letter-spacing: 5px;
    }
    .smaller-p {
        font-size: 28px !important;
    }
    a, button.navbar-link {
        font-size: 28px;
        letter-spacing: 10px;
    }
    .regular-button {
        width: fit-content;
        font-size: 25px;
        letter-spacing: 10px;
        padding: 20px 150px;
        margin-top: 30px;
    }
    
}
/* Small devices (phones, 770px and down) */
@media only screen and (max-width: 770px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .grid-3 {
        grid-template-columns: 1fr;
    }
    .cell {
        padding: 40px 0px;
    }
    .desktop-only {
        display: none;
    }
    .mobile-only {
        display: flex;
    }
    h1 {
        font-size: 48px;
    }
    .cs-main-container h1 {
        font-size: 36px;
        margin-left: 2rem;
    }
    h5 {
        font-size: 14px;
        margin: 0px 0px 10px 0px;
    }
    h6 {
        font-size: 12px;
    }
}

/* ------------------------------------------------------------------------------ */
/* --- --- --- --- --- --- --- --- --- NAVBAR --- --- --- --- --- --- --- --- --- */
/* ------------------------------------------------------------------------------ */
nav {
    position: sticky;
    top: 0px;
    z-index: 4;
    margin: 0px;
    padding: 0px;
    height: var(--navbar-height);
    width: var(--main-width);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--main-background);
}
.navbar-logo {
    height: calc(2 * var(--main-margin));
    width: auto;
    object-fit: contain;
    padding: var(--main-margin) calc(2 * var(--main-margin));
    vertical-align: middle;
}
.main-menu {
    display: flex;
    align-items: center;
    height: calc(4 * var(--main-margin));
}

.navbar-link, button.navbar-link {
    margin: 40px;
}

.navbar-link:last-child {
    margin-right: 80px;
}

.settings-div {
    display: none;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgb(240, 240, 240);
    position: absolute;
    right: 40px;
    top: var(--navbar-height);
    background-color: white;
}
.settings-div a {
    padding: 10px 50px;
}
/* HAMBURGER MENU */
.hamburger {
    display: none;
    padding: 0.75px 0px;
}
.hamburger .line{
    width: 35px;
    height: 1.5px;
    background-color: var(--main-text-color);
    display: block;
    margin: 6px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover{
cursor: pointer;
}

#hamburger-1.is-active .line:nth-child(2){
opacity: 0;
}

#hamburger-1.is-active .line:nth-child(1){
transform-origin: center center;
-webkit-transform: translateY(7.5px) rotate(45deg);
-ms-transform: translateY(7.5px) rotate(45deg);
-o-transform: translateY(7.5px) rotate(45deg);
transform: translateY(7.5px) rotate(45deg);
}

#hamburger-1.is-active .line:nth-child(3){
transform-origin: center center;
-webkit-transform: translateY(-7.5px) rotate(-45deg);
-ms-transform: translateY(-7.5px) rotate(-45deg);
-o-transform: translateY(-7.5px) rotate(-45deg);
transform: translateY(-7.5px) rotate(-45deg);
}

/* Small devices (phones, 770px and down) */
@media only screen and (max-width: 770px) {
    nav {
        display: grid;
        grid-template-columns: 4fr 1fr;
    }
    .hamburger {
        display: block;
        margin: 25px 20px;
    }
    .main-menu {
        grid-column: 1 /  3;
        height: fit-content;
        display: flex;
        flex-direction: column;
        border-left: none;
        background-color: var(--main-background);
    }
    .navbar-link, button.navbar-link {
        display: block;
        margin: 20px 0px;
        padding: 20px;
        border-bottom: var(--main-outline);
    }
    .navbar-link:last-child {
        margin-bottom: 0px;
        margin-right: 0px;
    }
    /* cancelling out a:hover animation just to be save and prevent potential weird behaviours */
    .navbar-link:hover, button.navbar-link:hover {
        transform: none;
    }

}
/* ---------------------------------------------------------------------------- */
/* --- --- --- --- --- --- --- --- --- HERO --- --- --- --- --- --- --- --- --- */
/* ---------------------------------------------------------------------------- */
.main-container {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#hero {
    justify-content: center;
    align-items: center;
    min-height: 100svh;
    padding-top: 0px;
    margin-top: calc(-1 * var(--navbar-height));
}
.video-container {
    z-index: 1; 
    position: relative;
    max-height: 100svh;
    overflow: hidden;
}
video {
    width: 100svw;
}
.general-overlay-div {
    position: absolute;
    top: 0px;
    z-index: 2;
    background-color: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
}
.general-overlay-div div {
    width: var(--main-width);
    min-height: 50svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.white-overlay-div {
    max-height: 50svh;
    justify-content: flex-end !important;
}
.text-overlay-div {
    color: var(--main-background);
    text-align:justify;
}

.overlay-logo {
    width: 100svw;
    height: auto;
    object-fit: contain;
    margin-top: -5px;
}
.we-make-websites-text {
    width: 100svw;
    height: auto;
    object-fit: contain;
    
}
.white-bg {
    background-color: var(--main-background);
    width: var(--main-width);
    flex-grow: 1;
    box-sizing: border-box;
    outline: 2px solid white;
}
.fill-height {
    /* flex-grow:1; */
    background-color: rgba(182, 19, 19, 0.3)
}
#hero h5 {
    text-align: center
}
#hero h6 {
    width: 35svw;
    text-align: justify;
    text-align-last: center;
}
/* Medium devices / tablets 770 - 1030 width*/
@media only screen and (max-width: 1030px) {
    video {
        height: 100svh;
        object-fit: cover;
    }
    #hero h5 {
        margin: 50px 0px;
    }
    #hero h6 {
        width: 60svw;
        margin: 0px 0px 50px 0px;
    }

}
/* Small devices (phones, 770px and down) */
@media only screen and (max-width: 770px) {
    #hero h5 {
        width: var(--section-width);
        text-align: center;
        margin: 10px 0px;
    }
    #hero h6 {
        width: var(--section-width);
        margin: 0px 0px 10px 0px;
    }
}

/* -------------------------------------------------------------------------------- */
/* --- --- --- --- --- --- --- --- --- SECTIONS --- --- --- --- --- --- --- --- --- */
/* -------------------------------------------------------------------------------- */
.section:nth-child(2n) .title-frame, .section:nth-child(2n+1) p:not(.smaller-p) {
    align-self: flex-start;
}
.section:nth-child(2n+1) .title-frame, .section:nth-child(2n) p:not(.smaller-p) {
    align-self: flex-end;
}
.title-frame {
    width: fit-content;
}
.section p {
    max-width: 40svw;
}
#services .grid {
    margin-top: var(--section-padding);
}
#services .cell h6 {
    margin-bottom: 20px;
}
#services .cell .smaller-p {
    text-align: flex-end !important;
}
.slider-wrapper {
    max-width: var(--section-width);
    overflow: scroll;
}
.projects-slider {
    display: flex;
    width: fit-content;
}
.projects-slider .cell:first-child {
    padding-left: 0px;
}
.project-image {
    width: 500px;
    height: 250px;
    object-fit: cover;
    margin-bottom: 30px;
}
.arrows-wrapper {
    margin-top: 30px;
    width: var(--section-width);
    display: flex;
    justify-content: flex-end;
}
.arrow-to-left, .arrow-to-right {
    height: 25px;
    width: auto;
    object-fit: contain;
    transform: rotate(90deg);
    cursor: pointer;
}
.arrow-to-right {
    transform: rotate(270deg);
    margin-left: 40px;
}
#lets-create {
    width: 100svw;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.overlay-text {
    position: absolute;
    z-index: 5;
    color: var(--light-color);
    text-align: center;
}
.bg-image {
    vertical-align: bottom;
    line-height: 1;
    width: 100svw;
    height: auto;
    z-index: 1;
    box-sizing: border-box;
}
/* HD screens */
@media only screen and (min-height: 900px) and (min-width: 1500px){}
/* FullHD screens */
@media only screen and (min-height: 1000px) and (min-width: 2400px){
    .project-image {
        width: 800px;
        height: 400px;
        margin-bottom: 40px;
    }
}
/* UltraHD screens */
@media only screen and (min-height: 2000px) and (min-width: 3500px) {
    .project-image {
        width: 1000px;
        height: 500px;
        margin-bottom: 50px;
    }
    .arrow-to-left, .arrow-to-right {
        height: 50px;
    }
}
/* Small devices (phones, 770px and down) */
@media only screen and (max-width: 770px) {
    .section p {
        max-width: var(--section-width);
    }
    .slider-wrapper {
        max-width: var(--section-width);
        overflow: hidden;
    }
    .projects-slider {
        flex-direction: column;
        width: var(--section-width);
        box-sizing: border-box;
    }
    
    .project-image, #projects .cell p {
        box-sizing: border-box;
        width: var(--section-width);
    }
    .arrows-wrapper {
        display: none;
    }
    .bg-image {
        height: 50svh;
        width: 100svw;
        object-fit: cover;
    }
}
/* ------------------------------------------------------------------------------ */
/* --- --- --- --- --- --- --- --- --- CONTACT --- --- --- --- --- --- --- --- --- */
/* ------------------------------------------------------------------------------ */
#contact .cell {
    align-items: flex-end;
    padding: 40px 0px;
}
form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* min-width: 350px; */
    width: 100%;
    max-width: 500px;
}
.contact-description {
    max-width: 500px;
}
input {
    background-color: transparent;
    outline: none;
    border: none;
    border-bottom: var(--main-outline);
    font: var(--main-paragraph-font);
    letter-spacing: 1.6px;
    margin: 0px 0px 30px 30px;
    color: var(--main-text-color);
    border-radius: 0px;
}
input[type="submit"] {
    background-color: var(--main-text-color);
    color: var(--main-background);
    outline: none;
}
input:last-child {
    grid-column: 1/3;
}
input:-webkit-autofill,
input:-webkit-autofill:focus {
    transition: background-color 0s 600000s, color 0s 600000s !important;
}
textarea {
    grid-column: 1/3;
    height: 100px;
    background-color: transparent;
    margin: 10px 0px 30px 30px;
    border: var(--main-outline);
    color: var(--main-text-color);
    font: var(--main-paragraph-font);
    letter-spacing: 2px;
    line-height: 2;
    border-radius: 0px;
}
textarea::placeholder {
    padding: 5px 10px 0px 10px;
}
textarea:focus {
    outline: none;
}
::placeholder {
    color: var(--main-text-color);
}
::-webkit-resizer {
    appearance: none;
}

/* HD screens */
@media only screen and (min-height: 900px) and (min-width: 1500px){
    input {
        font-size: 18px;
}
    textarea {
        height: 150px
    }
}
/* FullHD screens */
@media only screen and (min-height: 1000px) and (min-width: 2400px){
    form {
        width: 800px;
        max-width: 800px;
        align-self: start;
    }
    input {
        font-size: 24px;
        margin: 0px 0px 50px 50px;
}
    textarea {
        height: 200px;
        margin: 0px 0px 50px 50px;
    }
}
/* UltraHD screens */
@media only screen and (min-height: 2000px) and (min-width: 3500px) {
    form {
        width: 1000px;
        max-width: 1000px;
        align-self: start;
    }
    input {
        font-size: 36px;
        margin: 0px 0px 80px 80px;
}
    textarea {
        height: 400px;
        margin: 0px 0px 80px 80px;
    }
}
/* Medium devices / tablets 500px - 770px */
@media only screen and (max-width: 1030px) {
}
/* Small devices (phones, 500px and down) */
@media only screen and (max-width: 550px) {
    #contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 100px 0px;
    }
    #contact .half-left, #contact .half-right {
        align-self: center;
        align-items: center;
        justify-content: center;
        padding: 0px;
        width: 100%;
    }
    form {
        display: flex;
        flex-direction: column;
        margin-top: 50px;
        min-width: none;
        width: 100%;
        padding: 0px;
        gap: 20px;
    }
    input, textarea,  .regular-button  {
        /* width: calc((100svw - 10*var(--main-margin))/ 2); */
        box-sizing: border-box;
        width: var(--section-width);
        margin: var(--main-margin) 0px var(--main-margin) 0px;
        padding: 10px 0px;
    }
}

/* ------------------------------------------------------------------------------ */
/* --- --- --- --- --- --- --- --- --- FOOTER --- --- --- --- --- --- --- --- --- */
/* ------------------------------------------------------------------------------ */
#footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    bottom: 0px;
    margin: 0px;
    padding: 80px var(--section-padding) 40px var(--section-padding);
    width: var(--section-width);
    background-color: var(--main-text-color);
    color: var(--main-background);
    position: relative;
    outline: 2px solid var(--main-text-color);
    z-index: 2;
}
#footer a {
    color: var(--light-color);
}
.footer-row {
    display: flex;
    width: inherit;
    justify-content: space-between;
    align-items: center;
}
.footer-row:last-child {
    flex-direction: column;
    align-items: center;
}
#footer-menu {
    display: flex;
    padding: var(--main-margin) calc(var(--main-margin) * 2);
    justify-content: space-between;
    flex-grow: 2;
}
.footer-column {
    display: flex;
    flex-direction: column;
}
#footer .smaller-p {
    letter-spacing: 1px;
    margin: 8px 0px 0px 0px;
}
.footer-logo {
    height:  calc(var(--main-margin) * 2);
    width: fit-content;
    object-fit: contain;
    padding: 20px 100px 20px 0px;
    vertical-align: middle;
}
.footer-row:last-child .smaller-p {
    color: #5f5f5f;
}
#lets-create .video-container {
    max-height: 30svh;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.lets-create-overlay-div {
    position: absolute;
    z-index: 5;
    top: 0px;
    height: 100%;
    width: 100%;
    z-index: 2;
    /* background-color: rgba(255,255,255,0.1); */
    background-color: rgba(0,0,0,0.3);
    color: white;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
#lets-create video {
    width: 100svw;
}
/* HD screens */
@media only screen and (min-height: 900px) and (min-width: 1500px){}
/* FullHD screens */
@media only screen and (min-height: 1000px) and (min-width: 2400px){}
/* UltraHD screens */
@media only screen and (min-height: 2000px) and (min-width: 3500px) {
    #footer {
        padding: 100px var(--section-padding) 100px var(--section-padding);
    }
    .footer-logo {
        padding: 20px 200px 20px 0px;
    }
}

/* Small devices  */
@media only screen and (max-width: 770px) {
    #footer {
        width: var(--section-width);
        align-items: flex-start;
    }
    .footer-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-logo {
        height:  calc(var(--main-margin) * 4);
        padding: 20px;
        vertical-align: middle;
    }
    #footer-menu {
        flex-direction: column;
    }
    .footer-column {
        padding: 20px 0px;
    }
}
/* ------------------------------------------------------------------------------ */
/* --- --- --- --- --- --- --- --- --- THANKS --- --- --- --- --- --- --- --- --- */
/* ------------------------------------------------------------------------------ */
#thanks {
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 60svh;
    box-sizing: border-box;
}
#thanks p {
    align-self: center;
    margin-bottom: 20px;
}
.circle-logo {
    width: 50px;
    aspect-ratio: 1/1;
    height: auto;
    object-fit: contain;
    margin-bottom: 50px;
}
/* ------------------------------------------------------------------------------------- */
/* --- --- --- --- --- --- --- --- --- TERMS?PRIVACY --- --- --- --- --- --- --- --- --- */
/* ------------------------------------------------------------------------------------- */
.rules-text-div {
    padding: var(--section-padding) calc(3*var(--section-padding));
    text-align: left;
    align-items: flex-start;
}
.terms-time {
    font-style: italic;
    margin-bottom: 2svh !important;
}
.rules-text-div h1 {
    font-size: 2.5svh;
    letter-spacing: 2px;
    margin-bottom: 1svh;
}
/* Titles */
.rules-text-div h2 {
    font-size: 1.5svh;
    letter-spacing: 2px;
    margin: 2svh 0 0.5svh 0;
    text-transform: capitalize;
}
/* Welcome text */
.terms-welcome {
    font-size: 2vh;
    margin: 0.8svh 0;
}
.rules-text-div p, .rules-text-div li, .rules-text-div td {
    font-size: 1.2svh;
    letter-spacing: 1px;
    margin-bottom: 0.7svh;
}
.rules-text-div td {
    padding: 20px 20px 20px 0px;
}
/* ---------------------------------------------------------------------------- */
/* --- --- --- --- --- --- --- --- --- BLOG --- --- --- --- --- --- --- --- --- */
/* ---------------------------------------------------------------------------- */
.blog {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--main-margin);
}
.blog-title-frame {
    margin: 2svh 0;
}
.blog-title-frame:last-of-type {
    padding-top: 3svh !important;
}
.blog-title-frame h3 {
    font-family: Nohemi;
    font-weight: 500;
    text-transform: none;
}
.featured-articles {
    outline: 1px solid #efefef;
    outline-offset: var(--main-margin);
}
.blog a:hover {
    transform: scale(1.02,1.02);
}
/* image of the article preview */
.article img {
    width: 100%;
}
.article h4 {
    text-transform: none !important;
    letter-spacing: 2px;
    line-height: 1.5;
    margin-bottom: 1.5svh;
}
.article p {
    margin-top: 0.5svh;
}
.art-descr {
    font-size: 14px;
    margin-bottom: 1.5svh;
}
.article-image {
    object-fit: cover;
    width: 100%;
    height: auto;
    margin-bottom: 2svh;
}
/* FullHD screens */
@media only screen and (min-height: 1000px) and (min-width: 2400px){
    .art-descr {
    font-size: 16px;    
    }
}
/* UltraHD screens */
@media only screen and (min-height: 2000px) and (min-width: 3500px) {
        .art-descr {
    font-size: 24px;
    margin-bottom: 2svh;
    }
}
/* Small devices (phones, 500px and down) */
@media only screen and (max-width: 500px) {
    .blog {
        display: flex;
        flex-direction: column;
    }
}
/* ------------------------------------------------------------------------------ */
/* --- --- --- --- --- --- --- --- --- OTHERS --- --- --- --- --- --- --- --- --- */
/* ------------------------------------------------------------------------------ */

.section#page-not-found a {
    display: flex !important;
    margin-top: 0.5svh;
    width: fit-content;
}
/* --- SCROLLBAR --- */

/* width */
::-webkit-scrollbar {
    width: 0px;
    height: 0px;
    background-color: transparent;
}
  
/* Track */
::-webkit-scrollbar-track {
    width: 5px;
    background-color: transparent;
    background-clip: padding-box;
}

/* Handle */
/* not visible because of width - red left for monitoring */
::-webkit-scrollbar-thumb {
    width: 0px;
    background: transparent;
    background-clip: padding-box;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    width: 5px;
    background-color: var(--dark-brown);
    background-clip: padding-box;
}

@-moz-document url-prefix() { /* Disable scrollbar Firefox */
    html{
      scrollbar-width: none;
    }
    .slider-wrapper {
        scrollbar-width: none;
    }
  }
/* --- INSPECTIONS --- */
/* * {
  outline: 2px solid rgb(0, 217, 255) !important;
} */


/* -------------------------------------------------- */
/* --- --- --- --- --- ANIMATIONS --- --- --- --- --- */
/* -------------------------------------------------- */
/* .slide-in {
    transform: translateY(-50px);
    opacity: 0;
    transition: 1s;
    animation: slide 1s linear forwards;
}
@keyframes slide {
    0% {transform: translateY(-50px); opacity: 0;}
    100% {transform: translateY(0px); opacity: 1;}
} */
/* animation: name duration timing-function delay iteration-count direction fill-mode play-state; */
/* clouds-moving 180s linear infinite; 
animation: dekstopMessagePopup 6s ease-in-out forwards;
*/