html, body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    color: var(--primary);
}
a {
    color: inherit;
    text-decoration: none;
}
header {
    background: var(--primary);
    position: fixed;
    width: 100%;
    z-index: 100;
    box-shadow: 0px 0px 10px 0px rgba(1, 1, 1, 0.3);
    transition: all 0.3s;
}
.header_transparent {
    background: transparent;
    box-shadow: unset;
}
.header-inner {
    height: 70px;
    width: calc(100% - 80px);
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
    justify-content: space-between;
}
.custom-shape-divider-top-1633205357 {
    position: absolute;
    top: 69px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.custom-shape-divider-top-1633205357 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 8px;
}
.custom-shape-divider-top-1633205357 .shape-fill {
    fill: white;
}
.header-right {
    display: flex;
    align-items: center;
}
.header-left {
    display: flex;
    cursor: pointer;
}
.header-left img {
    height: 50px;
    position: relative;
    top: 10px;
    margin-right: 15px;
}
.header-text-item {
    font-size: 19px;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    margin-left: 12px;
    margin-right: 30px
}
.header-text-item:hover {
    color: var(--red);
}
.header-item-white {
    border: 2px solid white;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 178px;
    height: 40px;
    border-radius: 20px;
    transition: all 0.3s;
    cursor: pointer;
    margin-left: 12px;
}
.header-item-white span {
    margin-left: 10px;
    font-size: 19px;
    transition: color 0.3s;
}
.header-item-white:hover {
    border-color: var(--red);
}
.header-item-white > svg > path {
    transition: fill 0.3s;
}
.header-item-white:hover > svg > path {
    fill: var(--red);
}
.header-item-white:hover span {
    color: var(--red);
}
.header-item-red {
    background: var(--red);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 182px;
    height: 44px;
    border-radius: 20px;
    transition: all 0.3s;
    cursor: pointer;
    margin-left: 12px;
}
.footer-email {
    transition: color 0.3s;
}
.footer-email:hover {
    color: var(--primary);
}
.home-page-banner-socials_container {
    display: flex;
    flex-direction: column;
    justify-self: flex-end;
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
}
.home-page-social-item {
    width: 44px;
    height: 44px;
    border-radius: 22px;
    background: var(--red);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    margin: 6px 0px;
}
.home-page-social-item:hover {
    background: white;
}
.home-page-social-item:hover i {
    color: var(--red);
}
.home-page-social-item i {
    font-size: 26px;
    color: white;
    transition: all 0.3s;
}
.header-item-red span {
    margin-left: 10px;
    font-size: 19px;
}
.header-item-red:hover {
    background: var(--red-dark);
}
.header-item-red span {
    margin-left: 10px;
    font-size: 19px;
}
.page-banner {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.appvator-banner {
    background: #282E3A;
    padding: 100px 0px;
    min-height: calc(100vh - 200px);
    height: auto;
}
.page-banner .header-text-item {
    color: var(--red);
    margin-right: 0px;
    margin-top: 24px;
}
.page-banner_content {
    z-index: 20;
}
.appvator-banner-symbols-background {
    width: 100%;
    height: 100%;
    position: absolute;
    background: url(/images/main/symbols-background.svg);
    z-index: 10;
    opacity: 0.03;
}
.footer-symbols-background {
    width: 100%;
    height: 100%;
    position: absolute;
    background: url(/images/main/symbols-background_black.svg);
    z-index: 10;
    opacity: 0.1;
}
.page-banner-background-gradient {
    width: 400px;
    position: absolute;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    z-index: 15;
}
.page-banner-background-gradient-left {
    width: calc((100% - 400px) / 2);
    position: absolute;
    height: 100%;
    left: 0px;
    background: linear-gradient(to right, transparent 25%, var(--primary) 100%);
    z-index: 15;
}
.page-banner-background-gradient-right {
    width: calc((100% - 400px) / 2);
    position: absolute;
    height: 100%;
    right: 0px;
    background: linear-gradient(to left, transparent 25%, var(--primary) 100%);
    z-index: 15;
}
.footer-background-gradient {
    width: 400px;
    position: absolute;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    z-index: 15;
}
.footer-background-gradient-left {
    width: calc((100% - 400px) / 2);
    position: absolute;
    height: 100%;
    left: 0px;
    background: linear-gradient(to right, transparent 25%, var(--red) 100%);
    z-index: 15;
}
.footer-background-gradient-right {
    width: calc((100% - 400px) / 2);
    position: absolute;
    height: 100%;
    right: 0px;
    background: linear-gradient(to left, transparent 25%, var(--red) 100%);
    z-index: 15;
}
.page-banner .header-text-item:hover {
    color: white;
}
.home-page-banner-center_content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.home-page-banner-motto {
    font-size: 41px;
    color: white;
    max-width: 600px;
    text-align: center;
    margin: 100px 0px;
}
.custom-shape-divider-bottom-1633208035 {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 5;
}
.custom-shape-divider-bottom-1633208035 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 30px;
}
.custom-shape-divider-bottom-1633208035 .shape-fill {
    fill: var(--red);
}
.custom-shape-divider-bottom-1633208035-section-dark .shape-fill {
    fill: var(--section-dark);
}
.custom-shape-divider-bottom-1633208035-section-light .shape-fill {
    fill: var(--section-light);
}
.section {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-bottom: 100px;
}
.section-content {
    margin-left: 20%;
    margin-right: 20%;
    max-width: 1152px;
    width: 60%;
    padding-top: 80px;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.section-about .section-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.s-about-image {
    width: 172px;
    margin-bottom: 35px;
}
.s-about-text {
    font-size: 21px;
    text-align: center;
    margin-bottom: 50px;
}
.s-about-header {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 50px;
    text-align: center;
}
.btn {
    outline: none;
    width: 182px;
    height: 44px;
    border: 3px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    border-radius: 27px;
    background: transparent;
    color: white;
    transition: all 0.3s;
    cursor: pointer;
}
.btn:hover {
    background: white;
    color: transparent;
}
.btn span {
    font-size: 19px;
    transition: color 0.1s;
}
.btn-margin-top {
    margin-top: 50px;
}
.section-dark {
    background: var(--section-dark);
}
.section-light {
    background: var(--section-light);
}
.section-header {
    font-size: 50px;
    font-weight: bold;
    text-align: center;
}
.links-container {
    width: calc(100% + 30px);
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    position: relative;
    left: -15px;
}
.links-container-part-2 {
    margin-bottom: 50px;
}
.link-item-card i {
    font-size: 70px;
}
.link-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: bold;
    font-size: 19px;
    cursor: pointer;
}
.links-container > a {
    width: calc(25% - 30px);
    margin-left: 30px;
    margin-top: 30px;
}
.link-item-card {
    background: white;
    box-shadow: 0px 0px 10px 0px rgba(1, 1, 1, 0.2);
    border-radius: 10px;
    width: 100%;
    aspect-ratio: 16/9;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    transition: all 0.3s;
}
.link-item-card img {
    width: 40%;
}
.link-item:hover .link-item-card {
    box-shadow: 0px 0px 15px 3px rgba(1, 1, 1, 0.3);
}
.btn-dark {
    color: var(--primary);
    border-color: var(--primary);
}
.btn-dark:hover {
    background: var(--primary);
    color: var(--section-dark);
}
.btn-dark:hover span {
    color: var(--section-dark);
}
.game-screens-small-showcase {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}
.game-screens-small-showcase-item {
    width: calc((100% - 60px) / 3);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}
.speedpunk-buttons {
    margin-top: 100px;
}
.links-buttons {
    margin-top: 20px;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.links-buttons .btn {
    margin-top: 30px;
}
.contact-us-buttons {
    margin-top: 50px;
}
.game-screens-small-showcase-item img {
    width: 100%;
    height: 100%;
}
.games-container {
    width: calc(100% + 30px);
    display: flex;
    position: relative;
    flex-wrap: wrap;
    left: -15px;
    margin-top: 25px;
}
.games-container-part-2 {
    margin-top: 0px;
    margin-bottom: 60px;
}
.section-header-not-first {
    margin-top: 50px;
}
.game-item {
    width: calc(50% - 30px);
    margin-left: 30px;
    margin-top: 35px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.game-item-card {
    overflow: hidden;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgba(1, 1, 1, 0.3);
    transition: all 0.3s;
    margin-bottom: 15px;
    aspect-ratio: 16/9;
}
.game-item:hover .game-item-card {
    box-shadow: 0px 0px 15px 3px rgba(1, 1, 1, 0.3);
}
.game-item-card img {
    width: 100%;
    aspect-ratio: 16/9;
}
.s-game-header {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 10px;
}
.s-game-text {
    font-size: 19px;
}
.game-capsule-speedpunk {
    background: url("/images/games/speedpunk/capsule.jpg");
}
.game-capsule-inmaze {
    background: url("/images/games/inmaze/capsule.jpg");
}
.game-capsule-ballhockey {
    background: url("/images/games/ballhockey/capsule.jpg");
}
.game-capsule-seekerfever {
    background: url("/images/games/seeker-fever/capsule.jpg");
}
.game-capsule-outcasted {
    background: url("/images/games/outcasted/capsule.jpg");
}
footer {
    width: 100%;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--red);
    overflow: hidden;
    position: relative;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 20;
    width: 60%;
}
.footer-header {
    font-size: 50px;
    color: white;
    font-weight: bold;
    text-align: center;
}
.footer-stripe {
    margin-top: 50px;
    background: var(--primary);
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 19px;
    color: white;
    border-radius: 20px 20px 0px 0px;
}
footer img {
    margin-bottom: 35px;
}
.actual-project-text {
    text-align: center;
    font-size: 19px;
    margin-top: 50px;
    margin-bottom: 50px;
}
.footer-links {
    margin-top: 40px;
    display: flex;
    color: white;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    top: -15px;
    padding-left: 10%;
    padding-right: 10%;
}
.footer-links i {
    margin-left: 15px;
    margin-right: 15px;
    transition: color 0.3s;
    font-size: 32px;
    margin-top: 15px;
    color: white;
    cursor: pointer;
}
.footer-links i:hover {
    color: var(--primary);
}
.contact-email {
    margin-top: 60px;
    font-size: 26px;
    margin-bottom: 30px;
}
.btn-primary {
    border-color: var(--primary);
    color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary);
}
.btn-bg-light:hover {
    color: var(--section-light);
}
.s-download_cont {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.s-download_cont button {
    margin-left: 15px;
    margin-right: 15px;
}
.s-section-text {
    font-size: 21px;
    text-align: center;
    margin-top: 50px;
}
.s-trailer_cont {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 20px;
    overflow: hidden;
}
.s-trailer_cont iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.s-gallery {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: calc(100% + 30px);
    left: -15px;
    top: -30px;
    position: relative;
    margin-top: 50px;
}
.s-gallery .s-gallery-image {
    width: calc(50% - 30px);
    margin-left: 30px;
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.s-gallery-portrait {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: calc(100% + 30px);
    left: -15px;
    top: -30px;
    position: relative;
    margin-top: 50px;
}
.s-gallery-portrait .s-gallery-image {
    width: calc(33.33% - 30px);
    margin-left: 30px;
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.s-gallery-image img {
    width: 100%;
}
.visible {
    visibility: visible;
    opacity: 1;
}
.footer-email
{ 
    margin-top: 30px;
    color: white;
    font-size: 25px;
}
.header-hamburger {
    height: 100%;
    width: 42px;
    position: relative;
    display: none;
}
.header-hamburger img {
    height: 60%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}
.header-hamburger .img-close {
    display: none;
}
.header-hamburger_close .img-close {
    display: block;
}
.header-hamburger_close .img-hamburger {
    display: none;
}
.mobile-nav {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    height: 100%;
    max-height: 100vh;
    width: 100%;
    padding-top: 70px;
    padding-bottom: 70px;
    top: 100%;
    transition: all 0.3s;
    background: var(--primary-opacity);
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: auto;
}
.mobile-nav > * {
    margin-top: 32px;
}
.mobile-nav i {
    font-size: 3vw;
}
.mobile-nav span {
    font-size: 24px !important;
}
.btn-expandable span {
    transition: opacity 0.3s, visibility 0.3s;
    position: absolute;
}
.btn-expandable .btn-expand-text {
    opacity: 1;
    visibility: visible;
}
.btn-expandable .btn-expand-text_expanded {
    opacity: 0;
    visibility: hidden;
}
.btn-expandable_expanded .btn-expand-text {
    opacity: 0;
    visibility: hidden;
}
.btn-expandable_expanded .btn-expand-text_expanded {
    opacity: 1;
    visibility: visible;
}
.section-expandable {
    max-height: 0px;
    transition: max-height 0.4s;
    overflow: hidden;
}
.speedpunk-banner {
    background: url(/images/games/speedpunk/capsule.jpg) no-repeat 50% 50%;
}
.inmaze-banner {
    background: url(/images/games/inmaze/capsule.jpg) no-repeat 50% 50%;
}
.ballhockey-banner {
    background: url(/images/games/ballhockey/capsule.jpg) no-repeat 50% 50%;
}
.seeker-fever-banner {
    background: url(/images/games/seeker-fever/capsule.jpg) no-repeat 50% 50%;
}
.outcasted-banner {
    background: url(/images/games/outcasted/capsule.jpg) no-repeat 50% 50%;
}
.tictactoe-banner {
    background: url(/images/games/tic-tac-toe-city/capsule.jpg) no-repeat 50% 50%;
}
.game-banner-buttons {
    display: flex;
    margin-top: auto;
    margin-bottom: 150px;
}
.game-banner-button {
    margin: 0px 15px;
    animation: button-scaling 1.5s infinite;
}
.game-banner-mask {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(1,1,1,0.05);
    pointer-events: none;
}
.btn i {
    font-size: 16px;
    margin-right: 10px;
}
.download-sticky-btn {
    bottom: 20px;
    right: 40px;
    position: fixed;
    z-index: 90;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
}
.download-sticky-btn_visible {
    opacity: 1;
    visibility: visible;
}
.download-sticky-btn-2 {
    bottom: 74px;
}
.mobile-nav-header-buttons {
    display: flex;
    margin-top: 0px;
    margin-bottom: 16px;
}
.mobile-nav-header-buttons > div {
    margin: 32px 16px 0px 16px;
}
.game-banner {
    background-size: cover;
}
.btn-left-flat {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}
.subscribe-input-container {
    margin-top: 50px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.subscribe-input-container input {
    width: calc(100% - 237px);
    border: 3px solid var(--primary);
    outline: none;
    padding: 0px 20px;
    font-size: 19px;
    color: var(--primary);
    border-radius: 27px 0px 0px 27px;
}
.subscribe-message-container {
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    display: none;
    font-size: 18px;
    text-align: left;
}
#subscribe-error-container {
    color: var(--red);
}
#subscribe-loading-container i {
    animation: subscribe-loading 1s linear infinite;
}
#subscribe-check-container {
    margin-top: 50px;
    color: #53a653;
}
.actual-project-img
{
    width: 100%;
    border-radius: 10px;
    margin-bottom: 40px;
}
@keyframes subscribe-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes button-scaling {
    0% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}
@media screen and (max-width: 1100px)
{
    .header-item span {
        font-size: 17px;
        white-space: nowrap;
        color: white;
    }
    .section-content {
        margin-left: 15%;
        margin-right: 15%;
        width: 70%;
    }
}
@media screen and (max-width: 1023px)
{
    .header-right {
        display: none;
    }
    .header-hamburger {
        display: flex;
    }
    .mobile-nav_visible {
        opacity: 1;
        visibility: visible;
        top: 0px;
    }
    .doc-scroll-disabled {
        overflow: hidden;
    }
    .footer-links i {
        font-size: 27px;
    }
    .footer-header {
        font-size: 5vw;
    }
    .footer-email {
        font-size: 3vw;
    }
    .footer-stripe {
        font-size: 2.5vw;
    }
    .links-container > a {
        width: calc(50% - 30px);
    }
    .s-download_cont {
        margin-top: 20px;
    }
    .s-download_cont button {
        margin-top: 30px;
    }
    .home-page-banner-motto {
        max-width: 70%;
        font-size: 31px;
    }
    .home-page-social-desktop {
        display: none;
    }
    .home-page-banner-logo {
        width: 250px;
    }
    .page-banner-background-gradient {
        display: none;
    }
    .page-banner-background-gradient-left {
        display: none;
    }
    .page-banner-background-gradient-right {
        display: none;
    }
    .custom-shape-divider-bottom-1633208035 svg {
        height: 15px;
    }
    .s-trailer_cont {
        border-radius: 10px;
    }
    .footer-content {
        width: 70%;
    }
    .footer-background-gradient {
        display: none;
    }
    .footer-background-gradient-left {
        display: none;
    }
    .footer-background-gradient-right {
        display: none;
    }
    .footer-symbols-background {
        opacity: 0.06;
    }
    .header-inner {
        height: 60px;
    }
    .header-left img {
        height: 40px;
    }
    .header-item-red {
        margin-left: 0px;
    }
    .header-item-white {
        margin-left: 0px;
    }
    .header-item-red span {
        font-size: 19px !important;
    }
    .header-item-white span {
        font-size: 19px !important;
    }
    .game-banner-buttons {
        margin-bottom: 50px;
    }
    .download-sticky-btn {
        right: 20px;
    }
    .game-banner {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }
    .actual-project-img {
        margin-bottom: 30px;
    }
    .section-content {
        margin-left: 10%;
        margin-right: 10%;
        width: 80%;
    }
}
@media screen and (max-width: 641px) 
{
    .game-item {
        width: calc(100% - 30px);
    }
    .footer-header {
        font-size: 6vw;
    }
    .footer-email {
        font-size: 4vw;
    }
    .footer-stripe {
        font-size: 3vw;
        height: 50px;
    }
    .mobile-nav i {
        font-size: 5vw;
    }
    .mobile-nav span {
        font-size: 20px !important;
    }
    .section-header {
        font-size: 35px;
    }
    .s-about-header {
        font-size: 35px;
    }
    .s-section-text {
        font-size: 19px;
    }
    .game-screens-small-showcase {
        flex-direction: column;
        margin-top: 0px;
    }
    .game-screens-small-showcase-item {
        width: 100%;
        aspect-ratio: 16/9;
        margin-top: 30px;
    }
    .custom-shape-divider-bottom-1633208035 svg {
        height: 10px;
    }
    .header-inner {
        width: calc(100% - 40px);
        padding-left: 20px;
        padding-right: 20px;
    }
    .appvator-banner {
        height: auto;
        min-height: calc(100vh - 200px);
    }
    .home-page-banner-logo {
        width: 200px;
        max-width: 80%;
        margin-top: 20px;
    }
    .home-page-banner-motto {
        font-size: 25px;
        margin: 80px 0px;
    }
    .footer-content {
        width: 80%;
    }
    .footer-links i {
        font-size: 24px;
    }
    .footer-content img:nth-child(1) {
        width: 100px;
    }
    .header-item-red span {
        font-size: 19px !important;
    }
    .header-item-white span {
        font-size: 19px !important;
    }
    .mobile-nav-header-buttons {
        display: block;
    }
    .game-banner-button {
        display: none;
    }
    .s-gallery .s-gallery-image {
        width: 100%;
    }
    .btn span {
        font-size: 17px;
    }
    .s-gallery-portrait .s-gallery-image {
        width: calc(50% - 30px);
    }
    .subscribe-input-container {
        flex-direction: column;
    }
    .subscribe-input-container input, 
    .subscribe-input-container button {
        border-radius: 27px;
        width: 100%;
    }
    .subscribe-input-container input {
        width: calc(100% - 46px);
        height: 38px;
        margin-bottom: 15px;
    }
}