/*
  1. Use a more-intuitive box-sizing model.
*/
*,
*::before,
*::after {
    box-sizing: border-box;
}

/*
  2. Remove default margin
*/
* {
    margin: 0;
}

*:focus::placeholder {
    opacity: 0;
}




html,
body {
    height: 100%;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}


/*
  6. Improve media defaults
*/
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

/*
  7. Remove built-in form typography styles
*/
input,
button,
textarea,
select {
    font: inherit;
    resize: none;
    overflow: hidden;
}


h1,
h2,
h3 {
    line-height: 1;
}

/*
  8. Avoid text overflows
*/
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
    user-select: none;
}

a {
    all: unset;
}

a,
button {
    cursor: pointer;
}

button>* {
    pointer-events: none;
}



/*
  9. Create a root stacking context
*/
#root,
#__next {
    isolation: isolate;
}




/*variables  */
:root {
    --ff-primary: 'Inter', sans-serif;
    --ff-secondary: 'IBM Plex Mono', monospace;
    --ff-secondary_ExtraLight: "BL Melody Mono ExtraLight", sans-serif;
    --ff-secondary_Bold: "BL Melody Mono Bold", sans-serif;
    --ff-secondary_Book: "BL Melody Book", sans-serif;

    /* Primary  colors */
    --clr-primary-1: #6587FF;
    --clr-primary-2: #E2562C;
    --clr-primary-3: #C6DAF7;
    --clr-primary-4: #3d57da;


    --clr-secondary-1: white;
    --clr-secondary-2: #09090b;
    --clr-secondary-3: #84889a;
    --clr-secondary-4: #FAFAFC26;
    --clr-secondary-5: #FAFAFC99;
    --clr-secondary-6: #1A202C;
    --clr-secondary-7: #1C1D22;
    --clr-secondary-8: #787C91;
    --clr-secondary-9: #2E3038;
    --clr-secondary-10: #fafafc;
    --clr-secondary-11: #d2d3da;
    --clr-secondary-12: #121316;

    --clr-case-1-code: 130, 128, 255;
    --clr-case-2-code: 238, 140, 247;
    --clr-case-3-code: 15, 25, 51;
    --clr-case-4-code: 242, 255, 97;

    --clr-case-1: rgb(var(--clr-case-1-code));
    --clr-case-2: rgb(var(--clr-case-2-code));
    --clr-case-3: rgb(var(--clr-case-3-code));
    --clr-case-4: rgb(var(--clr-case-4-code));


    --clr-bg-1: var(--clr-secondary-2);
    --clr-bg-2: var(--clr-secondary-3);
    --clr-btn-1: var(--clr-primary-1);

    --ff-clr-100: var(--clr-secondary-1);
    --ff-clr-300: var(--clr-secondary-3);
    --ff-clr-400: var(--clr-secondary-2);
    --ff-clr-500: var(--clr-secondary-1);

    --ff-size-200: 11px;
    --ff-size-300: 12px;
    --ff-size-400: 14px;
    --ff-size-500: 16px;
    --ff-size-600: 18px;
    --ff-size-650: 24px;
    --ff-size-700: 32px;
    --ff-size-800: 48px;
    --ff-size-900: 56px;
    --ff-size-1000: 73px;

    /* Font weight   */
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-bold: 700;

    /*Gap    */

    --gap-100: 10px;
    --gap-200: 16px;
    --gap-300: 24px;
    --gap-400: 30px;
    --gap-500: 32px;
    --gap-600: 40px;
    --gap-700: 48px;
    --gap-800: 56px;
    --gap-900: 60px;
    --gap-1000: 64px;
    --gap-1100: 80px;
    --gap-1200: 100px;

    --radius-main: 0.75rem;

    --line-height: 1.75rem;

    --padding-mobile: 0.0rem;
    --max-width: 1100px;
    --nav-height: 80px;
    --nav-bg-clr: hsla(207, 27%, 15%, 1);

    --transition: 0.3s;
}

/* Utilities ============================*/
.absolute {
    position: absolute;
}

.flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.flex-start {
    justify-content: start;
}

.flex-between {
    justify-content: space-between;
}

.flex-evenly {
    justify-content: space-evenly;
}

.flex-end {
    justify-content: end;
}

.flex-column {
    flex-direction: column;
}

.flex-column-center {
    display: flex;
    flex-direction: column;
    place-content: center;
}

.align-start {
    align-items: start;
}

.align-center {
    align-items: center;
}

.grid {
    display: grid;
}

.grid-center {
    place-content: center;
}


.fixed {
    position: fixed;
}

.border {
    border: 1px solid red;
}


/* Font weight----------------- */
.fw-regular {
    font-weight: var(--fw-regular);
}

.fw-medium {
    font-weight: var(--fw-medium);
}

.fw-bold {
    font-weight: var(--fw-bold);
}



/*Gap  */

.gap-0 {
    gap: 0rem;
}

.gap-100 {
    gap: var(--gap-100);
}

.gap-200 {
    gap: var(--gap-200);
}

.gap-300 {
    gap: var(--gap-300);
}

.gap-400 {
    gap: var(--gap-400);
}

.gap-500 {
    gap: var(--gap-500);
}

.gap-600 {
    gap: var(--gap-600);
}

.gap-700 {
    gap: var(--gap-700);
}

.gap-800 {
    gap: var(--gap-800);
}

.gap-900 {
    gap: var(--gap-900);
}

.gap-1000 {
    gap: var(--gap-1000);
}

.gap-1100 {
    gap: var(--gap-1100);
}

.gap-1200 {
    gap: var(--gap-1200);
}

button {
    all: unset;
    cursor: pointer;
    user-select: none;
}


.hidden {
    display: none;
}

.txt-clr-primary-1{
    color: var(--clr-primary-1);
}
.txt-clr-primary-2{
    color: var(--clr-primary-2);
}

/*======================================  */
/*======================================  */


html {
    display: grid;
    height: 100%;
    scroll-behavior: smooth;
}


body {
    /* position: relative; */
    display: grid;
    height: 100%;
    margin: 0rem 0rem 0rem;

    text-align: center;
    line-height: var(--line-height);
    font-family: var(--ff-primary);
    font-size: var(--ff-size-400);
    font-weight: 450;
    color: var(--ff-clr-100);

    background: var(--clr-bg-1);
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;

}


.body-wrapper {
    width: 100%;
    opacity: 0;
}

.wrapper {
    margin: 0 1rem;
    overflow: hidden;
}

main {
    display: grid;
}


menu {
    padding: 1rem 0rem;
    width: 100%;
    position: relative;
    z-index: 100;
    /* backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, .5); */
}


/* Mobile menu */

.mobile-menu {
    top: 0;
    left: 0;
    position: fixed;
    z-index: 200;
    width: 100vw;
    height: 100dvh;
    background: rgba(18, 19, 22, .9);

    text-align: left;
    padding: 1.5rem 1.5rem 3rem;
    display: flex;
    flex-direction: column;
    gap: var(--gap-700);
    color: var(--clr-secondary-3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition);
    transform: translate3d(0, 0, 0) translateY(-100%);
}

.mobile-menu-items {
    all: unset;
    font-size: var(--ff-size-500);
    gap: var(--gap-200);
    display: flex;
    flex-direction: column;

}

.mobile-menu a {
    width: 100%;
    white-space: nowrap;
    display: block;
}

.mobile-menu .btn {
    width: 100%;
}

.mobile-menu .horizontal-line {
    height: 1px;
    background: rgba(255, 255, 255, .1);
}

.menu-column-1 {
    display: grid;
    gap: 1rem;
    font-size: 1.8rem;
}

.menu-column-1 .btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-column-1 .btn svg {
    width: 1.5rem;
}


.burger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 201;
    gap: 0.4rem;
    position: fixed;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    top: 1rem;
    right: 1rem;
    border-radius: 50%;
    background: rgba(9, 9, 11, 0.9);
    transition: var(--transition);
}

.burger>* {
    pointer-events: none;
}

.burger.active {
    transform: rotate(-90deg);
}

/* 
#burger_line_1,
#burger_line_2,
#burger_line_3 {
    transition: var(--transition);
}



.burger:hover>#burger_line_1 {
    transform: rotate(-45deg) translate(-9px, -4px);
    width: 25%;
}

.burger:hover>#burger_line_2 {
    transform: translate(-3.5px, 0.5px);
    width: 40%;
}

.burger:hover>#burger_line_3 {
    transform: rotate(45deg) translate(-8px, 4.5px);
    width: 25%;
} */

.burger-line {
    width: 55%;
    height: 1px;
    background-color: var(--clr-secondary-3);
}








/* Sections */
section {
    z-index: 10;
    padding: 5rem 0rem;
    margin: 0;
    outline: 0px solid;
}

.logo {
    width: 102px;
    height: 20px;
    margin-bottom: 8px;
}




/* Header ---------------------------------------*/
header {
    z-index: 100;
    position: relative;
    padding: 0rem 0 5rem;
    border-radius: 2rem;
    overflow: hidden;
}

header .wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--gap-500);
    justify-content: space-between;
    align-items: center;
}


.hero-div {
    display: flex;
    flex-direction: column;
    gap: var(--gap-200);
    padding-top: 3rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: var(--fw-medium);
    letter-spacing: -0.125rem;
}

/* .hero-div h1 span {
    text-decoration: underline;
    text-decoration-thickness: 0.2rem;
    text-decoration-style: wavy;
    -webkit-text-decoration-style: wavy;
    text-decoration-color: var(--clr-primary-1);
    color: var(--clr-secondary-11);
} */

.btn-main {
    display: flex;
    gap: 0.5rem;
    font-size: var(--ff-size-400);
    border-radius: 10rem;
    background: white;
    color: #121316e5;
    width: max-content;
    padding: 0.23rem 1.35rem;
    line-height: 2rem;
    transition: var(--transition);
}

.btn-main p {
    transition: var(--transition);
}


.btn-main svg {
    width: 1.5rem;
    opacity: 0.5;
    transform: translateX(0px);
    transition: var(--transition);
}



.hero-left {
    z-index: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: auto;
    opacity: 0.8;
}

.hero-right {
    /* pointer-events: none; */
    position: fixed;
    z-index: 0;
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    opacity: 0.4;
}


/* Slider  ---------------------------------------*/

.slider-div {
    z-index: 0;
    width: 100%;
    height: 392px;
    /* border-radius: 1.3rem 0 0 1.3rem; */
    border-radius: 1.3rem;
    overflow: hidden;
    position: relative;
}

.slider {
    height: 392px;
    position: absolute;
    display: flex;
    gap: 2rem;

    animation: slider-move 60s linear infinite;
}

#static_card_full,
.slider img {
    opacity: 0;
    transition: all 2s ease;
    -webkit-transition: all 2s ease;
    -moz-transition: all 2s ease;
    -ms-transition: all 2s ease;
    -o-transition: all 2s ease;
}



@keyframes slider-move {
    to {
        transform: translateX(-3050px);
    }
}


.slider img {
    width: 533px;
    height: 392px;
    border-radius: 1.3rem;
    width: fit-content;
}


.slider-bg1 {
    position: relative;
    width: 200px;
    min-width: 200px;
    height: 392px;
    border-radius: 1.3rem;
    overflow: hidden;

}

#slider_bg1 {
    display: flex;
    position: absolute;
    width: 200px;
    height: 392px;
    border-radius: 0;
    transform: translateX(-200px);
    animation: slider-bg1-move 4.4s linear infinite;
}

#slider_bg1 img {
    width: 200px;
    height: 392px;
    border-radius: 0;
}

@keyframes slider-bg1-move {
    to {
        transform: translateX(0px);
    }
}



.hero-txt {
    text-align: left;
    font-size: var(--ff-size-600);
    line-height: 135%;
    letter-spacing: 0.0063rem;
    max-width: 600px;

}

.hero-txt span {
    color: var(--clr-secondary-3)
}

.icons-hero {
    display: flex;
    flex-direction: column;
    gap: var(--gap-300);
    align-self: start;
}

.icon-hero-div {
    display: flex;
    gap: var(--gap-100);
    align-items: center;
}

.icon-hero {
    display: flex;
    justify-content: center;
    background: #15181e;
    border-radius: 0.5rem;
    width: 2.5rem;
    aspect-ratio: 1;
}

.icon-hero svg {
    width: 1.2rem;
    opacity: 0.5;
}




/* Banners  ---------------------------------------*/
.banners {
    gap: var(--gap-800);
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    /* background-image: url("./img/banners_bg.jpg"); */
    padding-inline: 1rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--clr-secondary-12);
}


.banners h2 {
    color: var(--clr-secondary-1)
}

.banners-div {
    gap: var(--gap-200);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.banners .banner-div {
    padding-top: 5rem;
}

.banner {
    cursor: pointer;
    width: 150px;
    height: 125px;
    border-radius: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.banner>* {
    pointer-events: none;
}

.banner img {
    width: 150px;
    height: 125px;
}

.banner-btn {
    display: none;
}

.btn-over {
    position: absolute;
    top: 0;
    left: 0;
}

.ball {
    z-index: 1000;
    background-color: var(--clr-primary-2);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    position: absolute;
    top: -100px;
    left: 0;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    transition: transform .4s, border .4s;
    border: 2px solid transparent;
    pointer-events: none;
    display: none;
}

.ball-over {
    width: 30px;
    height: 30px;
    mix-blend-mode: none;
    border: 1px solid var(--clr-secondary-9);
    background-color: transparent;
}


.banner-btn button {
    z-index: 1;
    position: absolute;
    /* transform: translate(-168px, 100px); */
    width: 336px;
    height: 3rem;
    padding: 0;
    line-height: 3rem;
    border-radius: 1rem;
    /* transform: translate(-50%, +30px); */
    box-shadow: 0 5px 10px 2px rgba(0, 0, 0, .5);
    /* backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px); */
    background: rgba(255, 255, 255, 0.7);
    opacity: 1;
    transition: var(--transition);
    text-align: center;

}

.banner-btn button p {
    width: 100%;
}


.banner-fade {
    opacity: 0.4;
    transition: var(--transition);
}


/* Banners frame */

.banner-frame {
    display: grid;

    position: fixed;
    z-index: 120;
    width: 100%;
    height: 100%;
    place-content: center;
    align-items: center;
    display: none;
}

.iframe {

    background: #000;

}

.banner-iframe {
    width: 100%;
    z-index: 1;
}

.frame-bg {
    width: 100%;
    height: 100%;
    opacity: 1;
    background: rgba(0, 0, 0, 0.9);
}

.img-responsive {
    cursor: pointer;

}

.container {
    width: auto;
    height: auto;
}



.banner-arrows{
    pointer-events: none;
    width: 150px;
    height: 125px;
    background: #1C1D22;
}
.banner-arrows svg{
    width: 70px;
}

.banner-arrows .container{
   height: 125px;
   width: max-content;
   display: flex;
   align-items: center;
   gap: 1rem;
   transform: translateX(-86px);
   animation: bannerArrowAnim 2s linear infinite ;
}

@keyframes bannerArrowAnim {
    100%{
        transform: translateX(0);
    }
}


/* Static ads */
.static-ads-section {
    display: flex;
    flex-direction: column;
    gap: var(--gap-800);
    background-color: var(--clr-secondary-12);
    padding-bottom: 8rem;
}

.static-gallery {
    width: 100%;
    display: flex;
    justify-content: center;
}

.static-gallery .wrapper {
    position: relative;
    width: 100%;
    display: flex;

    flex-direction: column;
    gap: var(--gap-200);
    overflow: hidden;
}


.static-ads-div {
    position: relative;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: left;
    /* justify-self: center; */
    overflow-x: scroll;
}

.static-ads-div::-webkit-scrollbar {
    display: none;
}

.static-ads {
    transition: 1s;
    width: max-content;
    height: max-content;
    display: flex;
    position: absolute;
    justify-content: left;
    gap: var(--gap-200);
    /* justify-self: center; */

}



.static-card-full {
    overflow: hidden;
    border-radius: 1.5rem;
}

.static-card {
    opacity: 1;
    pointer-events: all;
    cursor: pointer;
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: var(--transition);

}

/* .static-card:nth-child(10n+){
    display: none;
} */

.static-card>* {
    pointer-events: none;
}

.static-card img {
    min-width: 60px;
    height: 60px;
}

.static-card-selected {
    pointer-events: none;
    filter: grayscale(1);
    opacity: 0.3;
    transform: scale(0.9);
}

.static-card:hover {

    filter: grayscale(0);
    transform: translateY(-1px);
}

.card-blur>* {

    filter: brightness(50%);
    -webkit-filter: brightness(50%);


}


/* Storyboard */
.storyboard {

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gap-800);
    background: var(--clr-secondary-7);

}

.storyboard .wrapper {
    cursor: pointer;
    padding: 0 1rem;
    width: 100%;
    display: flex;
    gap: var(--gap-100);
    justify-content: start;
    overflow-x: scroll;
}

.storyboard .wrapper {
    overflow-x: scroll;
    overscroll-behavior-x: none;
    scroll-behavior: auto;
    margin-bottom: calc(var(--scrollbar-height) * -1);
    padding-bottom: var(--scrollbar-height);
    user-select: none;
}

.storyboard .wrapper::-webkit-scrollbar {
    display: none;
}

.storyboard img {
    height: 400px;
    border-radius: 1rem;
}

.storyboard .wrapper svg {
    max-width: 2rem;
    min-width: 2rem;
    opacity: 0.4;
}

.frame {
    position: relative;
    resize: both;
    /* width: max-content; */
}

/* Info */
.info {
    display: flex;
    justify-content: center;
    padding: 6rem 0rem 0;
    background: var(--clr-secondary-1);
}

.info .wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--gap-1000);
}


.section-header span {
    color: var(--clr-secondary-1);
    font-size: var(--ff-size-700);
    font-weight: 600;
    line-height: 2.5rem;
}

.info .section-header span {
    color: var(--clr-secondary-12);
    font-size: var(--ff-size-700);
    font-weight: 600;
}


h2 {
    color: var(--clr-secondary-1);
    font-size: var(--ff-size-700);
    font-weight: 600;
}


.info h3 {
    font-size: min(10vw, 48px);
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: var(--gap-400)
}


.card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 550px;
    text-align: left;
    border-radius: 2rem;
    overflow: hidden;
    background: var(--clr-secondary-2);
    padding: 3rem 0 3rem 2rem;
    color: var(--clr-secondary-1);
}

.card-header {
    display: flex;
    flex-direction: column;
    gap: var(--gap-300);

}

.card-header svg {
    width: 2rem;
    height: 2rem;
}

.card-header p {
    font-size: var(--ff-size-800);
}

.card-header span {
    font-size: var(--ff-size-500);
    max-width: 400px;
}

.btn-primary {
    color: var(--clr-secondary-1);
    background: var(--clr-primary-2);
}

.card-img1 {
    z-index: 0;
    width: 350px;
    position: absolute;
    transform: translateX(-100%);
    border-radius: 2rem 0 0 2rem;
    overflow: hidden;
}

.card .flex {
    position: relative;
    z-index: 100;
}

.section-header {
    display: grid;
    gap: var(--gap-200);
}


.info-cards .card:nth-child(2) {
    color: var(--clr-secondary-12);
    background: var(--clr-primary-3);
}

.info-cards .card:nth-child(2) .btn-main {
    background: var(--clr-primary-4);
}

.btn-primary-2 {
    color: var(--clr-secondary-1);
    background: var(--clr-primary-4);
}

/* Clients  ---------------------------------------*/

.clients {
    display: flex;
    justify-content: center;
    background-color: var(--clr-secondary-12);
}

.clients .wrapper {
    max-width: 1000px;
    gap: var(--gap-600);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.clients h2 {
    color: var(--clr-secondary-1);
}

.clients h2 span {
    color: var(--clr-secondary-3);
    font-size: var(--ff-size-650);
}

.clients-div {
    gap: var(--gap-400);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

}

.client {
    width: 80px;
    height: 40px;
    border-radius: 1rem;
    overflow: hidden;
    opacity: 0.3;
    transition: var(--transition);
}

.client img {
    width: 80px;
    height: 40px;
}




/* Platforms  ---------------------------------------*/

.platforms {
    position: relative;
    display: flex;
    justify-content: start;
    height: 6rem;
    background: var(--clr-secondary-1);
    overflow-x: scroll;
    overscroll-behavior-x: none;
    scroll-behavior: auto;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    /* -webkit-mask-image: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0.3) 100%);
    mask-image: linear-gradient(to right, white 0%, white 10%, 0% rgba(255, 255, 255, 0.3) 100%); */

}

.platforms::-webkit-scrollbar {
    display: none;
    /* for Chrome, Safari, and Opera */
}

.platforms-div {
    position: absolute;
    display: flex;
    gap: var(--gap-400);

}

.platforms-div img {
    /* filter: brightness(50%); */
    min-width: 113px;
    height: 56px;
}



/* Footer */

.footer {
    z-index: 1;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    color: var(--clr-secondary-2);
    text-align: left;
    /* background-color: var(--clr-secondary-12); */

}

.footer .wrapper {
    width: 100%;
    border-radius: var(--radius-main);
    background: var(--clr-secondary-7);
    padding: 2.5rem 2rem 0rem;
    margin-bottom: 1rem;

}

.footer-top {
    display: flex;
    gap: var(--gap-400);
    flex-direction: column;
}

.footer h2 {
    color: var(--clr-secondary-10);
    line-height: 2.5rem;
    margin-bottom: -10px;
}

.footer-header p {
    font-size: var(--ff-size-500);
    color: var(--clr-secondary-8);
}

.footer-header {
    display: flex;
    flex-direction: column;
    gap: var(--gap-200);
    max-width: 380px;
}

.footer input {
    all: unset;
    background: var(--clr-secondary-9);
    max-width: 280px;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    color: var(--clr-secondary-5);
}


.shevron {
    font-size: var(--ff-size-300);
    font-family: var(--ff-secondary);
    font-weight: 500;
    text-transform: uppercase;
    color: var(--clr-secondary-3);
    letter-spacing: 1px;

}

.footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap-400)
}

.footer-menu button {
    color: var(--clr-secondary-11)
}

.footer-menu-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100px;
}

.footer-line {
    margin-top: 5rem;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, .1);
}


/* footer bottom */
.footer-bottom {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: center;
    font-size: var(--ff-size-300);
    font-weight: 450;
    padding: 2rem 0;
    color: var(--clr-secondary-10);

}

.add-links {
    display: flex;
    gap: var(--gap-200);
    justify-content: center;
    flex-wrap: wrap;
}

.all-rights {
    color: var(--clr-secondary-4);
}

.social-logos {
    gap: var(--gap-200);
    display: flex;
    align-items: center;
    justify-self: flex-end;
}

.social-icon{
}
.social-icon svg {
    width: 1.7rem;
    opacity: 0.3;
    transition: var(--transition);
}

.social-icon:hover>svg {
    transform: scale(1.2);
    opacity: 0.8;
}

.zhuravskyi-com {
    font-weight: 600;
}

.btn {
    transition: var(--transition);
}

.btn:hover {
    color: var(--clr-secondary-1);
}

.btn:active {
    /* color: var(--clr-secondary-12); */
}


a {
    transition: var(--transition);
}





/* Prices */

.prices .wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--gap-600);
}

.prices .section-header h2 {
    color: var(--clr-secondary-11)
}

.prices .cards {
    display: flex;
    gap: var(--gap-600);
    flex-direction: row;
    height: 100%;
    max-width: 900px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.prices .card {
    /* cursor: pointer; */
    max-width: 280px;
    min-width: 200px;
    height: 400px;
    text-align: center;
    color: var(--clr-secondary-12);
    display: flex;
    flex-direction: column;
    gap: var(--gap-200);
    background: var(--clr-primary-3);
    border-radius: 1rem;
    padding: 3rem 2rem;
    transition: var(--transition);
}

.prices .card>* {
    /* pointer-events: none; */
}



.prices .card-name {
    font-size: var(--ff-size-600);
    font-weight: 600;
}

.prices .card-header span {
    font-size: var(--ff-size-800);
    font-weight: var(--fw-bold);
    letter-spacing: -2px;
    color: var(--clr-primary-4);
    transition: var(--transition);
}

.prices .card-bottom {
    gap: var(--gap-400);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.prices .card-items p {
    font-size: var(--ff-size-400);

}

.prices .card-item {
    gap: var(--gap-100);
    display: flex;
    align-items: center;
    padding: 0.4rem;
    border-top: 1px solid rgba(0, 0, 0, .1);
}

.prices .card-item:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.prices .card-item svg,
.prices .card-item img {
    width: 1rem;
    height: 1rem;
}

.prices .card:nth-child(2) {
    height: 400px;
    color: var(--clr-secondary-11);
    position: relative;
    z-index: 1;
    display: flex;
    gap: var(--gap-200);
    background: var(--clr-primary-4);
    transform: scale(1);
}

.prices .card:nth-child(2) span {

    color: var(--clr-secondary-1);
}

.prices .card .btn-main {
    transition: 0.2s;
}

/* Card Hover */
.prices .card:hover {
    transform: translateY(-2px);
}

.prices .card:hover>.card-header span {
    transform: scale(1.1);
}

.prices .card:hover>.card-bottom .btn-main {
    /* color: var(--clr-primary-3); */
    transform: translateY(+3px);
}

.prices .card:hover>.card-bottom p {
    /* color: var(--clr-primary-3); */
    transform: translateY(+2px);
}


.btn-bg2 {
    background: var(--clr-primary-4);
}

.currency{
    display: flex;
    /* gap: var(--gap-100); */
    justify-content: center;
    height: 4rem;
}
.btn-currency{
    pointer-events: all;
    height: 1.8rem;
    padding: 0rem 1rem;
    font-size: var(--ff-size-300);
    color: var(--clr-secondary-3);
    background: rgba(0, 0, 0, 0);
    transition: var(--transition);
    border-radius: 50rem;
    border: 1px solid rgba(0, 0, 0, 0);
}

.btn-currency:hover{
    color: var(--clr-secondary-1);
}

.btn-currency-selected{
    pointer-events: none;
    color: var(--clr-secondary-1);
    border: 1px solid var(--clr-secondary-3);
}



/* Tablet */
@media (min-width: 500px) {
    .static-gallery .wrapper {
        width: 500px;
        justify-self: center;
    }

}

@media (min-width: 768px) {

    .static-gallery .wrapper {
        width: 600px;
        justify-self: center;
    }

    .storyboard .wrapper {
        gap: var(--gap-100);
        justify-content: center;
    }

    .wrapper {
        margin: 0 2.5rem;
    }

    header {
        text-align: left;
        padding-top: 0.5rem;
    }

    header .wrapper {
        align-items: start;
    }

    .hero-div {
        max-width: 1000px;
    }

    .hero-right {
        display: block;
    }

    h1 {
        font-size: 5rem;
    }

    .burger {
        display: none;
    }

    .menu,
    .menu2 {
        display: block;
        color: #FAFAFCBF;
    }

    menu {
        display: flex;
        justify-content: space-between;
        font-size: var(--ff-size-400);
        color: var(--clr-secondary-5);
        font-weight: 450;

        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: transparent;
    }

    menu button {
        cursor: pointer;
    }

    .menu {
        display: flex;
        align-items: center;
        gap: var(--gap-200);
    }

    .menu2 {
        display: flex;
        align-items: center;
        gap: var(--gap-200);
    }

    .hero-txt {
        width: 70%;
    }

    .menu .btn-main {
        color: var(--clr-secondary-1);
        background: var(--clr-secondary-4);
    }

    .menu span {
        font-weight: 100;
        font-size: var(--ff-size-300);
    }

    .card-img1 {
        display: block;
    }

    .info h2 {
        font-size: var(--ff-size-800);
    }

    .info .shevron {
        /* text-align: left; */
    }


    /* banners */
    .banners {
        display: grid;
    }

    .banners-div {
        gap: var(--gap-800);
    }

    .banner {
        width: 336px;
        height: 280px;
    }
    .banner-arrows,
    .banner img {
        width: 336px;
        height: 280px;
    }
    .banner-arrows .container{
        height: 280px;
        gap: 2rem;
        transform: translateX(-182px);
        animation: bannerArrowAnim 3s linear infinite ;
    }
    .banner-arrows svg{
        width: 150px;
    }

    .banner-btn {
        width: 336px;
        transform: translateY(280px);
    }

    .banner img {
        transition: var(--transition);
    }

    /* .banner:hover > img {
        transform: translateY(-10px);
    } */

    .banner:hover {
        transform: translateY(+2px);
    }



    /* .static-ads {
        display: flex;
        width: 730px;
    } */



    /* Prices */
    .prices .cards {
        flex-wrap: nowrap;
        align-items: center;
        gap: var(--gap-200);
    }

    .prices .card:nth-child(2) {
        height: 430px;
        /* Footer */
    }

    .footer-menu {
        flex-direction: row;
        gap: var(--gap-800)
    }

    .footer-bottom {

        padding: 1rem 0;
        flex-direction: row;
    }

}

@media (min-width: 1000px) {

    .storyboard .wrapper {
        gap: var(--gap-200);
        justify-content: center;
    }

    button:hover {
        opacity: 1;
    }

    
    .btn:hover {
        color: var(--clr-secondary-1);
    }

    a:hover {
        color: var(--clr-secondary-3);
    }

    .btn-main:hover {
        /* color: var(--clr-secondary-1); */
        transform: translateX(1px);
    }

    /* Btn arrow */
    .btn-arrow:hover {
        transform: translateX(3px);
    }

    .btn-arrow:hover>svg {
        transform: translateX(20px);
        opacity: 0;
    }

    .btn-arrow:hover>p {
        transform: translateX(15px);
    }

    .client:hover {
        opacity: 0.9;
        transition: 0.1s;
    }

    .wrapper {
        margin: 0 2.5rem;
    }

    .ball {
        display: block;
    }


    .icons-hero {
        gap: var(--gap-600);
        flex-direction: row;
        align-items: center;
    }


    .platforms {
        justify-content: center;
    }

    .prices .wrapper {
        display: flex;
        flex-direction: column;
        gap: var(--gap-600);
        align-items: center;
    }

    .prices .cards {
        width: 900px;
        gap: var(--gap-400);
    }



    /* Footer */
    .footer-top {
        flex-direction: row;
        justify-content: space-between;
    }

}

@media (min-width: 1280px) {
    .static-gallery .wrapper {
        justify-content: center;
    }

    .static-card-full,
    .static-card-full img {
        width: 600px;
        height: 600px;
    }

    .static-gallery .wrapper {
        width: 100%;
        flex-direction: row;
        gap: var(--gap-600);
        overflow: hidden;
    }

    .static-ads-div {
        position: relative;
        width: 450px;
        height: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: left;

    }

    .static-ads {
        width: 450px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: var(--gap-300);

    }

    .static-card,
    .static-card img {
        min-width: 130px;
        height: 130px;
    }

    .clients .wrapper {
        gap: var(--gap-800);

    }

    .client,
    .client img {
        width: 113px;
        height: 56px;
    }

    .contacts .header {
        padding: 0 4rem;
    }

}


@media (min-width: 1500px) {
    main {
        justify-content: center;
    }

    .storyboard .wrapper,
    .info .wrapper,
    .banners .wrapper,
    .clients .wrapper,
    .footer .wrapper {
        width: 1400px;
    }

    /* .wrapper {
        width: 1400px;
    }

    #header .wrapper{
        width: 100%;
    } */

    .static-ads {
        justify-content: center;
    }

    .card-img1 {
        transform: translateX(-70%);
    }


    .info-cards {
        flex-direction: row;
    }

    /* .static-gallery .wrapper {}

    .static-ads-div {
        /* height: 70px;
        justify-content: center; 
    }*/

    /* .static-card,
    .static-card img {
         width: 70px;
        height: 70px; 
    } */

    .contacts {
        width: 100%;
        display: flex;
        justify-content: center;
        justify-self: center;
    }

    .storyboard .wrapper {
        padding: 0;
        justify-self: center;
        justify-content: space-between;
    }

    .storyboard img {
        height: 600px;
    }
}