@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');
:root {
    --color--yellow: #FDD230;
    --color--lightblue--1: #87CEEB;
    --color--lightblue: #7EA5CA;
    --color--purple: #CA7EB9;
    --color--lightyellow: #FFFEF1;
    --color--lightgreen: #ADE0B8;
    --color--darkred: #E04545;
    --color--lightred: #E88080;
    --color--green: #00ED34;
    --color--lightchocolate: #FEC994;
    --font-family--primary: 'Space Mono', monospace;
    --font-family--menu: sans-serif;
    --font-size--extra-big: 72px;
    --font-size--big: 64px;
    --padding-standard: 4.5rem 1rem;
    --padding-standard--medium: 5rem 2rem;

}

body {
    font-family: var(--font-family--primary);
    background-color: var(--color--lightyellow);
    overflow-x: hidden;
    padding-bottom: 38px;
}

h1,
h2 {
    font-weight: 900;
}

p {
    font-size: 16px;
    margin: 0;
}

.padding--standard {
    padding: var(--padding-standard--medium);
}

header {
    position: fixed;
    z-index: 99;
    width: 100%;
    bottom: 0;
    background-color: silver;
    padding: 2px 0;
    box-shadow: inset 1px 0 #fff;
    border-top: 1px solid #f4f4f4;
    border-bottom: 1px solid #4e4e4e;
    height: 38px;
}

.header__menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-family--menu);
}

.menu__mobile-btn {
    padding: 2px 6px;
    background-color: silver;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    border-right: 1px solid gray;
    border-bottom: 1px solid gray;
    box-shadow: inset 1px 1px #dfdfdf, 1px 0 #000, 0 1px #000, 1px 1px #000;
}

.menu__mobile-contact {
    text-decoration: none;
    padding: 0 10px;
    border-top: 1px solid gray;
    border-left: 1px solid gray;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.marquee__section {
    font-style: italic;
    font-weight: 900;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    flex-direction: row;
    font-size: 36px;
}

.marquee__section i {
    transform: translateY(-22%);
    font-size: 24px;
}

.mobile__menu {
    font-family: var(--font-family--menu);
    position: absolute;
    left: -100%;
    bottom: 33px;
    width: 300px;
    height: 310px;
    max-height: 800px;
    background-color: #f0f0f0;
    border: 3px solid #000;
    box-shadow: 8px 0px 0px 0px rgba(0, 0, 0, 1);
    -webkit-box-shadow: 8px 0px 0px 0px rgba(0, 0, 0, 1);
    -moz-box-shadow: 8px 0px 0px 0px rgba(0, 0, 0, 1);
}

.mobile__submenu {
    display: none;
    position: absolute;
    background-color: #f0f0f0;
    left: 70px;
    top: 0;
    border: 3px solid #000;
    box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
    -webkit-box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
    -moz-box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
    padding: 5px;
    z-index: 999;
    font-size: 14px;
    width: 100%;
}

.mobile__submenu.open {
    display: block;
}

.mobile__submenu a {
    display: block;
    text-decoration: none;
    color: #000;
    padding-bottom: 5px;
}

.mobile__menu.open {
    left: 0;
}

.mobile__menu__stripe {
    padding: 0.5rem 0;
    display: flex;
    justify-content: space-between;
    height: inherit;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    background: linear-gradient(0deg, rgba(13, 42, 132, 1) 0%, rgba(48, 144, 245, 1) 100%);
    color: #fff;
}

.mobile__menu__items {
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.mobile__menu__single {
    position: relative;
    display: flex;
    align-items: center;
    font-weight: 900;
    margin-bottom: 15px;
    font-size: 14px;
}

.mobile__menu__single__title {
    flex: 1;
    display: flex;
    justify-content: space-between;
    padding-right: 10px;
    align-items: center;
}

.mobile__menu__single__title a {
    color: #000;
    text-decoration: none;
}

.mobile__menu__single__title a u {
    text-decoration: underline;
}

.menu__item {
    cursor: pointer;
    padding: 2px 6px;
    background-color: silver;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    border-right: 1px solid gray;
    border-bottom: 1px solid gray;
    box-shadow: inset 1px 1px #dfdfdf, 1px 0 #000, 0 1px #000, 1px 1px #000;
    margin-right: 3px;
    min-width: 150px;
    display: flex;
    align-items: center;
}

.menu__item img {
    margin-right: 5px;
}

.menu__item.active {
    border-top: 1px solid #000;
    border-left: 1px solid #000;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    box-shadow: inset 1px 1px grey;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAG0lEQVQYV2M8cODAf3t7ewbG/////z948CADAFuqCj64BtLKAAAAAElFTkSuQmCC);
}

.menu__item a {
    text-decoration: none;
    text-align: center;
    color: #000;
}

.bordered--y {
    border-top: 4px solid #000;
    border-bottom: 4px solid #000;
}
.bordered--bottom {
    border-bottom: 4px solid #000;
}
.bordered--right {
    border-right: 4px solid #000;
}

.hero-section--left__wrapper {
    background-color: var(--color--purple);
    display: flex;
    justify-content: center;
    padding: var(--padding-standard);
    border-bottom: 0;
}

.hero-section--right__wrapper {
    background-color: var(--color--yellow);
}


.hero-section {
    max-width: 500px;
}

.hero-section--left__content h1 {
    font-weight: 900;
}

.line-height--20 {
    line-height: 20px;
}

.custom-container {
    max-width: 1200px;
    margin: 0 auto;
}

.btn--solid {
    box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
    -webkit-box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
    -moz-box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
    border-radius: 0;
    border: 4px solid #000;
    font-weight: 900;
}

.btn--solid:hover {
    border: 4px solid #000;
    background-color: #000;
    color: #fff;
}

.btn--solid--yellow {
    background-color: var(--color--yellow);
}

.btn--solid--white {
    background-color: #fff;
}

.btn--solid--lightgreen {
    background-color: var(--color--lightgreen);
}

.btn--solid--green {
    background-color: var(--color--green);
}

.hero-section--left__buttons {
    margin-top: 2rem;
    text-align: center;
    position: relative;
    display: inline-block;
}

.hero-section--left__buttons a {
    margin-bottom: 0.7rem;
}

.hero-section--left__buttons .doodle {
    width: 60px;
    position: absolute;
    top:-80px;
    right: 0;
}

.hero-section--right__bg-blobs {
    position: absolute;
    z-index: 1;
}

.hero-section--right__hand {
    position: absolute;
    bottom: -25px;
    z-index: 1;
}

.hero-section--right__hand img {
    width: calc(100vw + 50px);
    max-width: 600px;
}


.hero-section--right__bg-blobs img {
    object-fit: contain;
    width: 100%;
    overflow: visible;
}

.hero-section--right__wrapper {
    background-position: center center;
    background-size: 500px;
    background-repeat: no-repeat;
    padding: var(--padding-standard);
    position: relative;
    min-height: 500px;
    overflow: hidden;
    border-bottom: 4px solid #000;
}

.hero-section--right__wrapper .doodle--hello-world {
    position: absolute;
    width: 80px;
    right: 10px;
    top: 50px
}

.hero-section--right__wrapper .doodle--what-sem {
    position: absolute;
    width: 150px;
    right: 15px;
    top: 50px
}

.hero-section--right__wrapper .doodle--strokes {
    position: absolute;
    width: calc(100vw - 30%);
    top: 0;
    z-index: -1;
    max-width: 250px;
}

.brief-section {
    text-align: center;
    position: relative;
    z-index: 3;
    overflow: hidden;
}

.brief-section h2 {
    font-weight: 900;
}

.padding--top{
    padding: 4.5rem 1rem 0;
}

.blob--1 {
    position: absolute;
    left: -50%;
    top: -20%;
    z-index: -1;
}

.blob--2 {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.certs-section {
    position: relative;
}

.certs-section .arrow--1 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -80px;
    z-index: 99;
    width: 110px;
}

.certs-section .arrow--1 img {
    width: 100%;
}

.hero-section__arrow {
    width: 150px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 50%) rotate(90deg);
}

.hero-section__arrow img {
    width: 100%;
}

.achievement__wrapper {
    border: 4px solid black;
    border-bottom: 0;
    padding: 1.5rem 1rem;
}

.achievement__wrapper h3 {
    font-weight: 900;
    margin-bottom: 1rem;
    text-align: center;
}

.achievement__wrapper:first-child {
    background-color: var(--color--lightblue);
}

.achievement__wrapper:nth-child(2) {
    background-color: var(--color--purple);
}

.achievement__wrapper:last-child {
    background-color: var(--color--lightgreen);
    border-bottom: 4px solid black;
}

.achievement__items {
    display: flex;
    justify-content: center;
}

.achievement__items.horizontal img {
    padding: 0 5px;
    width: 100px;
}

.achievement__items.vertical {
    flex-direction: column;
    align-items: center;
}

.achievement__items.vertical img {
    padding: 0 5px;
    width: 200px;
    margin-bottom: 1rem;
}

.achievement__items.vertical img:last-child {
    padding: 0 5px;
    width: 200px;
    margin-bottom: 0;
}

.core-team-section {
    position: relative;
    background-color: var(--color--yellow);
}

.core-team-section__left__wrapper {
    display: flex;
    justify-content: center;
}

.core-team-section__left__wrapper h2 {
    font-weight: 900;
}

.core-team-section__left__buttons {
    margin-top: 2rem;
}

.core-team-section__right__wrapper {
    padding-bottom: 0;
}

.core-team-section__right__image {}

.core-team-section__right__image img {
    width: 100%;
}

.core-team-section__container {
    position: relative;
}

.core-team-section .shape-1 {
    position: absolute;
    bottom: 0;
    transform: translateX(-50%);
    left: 50%;
    width: 140px;
}

.core-team-section .shape-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 180px;
}

.services-section {
    position: relative;
    overflow-x: hidden;
}

.services-section .blob--3 {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.services-section--left__wrapper {
    padding: var(--padding-standard);
    position: relative;
}

.services-section--left {
    padding: var(--padding-standard);
    padding-left: 0;
    padding-right: 0;
}

.services-section--left h2 {
    font-weight: 900;
    font-size: 32px;
    margin-bottom: 0;
}

.services-section--right__wrapper {
    position: relative;
    overflow: hidden;
}

.hazard-tapes {
    background-image: repeating-linear-gradient( -55deg, #000, #000 20px, #ffb101 20px, #ffb101 40px);
    color: #FEB100;
    font-weight: 900;
}

.hazard-tapes.hazard-taps__border-horizontal.top {
    height: 30px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hazard-tapes.hazard-taps__border-horizontal.bottom {
    height: 30px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

.hazard-tapes.hazard-taps__border-vertical.left {
    width: 30px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hazard-tapes.hazard-taps__border-vertical.right {
    width: 30px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}

.hazard-tapes.hazard-taps__border-vertical marquee {
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.services-section__content {
    width: calc(100% - 60px);
    height: calc(100% - 60px);
    margin: 30px auto;
}

.service-section__content-inner {
    height: 100%;
    display: flex;
    align-items: stretch;
}

.bg--lightblue1 {
    background-color: var(--color--lightblue--1);
}

.bg--lightblue {
    background-color: var(--color--lightblue);
}

.bg--purple {
    background-color: var(--color--purple);
}

.bg--lightgreen {
    background-color: var(--color--lightgreen);
}

.bg--yellow {
    background-color: var(--color--yellow);
}

.bg--lightyellow {
    background-color: var(--color--lightyellow);
}

.bg--darkred {
    background-color: var(--color--darkred);
}

.bg--lightred {
    background-color: var(--color--lightred);
}

.bg--lightchocolate {
    background-color: var(--color--lightchocolate);
}

.bg--rainbow {
    background: linear-gradient(90deg, var(--color--purple), var(--color--lightchocolate),  var(--color--lightgreen), var(--color--lightblue), lightskyblue, lavender);
    background-size: 600% 600%;
    animation: animateRainbow 10s linear infinite;
  }

  @keyframes animateRainbow {
    0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
  }
.service__item {
    font-weight: 900;
    height: 100%;
    padding: 1rem;
    text-align: center;
    min-height: 100px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-size: cover;
    background-repeat: no-repeat;
}

.service__item span {
    display: inline;
    text-shadow: 2px 0 0 #fff, -2px 0 0 #fff, 0 2px 0 #fff, 0 -2px 0 #fff, 1px 1px #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
}

.service__item a {
    color: #000;
}

.promotion__wrapper {
    background-image: url('/assets/site/img/promotion_bg.webp');
    background-size: cover;
    background-position: center center;
    max-width: 1000px;
    border: 4px solid #000;
    box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
    -webkit-box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
    -moz-box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
    margin: 0 auto;
}

.promotion__wrapper-inner {
    padding: 0.5rem;
    margin: 0 auto;
}

.promotion__image {
    margin-bottom: 1rem;
}

.promotion__image img {
    width: 100%;
}

.promotion__content {
    padding: 1rem;
    border: 4px solid #000;
    box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 1);
    -webkit-box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 1);
    -moz-box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 1);
    background-color: #FFFEF1;
    text-align: center;
}

.promotion__content h2 {
    font-weight: 900;
}

.promotion__content__buttons {
    margin-top: 2rem;
    text-align: left;
}

.promotion__content__buttons h3 {
    font-size: 1.1rem;
    font-weight: 900;
}

.promotion__content__buttons a {
    color: #000;
}

.cta-section {
    position: relative;
    overflow: hidden;
    background-color: #F87777;
    z-index: 3;
}

.cta-section .blob {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    width: 1000px;
}

.cta__cta-content {
    margin-bottom: 4rem;
}

.cta__cta-content h3 {
    font-weight: 900;
}

.client-section {
    position: relative;
}

.client-section marquee {
    margin: 0;
    display: block;
}

.client-section marquee .client {
    display: inline-block;
    width: 150px;
}

.client-section marquee .client img {
    width: 100%;
    height: 100%;
}

.client-section__content {
    border: 4px solid #000;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: calc(100% - 100px);
    max-width: 400px;
    background-color: #FFFEF1;
    z-index: 3;
    font-weight: 900;
    font-size: 24px;
    padding: 0.5rem;
    box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
    -webkit-box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
    -moz-box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
}

.section__title {
    margin-bottom: 2.5rem;
}

.section__title h2 {
    font-weight: 900;
}

.section__title p {
    max-width: 500px;
}

.portfolio__wrapper {
    border: 4px solid #000;
    box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
    -webkit-box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
    -moz-box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
    margin-bottom: 1.5rem;
}

.portfolio__header {
    padding: 0.5rem;
    background-color: #0A4DB1;
    color: #fff;
    display: flex;
    justify-content: space-between;
}

.portfolio__link {
    background-color: #C9C9C9;
    border: 2px solid #000;
}

.portfolio__link a {
    padding: 0.5rem 0.2rem;
    color: #000;
}

.portfolio__content__image-wrapper {
    height: 200px;
    overflow: hidden;
}

.portfolio__content__image-wrapper img {
    width: 100%;
    object-position: top;
    object-fit: cover;
}

.portfolio__title {
    width: 200px;
    overflow-x: hidden;
}

.page-title {
    height: 100px;
}

.page-title h1 {
    font-size: 42px;
    word-wrap: break-word;
    margin: 0;
}

.clippy {
    position: fixed;
    bottom: 60px;
    right: 0px;
    margin: 0 10px;
    z-index: 99;
}

.clippy a {
    color: #000;
}

.clippy__chat {
    background-color: #FFFFCC;
    border-radius: 10px;
    padding: 10px;
    text-align: left;
    width: 100%;
    max-width: 220px;
    border: 4px solid #000;
    box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
    -webkit-box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
    -moz-box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
    position: relative;
    margin-bottom: 20px;
}

.clippy__chat:after {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    left: auto;
    right: 38px;
    bottom: -30px;
    ;
    border: 12px solid;
    border-color: #000 #000 transparent transparent;
    z-index: 99;
}

.clippy__chat p {
    font-size: 0.8rem;
}

.clippy__image {
    display: flex;
    justify-content: flex-end;
}

.custom-form-control {
    border: 3px solid #000;
    border-radius: 0;
    background-color: #fff;
}

.custom-form-control:focus {
    border: 3px solid var(--color--yellow);
    border-radius: 0;
    box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
    -webkit-box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
    -moz-box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
}

.form-group label {
    font-weight: 900;
}

.contact__way {
    margin-bottom: 2rem;
    border: 4px solid #000;
    height: 100%;
    border-bottom: 0;
    padding: 1rem;
}

.contact-ways-section .row .col-md-3:last-child .contact__way {
    border-bottom: 4px solid #000;
    background-color: #000;
    min-height: 200px;
}

.web__pricing__item {
    border: 4px solid #000;
    box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
    -webkit-box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
    -moz-box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
}

.web__pricing__item__title {
    border-bottom: 4px solid #000;
}

.web__pricing__item__title h3 {
    font-weight: 900;
    text-align: center;
}

.web__pricing__item__price {
    border-bottom: 4px solid #000;
}

.web__pricing__item__price h3 {
    text-align: center;
    font-weight: 900;
}

.color-changing-text {
    animation: color-change 2s infinite;
}

.vision-mission__content {
    min-height: 300px;
    border: 4px solid #000;
}

.scratch__content {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    font-weight: 900;
    padding: 0.5rem;
}

.vision__logo__wrapper {
    max-width: 250px;
}

.introduction__content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.team-member__wrapper {
    border: 4px solid #000;
    box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
    -webkit-box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
    -moz-box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
}

.team-member__img {
    border-bottom: 4px solid #000;
}

.team-member__img img {
    width: 100%;
    object-fit: contain;
}

.team-member__content {
    padding: 0.5rem;
}

.team-member__title {
    font-size: 0.8rem;
    font-weight: 900;
}

.design-showcase img {
    width: 100%;
    object-fit: contain;
}

.website-type__wrapper {
    border: 4px solid #000;
    box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
    -webkit-box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
    -moz-box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
    display: flex;
}

.website-type__title h3 {
    font-weight: 900;
    font-size: 1.5rem;
}

.website-type__img {
    border-right: 4px solid #000;
}

.website-type__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.website-type__content {
    padding: 0.5rem;
}

.usp__wrapper {
    border: 4px solid #000;
    box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
    -webkit-box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
    -moz-box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
    padding: 1rem;
}

.usp__title h4 {
    font-weight: 900;
    font-size: 1.2rem;
}

.usp__icon {
    width: 50px;
    height: 50px;
    margin-bottom: 0.5rem
}

.usp__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.coming-soon-section {
    height: 100vh;
    width: 100vw;
    background-color: #000;
    position: relative;
}

.coming-soon__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.coming-soon__content h1 {}

.cta--btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
}

.usp-section,
.example-section {
    position: relative;
    z-index: 3;
    overflow: hidden;
}

.article__wrapper {
    padding: 1rem;
    border: 4px solid #000;
    box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
    -webkit-box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
    -moz-box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
    background-color: #fff;
    position: relative;
}

.article__wrapper a {
    text-decoration: none;
    color: #000;
}

.article__img {
    height: 150px;
    border: 4px solid #000;
    margin-bottom: 1rem;
}

.article__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article__title {
    height: 80px;
    overflow-y: hidden;
}

.article__title h4 {
    font-size: 16px;
    font-weight: 900;
}

.more-articles-section {
    border: 4px solid #000;
    box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
    -webkit-box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
    -moz-box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
}

.mobile__menu__stripe .others a {
    color: #fff;
    font-size: 0.8rem;
}

.winxp-window {
    border: 2px solid #7B9EBD;
    border-top: none;
    box-shadow: 4px 4px 0px 0px #0A246A;
    background-color: #FFFFFF;
    width: auto;
    max-width: 100%;
    margin-right: 10px;

}

.winxp-title-bar {
    background-color: #0A246A;
    background-image: linear-gradient(#3762B0, #0A246A);
    padding: 4px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.winxp-title {
    font-family: Tahoma, sans-serif;
    color: #FFFFFF;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.winxp-logo {
    height: 20px;
    margin-right: 8px;
}

.winxp-close {
    color: #FFFFFF;
    cursor: pointer;
    background-color: #C00;
    padding: 2px 6px;
    border: 1px solid #800;
    border-radius: 8px;
}

.image__wrapper img {
    display: block;
    height: auto;
    width: 100%;
    border: 1px solid #7B9EBD;
    background-color: #FFFFFF;
}

.myImage-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.slick-slider .slick-prev,
.slick-slider .slick-next {
    top: 50%;
    z-index: 1000;
    transform: translateY(-50%);
    position: absolute;
}

.slick-slider .slick-prev {
    left: -40px; /* Adjust as needed */
}

.slick-slider .slick-next {
    right: -40px; /* Adjust as needed */
}



@keyframes color-change {
    0% {
        color: red;
    }
    25% {
        color: blue;
    }
    50% {
        color: green;
    }
    75% {
        color: blue;
    }
    100% {
        color: red;
    }
}

.bounce {
    align-self: flex-end;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    transform-origin: bottom;
    animation-name: bounce;
    animation-timing-function: linear;
}

@keyframes bounce {

    0% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-70px);
    }

    50% {
        transform: translateY(0);
    }

    75% {
        transform: translateY(-35px);
    }

    100% {
        transform: translateY(0);
    }
}

.bounce-what {
    align-self: flex-end;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    transform-origin: bottom;
    animation-name: bounce-what;
    animation-timing-function: linear;
}



@keyframes bounce-what {

    0% {
        transform: translateY(0);
    }


    50% {
        transform: translateY(-30px);
    }


    100% {
        transform: translateY(0);
    }
}




.benefit-card-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}

.benefit-card {
    width: 250px;
    height: 250px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    margin-left: 0;
    margin-bottom: 1rem;
    border: 4px solid #000;
    box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
    -webkit-box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
    -moz-box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
}

.benefit-card h1 {
    text-align: benefit-card-center;
}

.benefit-card .additional {
    position: absolute;
    width: 100%;
    height: 100%;

    transition: width 0.4s;
    overflow: hidden;
    z-index: 2;

}




.benefit-card:hover .additional {
    width: 0;
    border-radius: 0 5px 5px 0;
}

.benefit-card .additional .user-benefit-card {
    width: 100%;
    height: 100%;
    position: relative;
    float: left;
}

.benefit-card .additional .user-benefit-card::after {
    content: "";
    display: block;
    position: absolute;
    top: 10%;
    right: -2px;
    height: 80%;

}

.benefit-card .additional .user-benefit-card .level,
.benefit-card .additional .user-benefit-card .points {
    top: 15%;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.75em;
    font-weight: bold;
    background: rgba(0, 0, 0, 0.15);
    padding: 0.125rem 0.75rem;
    border-radius: 100px;
    white-space: nowrap;
}


.benefit-card .additional .user-benefit-card .points {
    top: 85%;
}

.benefit-card .additional .user-benefit-card svg {
    top: 50%;
}

.benefit-card .additional .more-info {
    visibility: hidden;
    float: left;
    position: absolute;
    top: 15%;

    right: 10%;
    left: 158px;
    height: 100%;
}

.benefit-card .additional .more-info h1 {
    color: #fff;
    margin-bottom: 0;
}



.benefit-card .additional .coords {
    margin: 0 1rem;
    color: #fff;
    font-size: 1rem;
}



.benefit-card .additional .coords span+span {
    float: right;
}

.benefit-card .additional .stats {
    font-size: 2rem;
    display: flex;
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    top: auto;
    color: #fff;
}



.benefit-card .additional .stats>div {
    flex: 1;
    text-align: benefit-card-center;
}

.benefit-card .additional .stats i {
    display: block;
}

.benefit-card .additional .stats div.title {
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
}

.benefit-card .additional .stats div.value {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.5rem;
}

.benefit-card .additional .stats div.value.infinity {
    font-size: 2.5rem;
}

.mobile-general{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 10%;
    right: 0;
    z-index: 1;
    box-sizing: border-box;
    padding: 1rem;
    padding-top: 0;
}

.benefit-card .general {
    visibility: hidden;
    width: 300px;
    height: 100%;
    position: absolute;
    text-align: center;
    top: 23%;
    right: 0;
    z-index: 1;
    box-sizing: border-box;
    padding: 1rem;
    padding-top: 0;
}

.benefit-card .general .more {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-size: 0.9em;
}

.detail_wrap{
    margin-top: 10px;
    position: relative;
    text-align: center;
    left: -15%;
}

.candicate__wrapper{
    border: 4px solid #000;
    box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
    -webkit-box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
    -moz-box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
}

.center-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
  }

.mobile_arrow{
    width: 30px;
    height:auto;
}

.mobile-arrow-inverted{
    transform: scaleX(-1);
}

.display-check-1{
    display: block;
}

.display-check-2{
    display: none;
}

.flip-card-wrapper .flip-card {
    position: relative;
    cursor: pointer;
    transition-duration: 0.6s;
    transition-timing-function: ease-in-out;
    transform-style: preserve-3d;
    background-size: cover;
    background-position: center;
}

.flip-card-wrapper .flip-card .front,
.flip-card-wrapper .flip-card .back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transform: rotateX(0deg);
}

.flip-card-wrapper .flip-card .front {
    z-index: 2;
}

.flip-card-wrapper .flip-card .back,
.flip-card-wrapper.flip-right .flip-card .back {
    transform: rotateY(180deg);
}

.flip-card-wrapper:hover .flip-card,
.flip-card-wrapper.flip-right:hover .flip-card {
    transform: rotateY(180deg);
}



.flip-card-wrapper,
.flip-card {
    width: 270px;
    height: 360px;
    border-radius: 50px;
}

.flip-card .front,
.flip-card .back {
    display: flex;
    align-items: center;
    justify-content: center;
}

.anime-text-p {
    text-transform: uppercase;
    letter-spacing: 0.5em;
    display: inline-block;
    border-width: 4px 0;
    padding: 1.5em 0em;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40em;
}

.anime-text-p .anime-text-span {
    font: 700 2em "Oswald", sans-serif;
    letter-spacing: 0;
    background: url(https://uploads-ssl.webflow.com/5a9ee6416e90d20001b20038/635a9172383cb00fbb8b9c93_horizontal.svg) repeat-y;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: aitf 10s linear infinite;
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
}

@-webkit-keyframes aitf {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.anime-text-bg {
    background: rgba(255, 255, 255, 0.6);
    width: 100%;
    height: fit-content;

}

.back-text-bg {
    background: rgba(255, 255, 255, 0.9);
    width: 100%;
    height: fit-content;
    border-radius: 20px;
}

.mobile__section__right h1{
 font-size: 30px;
}

.mobile-padding{
    padding: 2.5rem 1rem 0;
}

.mobile__section-small {
    margin: 0.25rem;
    padding: 0.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.incubator_small_gif{
    width: 50px;
    height:auto;
}
.web__hero-section--left {
    display: flex;
    margin: 0;
    padding-bottom: 0%;
}

.web__hero-section--left img {
    min-width: 100%;
    max-height: 100%;
    height: 300px;
    animation: scaleAnimation 2s infinite;
}
.web_padding--left{
    padding: 10%;
    padding-bottom: 5%;
}
.web_padding--right{
    padding-bottom: 5%;
}
.web__hero-section--right_buttons {
    margin-top: 10;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes scaleAnimation {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
  }

.web__hero-section--right{
    padding: 5%;
}

.containers {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .big_text {
    position: absolute;
    text-align: center;
    width: 100%;
    top: 50%;
    right: 50%;
    transform: translate(50%,-50%);
    font-family:var(--font-family--primary);
    font-weight: 700;
    color: #ffffff;
    text-shadow: 1px 1px 1px #000000,
        1px 2px 1px #000000,
        1px 3px 1px #000000,
        1px 4px 1px #000000,
        1px 5px 1px #000000,
        1px 6px 1px #000000,
        1px 7px 1px #000000,
        1px 8px 1px #000000,
        1px 9px 1px #000000,
        1px 10px 1px #000000,
    1px 18px 6px rgba(16,16,16,0.4),
    1px 22px 10px rgba(16,16,16,0.2),
    1px 25px 35px rgba(16,16,16,0.2),
    1px 30px 60px rgba(16,16,16,0.4);
}
.big_text span {
    animation: textAnimation 3s infinite;
}
@keyframes textAnimation {
    0%, 100% {
        color: #f08400;
        font-size: 43px;
    }
    50% {
        color: #000000;
        font-size: 30px;
    }
}

.padding--web_section_2 {
    padding: 8rem 2rem;
}

.padding--web_section_4 {
    padding: 2rem 2rem;
}
.web_section3_title h1{
    text-align: center;
    font-size: 30px;
    color: #fa7f67;
    text-shadow: 1px 1px 1px #000000,
        1px 2px 1px #000000,
        1px 3px 1px #000000,
        1px 4px 1px #000000,
        1px 5px 1px #000000,
        1px 6px 1px #000000,
        1px 7px 1px #000000,
        1px 8px 1px #000000,
        1px 9px 1px #000000,
        1px 10px 1px #000000,
    1px 18px 6px rgba(16,16,16,0.4),
    1px 22px 10px rgba(16,16,16,0.2),
    1px 25px 35px rgba(16,16,16,0.2),
    1px 30px 60px rgba(16,16,16,0.4);
}

.card-section {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    width: 100%;
}

.card-front__heading {
    font-size: 1.5rem;
    margin-top: .25rem;
    text-align: center;
}

.inside-page__heading {
    padding-bottom: 1rem;
    width: 100%;
}

.inside-page__heading,
.card-front__text-view {
  font-size: 1.3rem;
  font-weight: 800;
  margin-top: .2rem;
}

.inside-page__heading--beach,
.card-front__text-view--beach { color: #fa7f67; }

.card-front__tp { color: #fafbfa; }

.card-front__icon {
    fill: #fafbfa;
    font-size: 3vw;
    height: 3.25rem;
    margin-top: -.5rem;
    width: 3.25rem;
  }

.card-area {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    justify-content: space-evenly;
    padding: 1rem;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    position: relative;
}

.card-section {
    align-items: center;
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 10px;
    box-sizing: border-box;
}

.card {
    background-color: rgba(255, 0, 0, 0.05);
    border: 4px solid #000;
    box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
    height: 20rem;
    position: relative;
    transition: all 1s ease;
    width: 20rem;
    border-radius: 10px;
}

.web_flip-card {
    height: 20rem;
    perspective: 100rem;
    position: absolute;
    right: 0;
    transition: all 1s ease;
    width: 20rem;
    z-index: 2;
}

.web_flip-card__container {
    height: 100%;
    position: absolute;
    right: 0;
    transform-origin: left;
    transform-style: preserve-3d;
    transition: all 1s ease;
    width: 100%;
  }

.card-front,
.card-back {
    backface-visibility: hidden;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.card-front {
    height: 20rem;
    width: 20rem;
    position:relative;
    border-radius: 10px;
  }

.card-front__tp {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 19.5rem;
    justify-content: center;
    padding: .75rem;
    border-radius: 10px;
}

.card-front__tp--beach {
    background: linear-gradient(
    to bottom,
    #fb9b88,
    #f86647
    );
}

.inside-page {
    background-color: #fafbfa;
    box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
    height: 100%;
    padding: 1rem;
    position: absolute;
    right: 0;
    transition: all 1s ease;
    width: 20rem;
    z-index: 1;
    border-radius: 10px;
}

.inside-page__container {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
    width: 100%;
    overflow-y: auto;
}

.card:hover {
    box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
    position: relative;
    width: 20rem;
}

.card:hover .web_flip-card__container {
    transform: skewX(-180deg);
}

.card:hover .inside-page {
    z-index: 2;
    border-radius:10px ;
}

.card-back {
    transform: rotateY(180deg) translate3d(0, 0, 0);
    height: 19.5rem;
}

.card-back img {
    width: 100%;
    height: 100%;
    border-radius: 10px 0px 0px 10px;
}

.rocket-track {
    background: url(http://andreypokrovskiy.com/image_hosting/boredom/space-bg.jpg);
    margin-left: -80vw;
    width: 180vw;
    overflow: hidden;
}

.rocket-track__inner {
    width: max-content;
    display: flex;
}
.rocket-svg {
    width: 150px;
    height: 150px;
}

.rocket-track-top {
    background: url(http://andreypokrovskiy.com/image_hosting/boredom/space-bg.jpg);
    margin-left: -80vw;
    width: 180vw;
    overflow: hidden;
}

.rocket-track__inner-top {
    width: max-content;
    display: flex;
}
.rocket-svg-top {
    width: 150px;
    height: 150px;
}

.rocket-track-bottom {
    background: url(http://andreypokrovskiy.com/image_hosting/boredom/space-bg.jpg) ;
    margin-right: 80vw;
    width: 100vw;
    overflow: hidden;
}

.rocket-track__inner-bottom {
    width: max-content;
    display: flex;
}

.rocket-svg-bottom{
    width: 150px;
    height: 150px;
}



.swiper-slide:nth-of-type(1) .sliderText {
    background: var(--color--lightblue);
    clip-path: polygon(0 0, 100% 0%, 100% 83%, 0% 100%);
}
.swiper-slide:nth-of-type(2) .sliderText {
    background: var(--color--lightchocolate);
    clip-path: polygon(0 0, 100% 0%, 100% 83%, 0% 100%);
}
.swiper-slide:nth-of-type(3) .sliderText {
    background: var(--color--lightred);
    clip-path: polygon(0 0, 100% 0%, 100% 83%, 0% 100%);
}
.swiper-slide:nth-of-type(4) .sliderText {
    background: var(--color--yellow);
    clip-path: polygon(0 0, 100% 0%, 100% 83%, 0% 100%);
}
.swiper-slide:nth-of-type(5) .sliderText {
    background:rgb(50, 50, 255);
    clip-path: polygon(0 0, 100% 0%, 100% 83%, 0% 100%);
}

.card-slider{
    position: relative;
    background: #fff;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 1);

}

.card-slider .content{
    width: 400px;
    padding: 20px 0px 0px 10px;
    box-sizing: border-box;
    text-align: center;

}

.card-slider .sliderText{
    width: 100%;
    position: relative;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}

.card-slider .sliderText img{
    width: 400px;
    height: 300px;
}

.swiper-slide{
    width: 400px;
}

.incubator__content {
    padding: 0.5rem;
}

.incubator__content:hover {
    cursor: pointer;
    text-decoration: underline;
}

.incubator-detail__image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 1rem;
}

.incubator-detail__image img{
    width: 100%;
    object-fit: contain;
}

.incubator-detail__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.incubator-detail__info h4{
    padding-bottom: 1rem;
}

.incubator-detail__desc {
    padding: 2rem 0rem;
}

.what-we-do-section .section__title  p{
    padding-top: 2rem;
    max-width: unset;
}
