@charset "UTF-8";

@font-face {
    font-family: 'Geologica';
    src: url('Fonts/Geologica-VariableFont.ttf') format("truetype-variations");
    font-weight: 1 999;
}

html {
    scroll-behavior: smooth;
}

.customPadding1{
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.clear 
    { 
    clear:both; 
} 

.right 
    { 
    float: right; 
} 

.left 
    { 
    float: left; 
}

:root * {
    box-sizing: border-box;
}

#wrapper {  
    width:980px;  
    text-align:left;   
    margin-left:auto;  
    margin-right:auto;  
    background-color: #FFFFFF; 
}

/* Loading */

.preloader {
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: black;
    position: fixed;
    z-index: 50;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ball {
    padding: 100%;
    transform: scale(1);
    background-color: #e6e7e8;
    border-radius: 100%;
}
.ballIcon{
    background-image: url("Img/startLogo.png");
    width: 120px;
    height: 120px;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 1;
}
.ballLoadAnim{
    animation: loadingFade 1s infinite linear;
}

@keyframes loadingFade {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

@keyframes lineColorize {
  0% { background-color: #38363a; }
  0% { background-color: #ed1d2b; }
  100% { background-color: #38363a; }
}

@keyframes fadeOut {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

@-moz-keyframes fadeOut {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

@-webkit-keyframes fadeOut {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

@-o-keyframes fadeOut {
  0% { opacity: 1; }
  100% { opacity: 0; }
}
@keyframes fadeIn {
  100% { opacity: 1; }
  0% { opacity: 0; }
}

@-moz-keyframes fadeIn {
  100% { opacity: 1; }
  0% { opacity: 0; }
}

@-webkit-keyframes fadeIn {
  100% { opacity: 1; }
  0% { opacity: 0; }
}

@-o-keyframes fadeIn {
  100% { opacity: 1; }
  0% { opacity: 0; }
}

@keyframes scaleup {
    0% { transform: scale(0); }
    50% { transform: scale(1); }
    100% {
        transform: scale(1);
        padding: 100%;
    }
}

@-moz-keyframes scaleup {
    0% { transform: scale(0); }
    50% { transform: scale(1); }
    100% {
        transform: scale(1);
        padding: 100%;
    }
}

@-webkit-keyframes scaleup {
    0% { transform: scale(0); }
    50% { transform: scale(1); }
    100% {
        transform: scale(1);
        padding: 100%;
    }
}

@-o-keyframes scaleup {
    0% { transform: scale(0); }
    50% { transform: scale(1); }
    100% {
        transform: scale(1);
        padding: 100%;
    }
}

@keyframes scaledown {
    0% { transform: scale(1); }
    100% {
        transform: scale(0);
    }
}

@-moz-keyframes scaledown {
    0% { transform: scale(1); }
    100% {
        transform: scale(0);
    }
}

@-webkit-keyframes scaledown {
    0% { transform: scale(1); }
    100% {
        transform: scale(0);
    }
}

@-o-keyframes scaledown {
    0% { transform: scale(1); }
    100% {
        transform: scale(0);
    }
}

@keyframes scalemult {
    0% { transform: scale(1); }
    100% { transform: scale(3); }
}

@-moz-keyframes scalemult {
    0% { transform: scale(1); }
    100% { transform: scale(3); }
}

@-webkit-keyframes scalemult {
    0% { transform: scale(1); }
    100% { transform: scale(3); }
}

@-o-keyframes scalemult {
    0% { transform: scale(1); }
    100% { transform: scale(3); }
}

@keyframes fadeFromUp{
    0% {
        opacity: 0;
        transform: translateY(75px);
        visibility: hidden;
        backdrop-filter: blur(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
        backdrop-filter: none;
    }
}

/* Main Section */

.text-base{
    font: 'Geologica';
}

div {
    display:block;
}

body {
    font: 50px 'Geologica';
    background-color: #ececed;
    text-align:center;
    margin: 0;
}

h1 {
    font-weight: 900;
    font-size: 75px;
    margin-bottom: 2rem;
}

p {
    font-weight: 100;
    font-size: 44px;
    margin-bottom: 2rem;
}

:root {
    --header-height: 90px;
    --max-width: 80vw;
    --slidePerView: 4;
}

:root a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color : #ed1d2b;
    transition: 0.25s;
}

.masterSec{
    margin-top: var(--header-height);
    display: grid;
}

/* Header */
.header a {
    color : inherit;
    transition: none;
}
.header {
    z-index: 10;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    width: calc(var(--max-width) + 2px);
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.75rem calc((var(--header-height) - 55px) / 2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    background-color: rgba(0.118,0.118,0.118,0.925);
    overflow: hidden;
}

.headerNav {
    display: flex;
    gap: 3rem;
    flex-grow: 1;
    justify-content: start;
    padding: 0 calc((var(--header-height) - 55px) / 2 + 1rem);
}

.headerNav a {
    color: rgba(230, 231, 232, 0.5);
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.headerNav a:hover {
    color: #e6e7e8;
}

.mobile-trigger {
    display: none;
}

.mobile-trigger img {
    width: calc(20px + 0.5rem);
    height: calc(20px + 0.5rem);
    cursor: pointer;
}

.mobile-trigger-close {
    display: block;
}

.mobile-trigger-close img {
    width: calc(20px + 0.5rem);
    height: calc(20px + 0.5rem);
    cursor: pointer;
}

.launchBtn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(230, 231, 232, 0.5);
    padding: 0.5rem 0.7rem;
    border-radius: 2px;
    color: #1e1e1e;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.launchBtn img {
    width: 20px;
    height: 20px;
    margin-right: 0.1rem;
}

.launchBtn:hover {
    background-color: #e6e7e8;
}

.headerLineTop{
    background-color: #1e1e1e;
    left: 0;
    bottom: 0;
    height: 1px;
    position: absolute;
    width: 100%;
}

.headerLogo{
    background: url("Img/r3_xSmall.png") no-repeat 50%/contain;
    width: 55px;
    height: 55px;
    opacity: 1;
    position: relative;
    top: 0;
    left: 0;
    cursor: pointer;
    flex-shrink: 0;
}
.headerLogo:after, .headerLogo:before {
    background: url("Img/r3_xSmall.png") no-repeat 50%/contain;
    content: "";
    display: block;
    width:100%;
    height: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: filter .1s;
    pointer-events: none;
}
.headerLogo:before {
    z-index:-1
}
.headerLogo:after {
    z-index:-2
}
.headerLogo:hover:after, .headerLogo:hover:before {
    opacity: 0.5
}
.headerLogo:hover:before {
    animation: headerLogoAnim1 .4s 5 both;
    filter:invert(55%) sepia(80%) saturate(301%) hue-rotate(148deg) brightness(93%) contrast(91%)
}
.headerLogo:hover:after {
    animation: headerLogoAnim2 .4s 5 both;
    filter:invert(48%) sepia(83%) saturate(4695%) hue-rotate(329deg) brightness(84%) contrast(107%)
}
.headerLogo.animate:before {
    opacity: 0.5;
    animation: headerLogoAnim1 0.4s 5 both;
    filter: invert(55%) sepia(80%) saturate(301%) hue-rotate(148deg) brightness(93%) contrast(91%);
}
.headerLogo.animate:after {
    opacity: 0.5;
    animation: headerLogoAnim2 0.4s 5 both;
    filter: invert(48%) sepia(83%) saturate(4695%) hue-rotate(329deg) brightness(84%) contrast(107%);
}
@keyframes headerLogoAnim1 {
    0% {
        transform:translate(0)
    }

    20% {
        transform:translate(-2px, 3px)
    }

    40% {
        transform:translate(-1px, -1px)
    }

    60% {
        transform:translate(1px, 2px)
    }

    80% {
        transform:translate(1px, 1px)
    }

    to {
        transform:translate(0)
    }
}
@keyframes headerLogoAnim2 {
    0% {
        transform:translate(0)
    }

    20% {
        transform:translate(1px, -2px)
    }

    40% {
        transform:translate(-1px, 1px)
    }

    60% {
        transform:translate(-1px, -1px)
    }

    80% {
        transform:translateY(1px)
    }

    to {
        transform:translate(0)
    }
}

.d-none {
    display: none;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    background-color: #1e1e1e;
    transform: translateY(-100%);
    visibility: hidden;
    transition: all 300ms ease;
    padding: 4rem calc((100vw - var(--max-width)) / 2 - 7px);
    text-align: left;
    text-decoration: none;
    touch-action: none;
}

.mobile-menu .header {
    background-color: #1e1e1e;
}

.mobile-menu.active {
    transform: translateY(0);
    visibility: visible;
}

.mobile-menu-overlay {
    display: flex;
    flex-direction: column;
    padding: 0 calc((var(--header-height) - 55px) / 2);
    margin-top: calc(var(--header-height) / 2);
    align-content: space-between;
    height: 100%;
}

.mobile-menu-overlay .launchBtn {
    display: flex;
    margin-bottom: 1rem;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.mobile-menu-nav a {
    color: rgba(230, 231, 232, 0.5);
    text-decoration: none;
    font-size: 28px;
}

.mobile-menu-nav a:hover {
    color: rgba(230, 231, 232, 1);
}

/* Home */

.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('Img/hero_2000x865.png'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    height: 75vh;
    width: auto;
    color: #000;
}

.content {
    width: calc(var(--max-width) / 3);
}

.content h1, .content p {
    margin: 0 0 0.5rem;
}

.content h1{
    margin-top: 6rem;
}

.content a{
    color: #e6e7e8;
}

.content img{
    width: 70%;
    height: auto;
}

.exploreBtn {
    display: inline-block;
    background-color: #DB3431FF;
    font-weight: 100;
    font-size: 22px;
    padding: 10px 20px;
    margin-bottom: 0;
    margin-top: 10rem;
    border-radius: 2px;
}

/* Video Bg */

.video-item {
    width: 100%;
    position: absolute;
    z-index: 0;
}

*,:after,:before {
    box-sizing: border-box;
}

.video-item:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.7;
}

.video-item video  {
    height: 100% !important;
    width: 100%;
    object-fit: cover;
}

/* Swiper */

.swiper {
    width: 100%;
    padding: 2rem 0;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    flex-shrink: 0;
    width: 250px;
    height: auto;
    background: #1e1e1e;
    border: 1px solid #38363a;
    border-radius: 2px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
}

.swiper-pagination {
    bottom: 10px;
}

/* Grid Section */

@keyframes movePattern {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 1000px 1000px;
    }
}

.gridBaseLink{
    background: #e6e7e8;
    grid-gap: 0;
    display: grid;
    grid-template-columns: repeat(1,minmax(0,1fr));
    margin: 0 auto;
    padding: 4rem calc((100vw - var(--max-width)) / 2 - 7px);
    width: 100%;
    text-align: left;
    position: relative;
    overflow: hidden;
}
.gridBaseLink h3 {
    color: #1e1e1e;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
}
.gridBaseLink h4 {
    color: #e6e7e8;
    font-size: clamp(1rem, 2vw, 7rem);
    font-weight: 700;
    line-height: 1;
    margin-block-start: 0.2em;
    margin-block-end: 0.3em;
    padding-left: 1rem;
}
.gridBaseLink h5 {
    color: rgba(230, 231, 232, 0.6);
    font-size: clamp(1rem, 1vw, 7rem);
    font-weight: 500;
    line-height: 1;
    margin-block-start: 0.2em;
    margin-block-end: 0.3em;
    padding-left: 1rem;
}
.gridTableLink{
    grid-gap: 1.5rem;
    display: grid;
    margin-bottom: 2rem;
    grid-template-columns: repeat(6,minmax(0,1fr));
}
.gridButton{
    grid-column: span 2;
    border-radius: 2px;
    display: flex;
    flex-flow: column;
    overflow: hidden;
    height: 100%;
    aspect-ratio: 3 / 1;
    justify-content: center;
}

.gridBase{
    background: #1e1e1e url("Img/r3Pattern.png") repeat left top;
    grid-gap: 0;
    display: grid;
    grid-template-columns: repeat(1,minmax(0,1fr));
    margin: 0 auto;
    padding: 4rem calc((100vw - var(--max-width)) / 2 - 7px);
    width: 100%;
    font-family: 'Geologica', serif;
    text-align: left;
    position: relative;
    overflow: hidden;
    animation: movePattern 30s linear infinite;
}
.gridBase::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(11, 11, 11, 0.6);
    z-index: 1;
}
.gridSec{
    display: flex;
    flex-flow: column;
    position: relative;
    z-index: 2;
}
.gridTitleSec{
    margin: 0 0 1.5rem;
}
.gridTable{
    grid-gap: 1.5rem;
    display: grid;
    margin-bottom: 2rem;
    grid-template-columns: repeat(6,minmax(0,1fr));
}
.gridTableG{
    grid-gap: 1.5rem;
    display: grid;
    margin-bottom: 2rem;
    grid-template-columns: repeat(10,minmax(0,1fr));
}
.gridSelf{
    grid-column: span 2;
    background: #1e1e1e;
    border: 1px solid #38363a;
    border-radius: 2px;
    display: flex;
    flex-flow: column;
    overflow: hidden;
}
.gridImg{
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    position: relative;
}
.gridImg:before{
    content: "";
    display: block;
    height: 0;
    padding-bottom: 100%;
}
.gridText{
    grid-gap: 0.5rem;
    display: grid;
    grid-template-columns: repeat(1,minmax(0,1fr));
    padding: 1rem 1.5rem;
}
.clickable{
    cursor: pointer;
}

/* Rating Area */

.rating {
    color: #e8e8e8;
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    opacity: 0.6;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating .star-icon {
    width: 16px;
    height: 16px;
}

.buttons {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    flex-wrap: wrap;
}

.buttons .btn {
    flex: 1;
    background-color: #1e1e1e;
    color: #e6e7e8;
    border: 1px solid #e6e7e8;
    border-radius: 2px;
    padding: 0.75rem 0.75rem;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    text-align: left;
    width: auto;
}

.buttons .btn:hover {
    background-color: #ed1d2b;
    color: #fff;
}

.buttons .btn .icon {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
}

.buttons .btn .btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.buttons .btn .btn-text small {
    font-size: 7px;
    font-weight: 400;
    line-height: 1;
}

.buttons .btn .btn-text strong {
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}


.gridImg_1{
    background-image: url("Img/Avatars/avatar_1.png");
}
.gridImg_2{
    background-image: url("Img/Avatars/avatar_2.png");
}
.gridImg_3{
    background-image: url("Img/Avatars/avatar_3.png");
}
.gridImg_g_1{
    background-image: url("Img/Logos/gear_race_logo.png");
}
.gridImg_g_2{
    background-image: url("Img/Logos/dyno_master_logo.png");
}
.gridImg_g_3{
    background-image: url("Img/Logos/gear_hunter_logo.png");
}
.gridImg_g_4{
    background-image: url("Img/Logos/flight_rush_logo.png");
}
.gridImg_g_5{
    background-image: url("Img/Logos/island_invader_logo.png");
}
.gridImg_g_6{
    background-image: url("Img/Logos/emoji_squad_logo.png");
}
.gridImg_g_7{
    background-image: url("Img/Logos/slender_run_logo.png");
}
.gridImg_g_8{
    background-image: url("Img/Logos/draw_save_logo.png");
}
.gridImg_g_9{
    background-image: url("Img/Logos/coin_head_logo.png");
}
.gridImg_g_10{
    background-image: url("Img/Logos/letter_catch_logo.png");
}
.gridImg_g_11{
    background-image: url("Img/Logos/emperor_run_logo.png");
}
.gridImg_g_12{
    background-image: url("Img/Logos/ink_it_logo.png");
}

.gridImg_g_13{
    background-image: url("Img/Logos/draw_save_logo.png");
}

.gridImg_g_14{
    background-image: url("Img/Logos/the_walking_gear_logo.png");
}

.gridImg_g_15{
    background-image: url("Img/Logos/card_battle_logo.png");
}

.gridImg_g_16{
    background-image: url("Img/Logos/slice_merger_logo.png");
}

.gridImg_g_17{
    background-image: url("Img/Logos/punchy_boxing_logo.png");
}

.gridImg_g_18{
    background-image: url("Img/Logos/slide_kingdom_logo.png");
}

.gridImg_g_19{
    background-image: url("Img/Logos/thermal_squad_logo.png");
}

.gridImg_g_20{
    background-image: url("Img/Logos/defend_conquer_logo.png");
}

.gridImg_g_21{
    background-image: url("Img/Logos/blob_master_logo.png");
}

.gridImg_g_22{
    background-image: url("Img/Logos/rapid_shooter_logo.png");
}

.gridImg_g_23{
    background-image: url("Img/Logos/heroes_conquer_logo.png");
}
.gridBase h3 {
    color: white;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0rem;
}
.gridBase h4 {
    color: white;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0rem;
    margin-block-start: 0.2em;
    margin-block-end: 0.3em;
}
.gridBase p {
    color: #e8e8e8;
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    opacity: 0.6;
}
.gridBase p1 {
    color: #fcfcfc;
    margin-bottom: 0.25rem;
    font-size: 27px;
    font-weight: 400;
    opacity: 0.6;
}
.gridBase p2 {
    color: #e8e8e8;
    margin-bottom: 0.75rem;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.3;
    cursor:pointer;
}
.gridBase p2:hover {
    color : #ed1d2b;
    transition: 0.3s;
}

/* Developed */

.developed-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 4rem calc((100vw - var(--max-width)) / 2 - 7px);
    background: transparent;
    height: 20vh;
    color: #ffffff;
    position: relative;
    text-align: center;
    margin-top: 3rem;
}

.developed-content1 {
    max-width: 33%;
    z-index: 1;
    align-items: left;
}

.developed-content2 {
    max-width: 33%;
    z-index: 1;
    align-items: center;
}

.developed-content3 {
    max-width: 33%;
    z-index: 1;
    align-items: left;
}

.developed-section h1 {
    font-size: 90px;
    color: rgba(230, 231, 232, 0.3);
    line-height: 1;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-bottom: 0.75rem;
}

.developed-section p {
    font-size: 24px;
    font-weight: 400;
    color: #e6e7e8;
    line-height: 1;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-bottom: 0.25rem;
}

/* Values */

.values-section-studio1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem calc((100vw - var(--max-width)) / 2 - 7px);
    background: #1e1e1e;
    height: auto;
    color: #ffffff;
    position: relative;
    text-align: left;
    animation: movePattern 30s linear infinite;
}
.values-section-studio2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem calc((100vw - var(--max-width)) / 2 - 7px);
    background: #1e1e1e;
    height: auto;
    color: #ffffff;
    position: relative;
    text-align: left;
    animation: movePattern 30s linear infinite;
}
.values-section1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem calc((100vw - var(--max-width)) / 2 - 7px);
    background: url('Img/valuesBg1.png') center/cover no-repeat;
    height: 65vh;
    color: #ffffff;
    position: relative;
    text-align: left;
    overflow: hidden;
}
.values-section2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem calc((100vw - var(--max-width)) / 2 - 7px);
    background: url('Img/valuesBg2.png') center/cover no-repeat;
    height: 65vh;
    color: #ffffff;
    position: relative;
    text-align: left;
    overflow: hidden;
}
.values-section3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem calc((100vw - var(--max-width)) / 2 - 7px);
    background: url('Img/valuesBg3.png') center/cover no-repeat;
    height: 65vh;
    color: #ffffff;
    position: relative;
    text-align: left;
    overflow: hidden;
}

.values-content {
    max-width: 40%;
    z-index: 1;
}

.values-content p {
    font-size: 24px;
    line-height: 1.5;
}

.values-image {
    height: 100%;
    max-width: 40%;
    z-index: 1;
}

.values-image img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* Contact */

.contact-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9rem calc((100vw - var(--max-width)) / 2 - 7px);
    background: url('Img/contactBg.png') center/cover no-repeat;
    height: 40vh;
    color: #ffffff;
    position: relative;
    text-align: center;
}

.contact-content {
    max-width: 50%;
    z-index: 1;
}

.contact-content h1 {
    font-size: 36px;
    line-height: 1.2;
    margin-block-start: 0.5em;
    margin-block-end: 0.5em;
}

.contact-content p {
    font-size: 16px;
    line-height: 1.2;
    color: rgba(230, 231, 232, 0.5);
    margin-block-start: 0;
    margin-block-end: 0.5em;
}

.contact-content a {
    font-size: 16px;
    background-color: #e6e7e8;
    border-color: #1e1e1e;
    border-radius: 2px;
    color: #1e1e1e;
    padding: 0.75rem 1.5rem;
}

.contact-content a:hover{
    color: #ed1d2b;
}

/* Privacy & Terms & Contacts & Studio */

.infoAreaSec{
    padding: 4rem calc((100vw - var(--max-width)) / 2 - 7px);
    width: 100%;
    text-align: left;
    background-color: #e6e7e8;
}
.titleSec{
    margin: 0 0 1.5rem;
}

.infoAreaSec h3 {
    color: #1e1e1e;
    font-size: 36px;
    font-weight: 900;
}
.infoAreaSec h2 {
    color: #1e1e1e;
    font-size: 32px;
    font-weight: 700;
}
.infoAreaSec span {

}
.infoAreaSec p {
    color: #38363a;
    font-size: 24px;
    font-weight: 200;
    margin: 0;
    margin-top: 0.1rem;
}
.infoAreaSec a {

}
.infoAreaSec u {

}
.infoAreaSec li {
    font-size: 24px;
    font-weight: 500;
}

/*#endregion*/

/* Footer */

.footerAnim {
    overflow: hidden;
    background: #1e1e1e;
    padding-top: 4rem;
}

.footerAnim span {
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    font-size: 140px;
    font-weight: 900;
}

.full-width {
    width: calc(100% + 72rem);
}

.c-footer__text-loop {
    color: rgb(231, 232, 233);
    display: inline-block;
    margin-bottom: 56rem;
    opacity: .1;
    padding-top: 16rem;
    position: relative;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 1;
}

.anim--loop {
    -webkit-animation-duration: 20s;
    animation-duration: 20s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: translate;
    animation-name: translate;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    display: inline-block;
}

@keyframes translate {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        transform: translateZ(0px);
    }
    100% {
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-50%,0,0);
        transform: translate3d(-50%, 0px, 0px);
    }

}

.sectionMidR a:hover {
    background-color : #ed1d2b;
    transition: 0.3s;
}
.sectionMidR a {
    height: 24px;
    width: 24px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: 50%;
}

.footer {
    grid-row-gap: 3rem;
    background: #1e1e1e;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    padding: 4rem 4rem;
}
.headerLineBot{
    background-color: #38363a;
    left: 0;
    height: 3px;
    position: absolute;
    width: 100%;
    display: flex;
}
.sectionTopL{
    display: flex;
    justify-content: flex-start;
    grid-gap: 2rem;
    font-size: 20px;
    font-weight: 700;
    flex-basis: 50%;
    cursor: pointer;
    order: 0;
    text-align: left;
    color: #e6e7e8;
}
.sectionTopL .buttons{
    white-space: nowrap;
    margin-top: 0;
}
.sectionTopL .buttons .btn .icon{
    width: 26px;
    height: 26px;
}
.sectionTopL .buttons .btn .btn-text small{
    font-size: 9px;
}
.sectionTopL .buttons .btn .btn-text strong{
    font-size: 16px;
}
.sectionTopR{
    display: flex;
    flex: 0;
    justify-content: flex-end;
    font-size: 20px;
    font-weight: 700;
    order: 1;
    cursor: pointer;
    align-items: center;
    padding: 0;
    color: #e6e7e8;
}
.ic_0 a{
    color: inherit;
}
.ic_0 a:hover{
    color: inherit;
    transition: none;
}
.ic_0{
    background-image: url("Img/Icons/language.png");
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 0.5rem;
    width: 20px;
    height: 20px;
}
.sectionMidL{
    display: flex;
    justify-content: flex-start;
    grid-gap: 2rem;
    opacity: .55;
    font-size: 20px;
    font-weight: 600;
    flex-basis: 50%;
    cursor: pointer;
    order: 2;
    text-align: left;
    color: #e6e7e8;
}
.sectionMidL a {
    color: rgba(230, 231, 232, 0.5);
}
.sectionMidL a:hover {
    color: #ed1d2b;
}
.sectionMidR{
    display: flex;
    justify-content: flex-end;
    grid-gap: 2rem;
    font-size: 13px;
    font-weight: 600;
    flex-basis: 50%;
    cursor: pointer;
    order: 3;
    color: #e6e7e8;
}
.sc_0{
    background-image: url("Img/Icons/appstore.png");
}
.sc_1{
    background-image: url("Img/Icons/linkedin.png");
}
.sc_2{
    background-image: url("Img/Icons/instagram.png");
}
.sc_3{
    background-image: url("Img/Icons/twitter.png");
}
.sc_4{
    background-image: url("Img/Icons/youtube.png");
}
.sc_5{
    background-image: url("Img/Icons/facebook.png");
}
.sectionBottom{
    width: 100%;
    grid-gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(0,1fr));
    justify-content: space-between;
    color: #e6e7e8;
    display: grid;
    font-size: 14px;
    font-weight: 700;
    justify-items: center;
    margin-top: 1rem;
    flex-basis: 100%;
    order: 4;
}
.sectionBottom>:first-child {
    width: 100%;
    text-align: left;
}
.sectionBottom>:last-child {
    width: 100%;
    text-align: right;
}

/* Cookies */

.darkBg {
    display: flex !important;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.cookieContent {
    display: flex;
    border-radius: 2px;
    max-width: 450px;
    max-height: 800px;
    text-align: left;
    background: #1e1e1e 50% 50%;
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2);
}

.cookieButtonSec {
    margin-bottom: 10px;
    display: flex;
    gap: 2rem;
}

.cookieButtonSec>:first-child {
    background: #e6e7e8;
    color: #1e1e1e;
}

.cookieButtonSec>:first-child:hover {
    color: #ed1d2b;
}

.cookieButtonSec>:last-child:hover {
    color: #ed1d2b;
    background: #e6e7e8;
}

.cookieButton{
    color: #e6e7e8;
    padding: 0.75rem 1.5rem;
    border: #e6e7e8 1px solid;
    border-radius: 2px;
    font-size: 22px;
    background: #1e1e1e;
}

.cookieContainer {
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #e6e7e8;
}

.cookieLogo{
    width: 64px;
    height: 64px;
    margin-bottom: 32px;
    flex-shrink: 0;
}

.cookieContainer h1{
    font-size: 42px;
    margin-bottom: 0.5rem;
    margin-block: 0;
}
.cookieContainer p{
    font-size: 22px;
    opacity: 0.5;
}

/* Responsive */

@media only screen and (max-width:1399px) {
    .values-content h1 {
        font-size: 65px;
        margin-block-end: 24px;
        margin-block-start: 40px;
    }
    .values-content p {
        font-size: 18px;
    }
    .contact-content h1 {
        font-size: 28px;
    }
    .contact-content p {
        font-size: 15px;
    }
    .contact-content a {
        font-size: 15px;
    }
    .gridTableG{
        grid-template-columns: repeat(8,minmax(0,1fr));
    }
}

@media only screen and (max-width:1199px) {
    .gridBase h4 {
        font-size: 26px;
    }
    .gridBase p {
        font-size: 23px;
    }
    .gridBase p2 {
        font-size: 12px;
    }
    .values-content h1 {
        font-size: 65px;
        margin-block-end: 20px;
        margin-block-start: 35px;
    }
    .values-content p {
        font-size: 18px;
    }
    .video-item {
        height: 100%;
        width: auto;
    }
}

@media only screen and (max-width:991px) {
    .hero-section{
        height: 70vh;
    }
    .gridBase h3 {
        font-size: 32px;
    }
    .gridBase h4 {
        font-size: 20px;
    }
    .gridBase p {
        font-size: 16px;
    }
    .gridBase p2 {
        font-size: 10px;
    }
    .developed-section h1 {
        font-size: 70px;
    }
    .values-content h1 {
        font-size: 60px;
        margin-block-end: 16px;
        margin-block-start: 30px;
    }
    .values-content p {
        font-size: 17px;
    }
    .contact-content h1 {
        font-size: 22px;
    }
    .contact-content p {
        font-size: 14px;
    }
    .contact-content a {
        font-size: 14px;
    }
    .footerAnim span {
        font-size: 120px;
    }
    .sectionMidR{
        order: 2;
        flex-basis: 100%;
        justify-content: flex-start;
    }
    .gridTableG{
        grid-template-columns: repeat(6,minmax(0,1fr));
    }
}

@media only screen and (max-width:750px) {
    .hero-section{
        height: 50vh;
    }
    .headerNav {
        display: none;
    }
    .launchBtn {
        display: none;
    }
    .mobile-trigger {
        display: flex;
        align-items: center;
    }
    .gridBase h3 {
        font-size: 28px;
    }
    .gridBase h4 {
        font-size: 16px;
    }
    .gridBase p {
        font-size: 12px;
    }
    .gridBase p2 {
        font-size: 10px;
    }
    .gridTable {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .developed-section h1 {
        font-size: 90px;
    }
    .developed-section {
        flex-direction: column;
        height: auto;
    }
    .developed-content1, .developed-content2, .developed-content3 {
        max-width: 100%;
    }
    .values-content h1 {
        font-size: 50px;
        margin-block-end: 16px;
        margin-block-start: 30px;
    }
    .contact-content h1 {
        font-size: 18px;
    }
    .contact-content p {
        font-size: 11px;
    }
    .contact-content a {
        font-size: 11px;
    }
    .footerAnim span {
        font-size: 105px;
    }
    .sectionTopL{
        flex-direction: column;
        grid-gap: 1rem;
    }
    .sectionTopR{
        align-items: start;
    }
    .ic_0{
        margin-top: 2px;
    }
    .sectionMidL{
        flex-direction: column;
        grid-gap: 1rem;
        order: 3;
        flex-basis: 100%;
    }
    .sectionMidR{
        order: 2;
        flex-basis: 100%;
        justify-content: flex-start;
    }
    .sectionBottom{
        font-size: 14px;
    }
    .sectionBottom span{
        font-size: 14px;
    }
    .gridTableG{
        grid-template-columns: repeat(4,minmax(0,1fr));
    }
    .values-section-studio1, .values-section-studio2 {
        flex-direction: column;
    }
    .values-section-studio1 .values-content,.values-section-studio1 .values-image  {
        max-width: 100%;
    }
    .values-section-studio2 .values-content,.values-section-studio2 .values-image {
        max-width: 100%;
    }
    .gridTableLink {
        grid-template-columns: repeat(4, minmax(0px, 1fr));
    }
}

@media only screen and (max-width:575px) {
    .header {
        width: 101%;
    }
    .hero-section{
        height: 45vh;
    }
    .gridBase h3 {
        font-size: 22px;
    }
    .gridTable {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .values-content h1 {
        font-size: 40px;
        margin-block-end: 8px;
        margin-block-start: 15px;
    }
    .values-content p {
        font-size: 12px;
    }
    .contact-content h1 {
        font-size: 16px;
    }
    .contact-content p {
        font-size: 10px;
    }
    .contact-content a {
        font-size: 10px;
    }
    .footerAnim span {
        font-size: 90px;
    }
    .sectionTopL{
        flex-direction: column;
        grid-gap: 1rem;
    }
    .sectionTopR{
        align-items: start;
    }
    .ic_0{
        margin-top: 2px;
    }
    .sectionMidL{
        flex-direction: column;
        grid-gap: 1rem;
        order: 3;
        flex-basis: 100%;
    }
    .sectionMidR{
        order: 2;
        flex-basis: 100%;
        justify-content: flex-start;
    }
    .sectionBottom{
        font-size: 12px;
    }
    .sectionBottom span{
        font-size: 12px;
    }
    .sectionMidR a{
        background-size: 75%;
    }
    .footer{
        padding: 3.5rem 2rem;
    }
    .gridTableG{
        grid-template-columns: repeat(4,minmax(0,1fr));
    }
    .gridTableLink {
        grid-template-columns: repeat(2, minmax(0px, 1fr));
    }
}

@media only screen and (max-width:525px) {
    .hero-section{
        height: 30vh;
    }
}

/*@media screen and (min-width: 0px) {*/
/*    .sectionTopL{*/
/*        font-size: 15px;*/
/*        flex-direction: column;*/
/*        grid-gap: 1rem;*/
/*    }*/
/*    .sectionTopR{*/
/*        font-size: 15px;*/
/*        align-items: start;*/
/*    }*/
/*    .ic_0{*/
/*        width: 18px;*/
/*        height: 18px;*/
/*        margin-top: 2px;*/
/*    }*/
/*    .sectionMidL{*/
/*        font-size: 9px;*/
/*        flex-direction: column;*/
/*        grid-gap: 1rem;*/
/*        order: 3;*/
/*        flex-basis: 100%;*/
/*    }*/
/*    .sectionMidR{*/
/*        order: 2;*/
/*        flex-basis: 100%;*/
/*        justify-content: flex-start;*/
/*    }*/
/*    .sectionBottom{*/
/*        font-size: 10px;*/
/*    }*/
/*    .sectionMidR a{*/
/*        background-size: 75%;*/
/*    }*/
/*    .header{*/
/*        padding: 0.75rem 2rem;*/
/*    }*/
/*    .footer{*/
/*        padding: 3.5rem 2rem;*/
/*    }*/
/*    .headerLineBot{*/
/*        margin-top: -3.5rem;*/
/*    }*/
/*    .gridBase{*/
/*        padding: 4rem 2rem;*/
/*    }*/
/*    .gridTable{*/
/*        grid-template-columns: repeat(2,minmax(0,1fr));*/
/*    }*/
/*    .gridTableG{*/
/*        grid-template-columns: repeat(4,minmax(0,1fr));*/
/*    }*/
/*    .gridText{*/
/*        padding: 0.5rem 1rem;*/
/*    }*/
/*    .gridBase h3{*/
/*        font-size: 32px;*/
/*    }*/
/*    .gridBase h4{*/
/*        font-size: 26px;*/
/*    }*/
/*    .gridBase p{*/
/*        font-size: 14px;*/
/*    }*/
/*    .gridBase p1{*/
/*        font-size: 18px;*/
/*    }*/
/*    .gridBase p2{*/
/*        font-size: 10px;*/
/*    }*/
/*    .infoAreaSec{*/
/*        padding-left: 2rem;*/
/*        padding-right: 2rem;*/
/*        padding-bottom: 2rem;*/
/*    }*/
/*    .titleSec{*/
/*        padding: 2rem 2rem;*/
/*    }*/
/*    .masterInfoSec p {*/
/*        font-size: 14px;*/
/*    }*/
/*    .masterInfoSec h1 {*/
/*        font-size: 40px;*/
/*    }*/
/*    .masterInfoSec h2 {*/
/*        font-size: 24px;*/
/*    }*/
/*    ul {*/
/*        padding-left: 22px!important;*/
/*    }*/
/*    li {*/
/*        font-size: 14px;*/
/*    }*/
/*}*/
/*@media screen and (min-width: 360px) {*/
/*    .sectionMidL{*/
/*        flex-direction: row;*/
/*        grid-gap: 2rem;*/
/*    }*/
/*}*/
/*@media screen and (min-width: 490px) {*/
/*    .sectionTopL{*/
/*        flex-direction: row;*/
/*        grid-gap: 2rem;*/
/*    }*/
/*}*/
@media screen and (min-width: 500px) {
    
    /*.sectionBottom{*/
    /*    grid-auto-flow: column;*/
    /*    grid-template-columns: repeat(auto-fit,minmax(0,1fr));*/
    /*    justify-content: space-between;*/
    /*    grid-gap: 1rem;*/
    /*}*/
    /*.sectionBottom>:first-child {*/
    /*    width: 100%;*/
    /*    text-align: left;*/
    /*}*/
    /*.sectionBottom>:last-child {*/
    /*    width: 100%;*/
    /*    text-align: right;*/
    /*}*/
}
@media screen and (min-width: 768px) {
    
    /*.sectionTopL{*/
    
    /*    font-size: 18px;*/
    /*}*/
    /*.sectionTopR{*/
    /*    font-size: 18px;*/
    /*    align-items: center;*/
    /*}*/
    /*.ic_0{*/
    /*    width: 21px;*/
    /*    height: 21px;*/
    /*    margin-top: 0px;*/
    /*}*/
    /*.sectionMidL{*/
    /*    font-size: 11px;*/
    /*    order: 2;*/
    /*    flex-basis: 50%;*/
    /*}*/
    /*.sectionMidR{*/
    /*    order: 3;*/
    /*    flex-basis: 50%;*/
    /*    justify-content: flex-end;*/
    /*}*/
    /*.sectionBottom{*/
    /*    font-size: 12px;*/
    /*}*/
    /*.sectionMidR a{*/
    /*    background-size: 100%;*/
    /*}*/
    /*.header{*/
    /*    padding: 0.75rem 4rem;*/
    /*}*/
    /*.footer{*/
    /*    padding: 4rem 4rem;*/
    /*}*/
    /*.gridBase{*/
    /*    padding: 4rem 4rem;*/
    /*}*/
    /*.headerLineBot{*/
    /*    margin-top: -4rem;*/
    /*}*/
    /*.gridTable{*/
    /*    grid-template-columns: repeat(4,minmax(0,1fr));*/
    /*}*/
    /*.gridTableG{*/
    /*    grid-template-columns: repeat(6,minmax(0,1fr));*/
    /*}*/
    /*.gridText{*/
    /*    padding: 1rem 1.5rem;*/
    /*}*/
    /*.gridBase h3{*/
    /*    font-size: 34px;*/
    /*}*/
    /*.gridBase h4{*/
    /*    font-size: 28px;*/
    /*}*/
    /*.gridBase p{*/
    /*    font-size: 14px;*/
    /*}*/
    /*.gridBase p1{*/
    /*    font-size: 22px;*/
    /*}*/
    /*.gridBase p2{*/
    /*    font-size: 12px;*/
    /*}*/
    /*.infoAreaSec{*/
    /*    padding-left: 4rem;*/
    /*    padding-right: 4rem;*/
    /*    padding-bottom: 4rem;*/
    /*}*/
    /*.titleSec{*/
    /*    padding: 2rem 7rem;*/
    /*}*/
    /*.masterInfoSec p {*/
    /*    font-size: 18px;*/
    /*}*/
    /*.masterInfoSec h1 {*/
    /*    font-size: 45px;*/
    /*}*/
    /*.masterInfoSec h2 {*/
    /*    font-size: 30px;*/
    /*}*/
    /*ul {*/
    /*    padding-left: 32px!important;*/
    /*}*/
    /*li {*/
    /*    font-size: 18px;*/
    /*}*/
}
/*@media screen and (min-width: 1024px) {*/
/*    .sectionTopL{*/
/*        font-size: 20px;*/
/*        flex-direction: row;*/
/*        grid-gap: 2rem;*/
/*    }*/
/*    .sectionTopR{*/
/*        font-size: 20px;*/
/*    }*/
/*    .ic_0{*/
/*        width: 23px;*/
/*        height: 23px;*/
/*    }*/
/*    .sectionMidL{*/
/*        font-size: 13px;*/
/*    }*/
/*    .sectionBottom{*/
/*        font-size: 14px;*/
/*    }*/
/*    .sectionMidR a{*/
/*        background-size: 100%;*/
/*    }*/
/*    .header{*/
/*        padding: 0.75rem 4rem;*/
/*    }*/
/*    .footer{*/
/*        padding: 4rem 4rem;*/
/*    }*/
/*    .headerLineBot{*/
/*        margin-top: -4rem;*/
/*    }*/
/*    .gridBase{*/
/*        padding: 4rem 4rem;*/
/*    }*/
/*    .gridTable{*/
/*        grid-template-columns: repeat(6,minmax(0,1fr));*/
/*    }*/
/*    .gridTableG{*/
/*        grid-template-columns: repeat(10,minmax(0,1fr));*/
/*    }*/
/*    .gridText{*/
/*        padding: 1rem 1.5rem;*/
/*    }*/
/*    .gridBase h3{*/
/*        font-size: 36px;*/
/*    }*/
/*    .gridBase h4{*/
/*        font-size: 30px;*/
/*    }*/
/*    .gridBase p{*/
/*        font-size: 18px;*/
/*    }*/
/*    .gridBase p1{*/
/*        font-size: 27px;*/
/*    }*/
/*    .gridBase p2{*/
/*        font-size: 14px;*/
/*    }*/
/*    .infoAreaSec{*/
/*        padding-left: 4rem;*/
/*        padding-right: 4rem;*/
/*        padding-bottom: 4rem;*/
/*    }*/
/*    .titleSec{*/
/*        padding: 2rem 7rem;*/
/*    }*/
/*    .masterInfoSec p {*/
/*        font-size: 20px;*/
/*    }*/
/*    .masterInfoSec h1 {*/
/*        font-size: 50px;*/
/*    }*/
/*    .masterInfoSec h2 {*/
/*        font-size: 32px;*/
/*    }*/
/*    ul {*/
/*        padding-left: 36px!important;*/
/*    }*/
/*    li {*/
/*        font-size: 20px;*/
/*    }*/
/*}*/