@charset "UTF-8";

@import url('https://fonts.googleapis.com/css?family=Rubik|Roboto:300,400|Barlow+Condensed:300,400,500');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;300;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Dongle:wght@300;400&family=Noto+Serif+Khitan+Small+Script&family=Oleo+Script:wght@400;700&family=Satisfy&family=Tiny5&display=swap');

:root {
    --color-red: #d4252c;
}

@-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@-moz-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-15px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -ms-transform: translateY(0);
        transform: translateX(0);
    }

    40% {
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    60% {
        -ms-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

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

    25% {
        background-position: 60% 40%;
    }

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

    75% {
        background-position: 40% 60%;
    }

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

html, body {
    width: 100%;
    height: 100%;
    font-family: sans-serif;
}

a {
    color: inherit;
}

a:hover {
    color: inherit;
    text-decoration: none;
}

h1, a.h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 75px;
    font-weight: 500;
    text-transform: none;
    text-decoration: none;
    line-height: 70px;
    margin-bottom: 0;
}

h1.alternate, a.h1.alternate {
    font-family: "Tiny5", sans-serif;
    font-size: 75px;
    font-weight: 400;
    font-style: normal;
    text-transform: none;
    text-decoration: none;
    position: relative;
    left: 5px;
    margin-bottom: 0;
}

h2, a.h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 400;
    font-size: 45px;
    text-transform: none;
    text-decoration: none;
    margin-bottom: 0;
}

h2.thin {
    font-weight: 300;
}

h3, a.h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 27px;
    font-weight: 400;
    line-height: 1.5em;
    text-transform: none;
    text-decoration: none;
}

h4, a.h4 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5em;
    text-transform: none;
    text-decoration: none;
}

p {
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

p a {
    border-bottom: 1px solid var(--color-red);
}

a.hoverline {
    position: relative;
    padding: 0 5px;
}

a.hoverline:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -8px;
    left: 0;
    background-color: var(--color-red);
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

a.hoverline:hover:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.title {
    text-align: center !important;
    margin-bottom: 40px;
}

hr {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(135, 37, 44, 0.45), rgba(0, 0, 0, 0));
    margin-bottom: 0;
}

#logo-svg {
    height: 26px;
    width: 50px;
}

.hidden {
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.container {
    padding-top: 5em;
}

.container-wide {
    padding: 5em 20px 0 20px;
    width: 100%;
}

.container-full {
    padding: 0;
    width: 100%;
}

.opener {
    overflow: hidden;
    border: 20px solid #ebebeb;
    border-radius: 40px;
    background: radial-gradient(var(--color-red), #000);
    background-size: 200% 200%; /* Ensure the gradient is large enough to animate */
    animation: circleGradient 5s infinite ease-in-out;
    cursor: pointer !important;
}

.card-round {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 20px;
}

.mycard {
    border: none;
    border-radius: 8px;
    padding: 25px;
    background-color: white;
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, .4);
}

.mycard h2 {
    font-size: 30px;
    font-weight: 300;
    color: #ccc;
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ccc;
}

.myimage {
    border-radius: 8px;
}

.hoverfx {
    position: relative;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 20px 15px -20px rgba(0, 0, 0, .5);
}

.hoverfx:hover {
    box-shadow: 0 20px 25px -20px rgba(0, 0, 0, .8);
}

.title-shadow {
    text-shadow: 0 3px 2px rgba(0, 0, 0, .1);
}

.company-name {
    position: absolute;
    left: 0;
    bottom: 50px;
    width: 100%;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 60px;
    text-transform: lowercase;
    margin-bottom: 10px;
    cursor: pointer;
}

.company-name img {
    max-width: 300px;
}

.company-desc {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.intro-container {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

.intro-container h1, .intro-container h2, .intro-container h3 {
    /* font-family: 'Barlow Condensed', sans-serif; */
    /* font-weight: 400; */
    display: inline-flex;
}

.intro-container h2 {
    font-size: 50px;
    margin: 0 10px;
}

.page-title {
    padding-bottom: 20px;
}

.page-title h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 400;
    font-size: 50px;
    color: var(--color-red);
    text-align: center;
    padding-bottom: 10px;
}

.page-title h2 {
    color: black;
    text-align: center;
}

.page-title h3 {
    color: black;
    text-align: center;
}

.p1 {
    font-size: 70px;
}

.p2 {
    font-size: 50px;
}

.p3 {
    font-size: 22px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

.p4 {
    font-size: 20px;
}

.p5 {
    font-size: 10px;
}

.full-height {
    position: relative;
    min-height: 85%;
    height: 85%;
}

.ajust {
    text-align: justify !important;
}

.aleft {
    text-align: left !important;
}

.aright {
    text-align: right !important;
}

.to-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;
}

.revealed {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease-in-out;
}

.bounce {
    -moz-animation: bounce 3s infinite;
    -webkit-animation: bounce 3s infinite;
    animation: bounce 3s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-8px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.pdesc h1 {
    text-align: center;
    color: var(--color-red) !important;
    font-size: 3em;
    margin-bottom: -0.5em !important;
}

.pdesc h2 {
    text-align: center;
    color: white !important;
    font-size: 2em;
    margin-bottom: -1em !important;
}

.bowl-man {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 66%;
    text-align: center;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.bowl-man img {
    position: relative;
    height: 100%;
    width: auto;

}

.footer {
    position: relative;
    width: 100%;
    background-color: #363636;
    text-align: center;
    /* Set the fixed height of the footer here */
    height: 182px;
}

.footer p {
    color: white;
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    text-align: center;
    line-height: 25px;
    padding-bottom: 0;
}

.center-x {
    text-align: center !important;
    margin: 0 auto;
}

.center-xy {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

.my-fixed-bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.slogan {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.slogan .pipka {
    cursor: pointer;
    position: relative;
    width: 80px;
    height: 40px;
}

.pipka-svg-path {
    fill: #f2f2f2;
}

.slogan .arrow-button {
    cursor: pointer;
    position: absolute;
    width: 24px;
    height: 20px;
}

.arrow-down-svg-path {
    fill: var(--color-red);
}

.ideas-and-design {
    position: relative;
    display: block;
    max-width: 90%;
    width: auto;
    height: 90px;
    margin: 0 auto;
}

.bounce {
    -webkit-animation: bounce 4s infinite;
    animation: bounce 4s infinite;
}

.home-service {
    width: 100%;
    border: solid 1px black;
    border-radius: 5px;
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    position: relative;
    display: block;
    color: black;
    font-size: 2.2em;
}

.control {
    position: relative;
    padding: 0 10px;
    display: inline-block;
    color: #333;
    cursor: pointer;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 300;
    font-size: 30px;
    text-transform: none;
}

.control:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-red);
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.control:hover:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.mixitup-control-active:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-red);
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.project {
    transform-style: preserve-3d;
}

.project img {
    border-radius: 8px;
}

.project .title {
    opacity: 0;
    transform: translateZ(50px) translateY(-50%) translateX(-50%);
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 10px;
    left: 50%;
    padding: 2px 15px;
    margin: 0;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 6px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    transition: opacity ease-in-out 0.2s;
}

.project:hover .title {
    opacity: 1;
}

.project-title {
    text-align: center;
    padding: 10px;
}

.project-title h1 {
    text-transform: none;
    font-size: 27px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 400;
    padding-bottom: 0;
    margin-bottom: 0;
}

.project-title h2 {
    color: #000;
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    text-transform: none;
}

.project .overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transform: translateZ(150px) translateY(-50%) translateX(-50%);
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    height: 60%;
    padding: 10px;
    font-size: 1em;
    background-color: rgba(242, 242, 242, .95);
    color: #000;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.service-box {
    width: 100%;
    height: 200px;
    border: 2px solid #333;
    border-radius: 20px;
    background-color: #fff;
    text-align: center;
    color: #666;
    font-size: 1em;
    padding: 20px 10px;
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, .4);
}

.service-box h3 {
    color: #333;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.3em;
    letter-spacing: normal;
    text-transform: none;
    padding-bottom: 15px;
}

.num-title {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 35px;
    font-weight: 400;
    line-height: 1;
    padding: 0 15px 20px;
}

.num-title span:first-child {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 32px;
    height: 32px;
    font-size: 20px;
    margin-top: 3px;
    margin-right: 10px;
    color: white;
    background-color: var(--color-red);
    border-radius: 50%;
}

.num-title span:nth-child(2) {
    color: var(--color-red);
    display: inline-block;
}

.list-number {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 35px;
    font-weight: 400;
    line-height: 1;
    width: 32px;
    height: 32px;
    font-size: 20px;
    margin-right: 10px;
    color: white;
    background-color: var(--color-red);
    border-radius: 50%;
}

.slider {
    position: relative;
    max-width: 1200px;
    width: 100%;
    height: 100%;
}

.slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    z-index: -1;
    cursor: pointer;
}

.slider .slide.active {
    z-index: 1;
}

.client-logo {
    max-width: 200px;
    height: auto;
    ;
}

#grid img {
    border-radius: 8px;
}

/*Media queries for xs (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {


    .ideas-and-design {
        height: 70px;
    }

    h1 {
        font-size: 50px;
    }

    h2, a.h2 {
        font-size: 30px;
    }

    .company-desc {
        font-size: 15px;
    }

    .intro-container {
        flex-direction: column;
    }

    .console span:after {
        content: "XS";
    }

    .p4 {
        font-size: 20px;
    }

    .pdesc p {
        text-align: center !important;
        font-size: 1.1em;
        padding: 40px 0;
    }

    .outer {
        padding: 0;
    }

    .cp p {
        font-size: 1em;
    }
}

/*Media queries for sm (landscape phones, 576px and up)*/
@media (min-width: 576px) and (max-width: 767.98px) {

    .console span:after {
        content: "SM";
    }

    .text-about {
        font-size: 1.25rem;
    }

    .text-services {
        font-size: 1.1rem;
        letter-spacing: 0.02em;
    }

    .tilt-inner {
        width: calc(100% - 60px);
        bottom: 7px;
    }

    .outer {
        padding: 0;
    }
}

/*Media queries for md (tablets, 768px and up)*/
@media (min-width: 768px) and (max-width: 991.98px) {

    .console span:after {
        content: "MD";
    }

    .text-about {
        font-size: 1.4rem;
    }

    .text-services {
        font-size: 1.3rem;
        letter-spacing: 0.02em;
    }

    .tilt-inner {
        width: calc(100% - 40px);
        bottom: 0;
        font-size: 0.6em;
    }

    .outer {
        padding: 1em;
    }

    .pdesc p {
        font-size: 1.2em;
        padding: 40px;
    }
}

/*Media queries for lg (desktops, 992px and up)*/
@media (min-width: 992px) and (max-width: 1199.98px) {

    .console span:after {
        content: "LG";
    }

    .text-about {
        font-size: 1.6rem;
        letter-spacing: 0.02em;
        line-height: 1.3em;
    }

    .text-services {
        font-size: 1.55rem;
        letter-spacing: 0.02em;
    }

    .tilt-inner {
        width: calc(100% - 60px);
        bottom: 7px;
        font-size: 0.7em;

    }

    .pdesc p {
        font-size: 1em;
        padding: 40px;
    }
}

/*Media queries for xl (large desktops, 1200px and up)*/
@media (min-width: 1200px) {

    .console span:after {
        content: "XL";
    }

    .text-about {
        font-size: 1.75rem;
        letter-spacing: 0;
        line-height: 1.3em;
    }

    .text-services {
        font-size: 1.75rem;
        letter-spacing: 0;
    }

    d-xl-block {
        display: block !important;
    }

    .tilt-inner {
        width: calc(100% - 50px);
        bottom: 3px;
        font-size: 0.6em;
    }
}

/*Custom media queries*/
@media (max-width: 767px) {}

/*Start of media queries for resolutions below 649 px*/
@media screen and (max-width:649px) {

    h3 {
        font-size: 20px;
    }
}

/*End of media queries for resolutions below 649 px*/


/*Start of media queries for resolutions below 450 px*/
@media screen and (max-width:450px) {
    .hide-on-mobile {
        display: none;
    }
}

/*End of media queries for resolutions below 450 px*/