html.has-navbar-fixed-top,
body.has-navbar-fixed-top {
    padding-top: 0;
}
a.disabled {
    pointer-events: none;
    cursor: no-drop;
}
a.disabled:hover, a.disabled:active,
a.disabled:focus {
    cursor: not-allowed;
}

.nav-vindict.extended {
    border: none;
    background: transparent;
}

.nav-vindict.extended .vindict-brand {
    color: #fff !important;
}

.nav-vindict.extended .nav-effect:before,
.nav-vindict.extended .nav-effect:before {
    color: #fff;
}

.nav-vindict.extended .nav-effect {
    color: rgba(255, 255, 255, .85);
}

.nav-vindict.extended .lang-selector {
    color: rgba(255, 255, 255, .9);
}

.nav-vindict.extended .active.lang-selector {
    background: #fff;
    color: #3a3a3a;
}

.gradient-main {
    position: relative;
    min-height: 75vh;
    background: linear-gradient(121.28deg, #0E5432 0%, #D6AD96 100%), linear-gradient(121.28deg, #FF0000 0%, #FFBABA 100%), linear-gradient(140.54deg, #7000FF 0%, #0015D1 72.37%), linear-gradient(307.43deg, #FFE927 0%, #7B1FA2 100%), radial-gradient(107% 142.8% at 15.71% 104.5%, #FFFFFF 0%, #A7AA00 100%), #FFFFFF;
    background-blend-mode: overlay, overlay, difference, difference, difference, normal;
}

.animated-in, .animated-in.after {
    
    animation-fill-mode: forwards;
    animation-duration: 1.75s;
    transition: transform 1.5s linear;
    will-change: transform;
    visibility: hidden;
}

.animated-in.after {
    animation-duration: 1.5s;
    animation-delay: .5s;
    transition: transform 1.5s linear;
}

.animate {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
}

.case-header {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    padding: 10rem 0 4rem;
    text-align: center;
}

.case-subheader {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0 0 5rem;
    text-align: center;
}

.scroll-btn {
	display: block;
	position: absolute;
    left: calc(50% - 18px);
	bottom: 0;
    text-align: center;
    -webkit-animation-name: opacityMouse;
    animation-name: opacityMouse;
    animation-fill-mode: forwards;
    animation-duration: .75s;
    animation-delay: 1s;
    transition: opacity .75s linear;
    will-change: opacity;
    opacity: 0;
}

.scroll-btn > *:hover,
.scroll-btn > *:focus,
.scroll-btn > *.active {
	color: rgba(255,255,255,0.75);
}
.scroll-btn .mouse {
	position: relative;
	display: block;
	width: 36px;
	height: 56px;
	margin: 0 auto 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border: 1.5px solid rgba(255,255,255,.75);
	border-radius: 10rem;
}
.scroll-btn .mouse:hover, .scroll-btn .mouse:active, .scroll-btn .mouse:focus {
    cursor: pointer;
}
.scroll-btn .mouse > * {
	position: absolute;
    display: block;
    top: 29%;
    left: 14.5px;
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,.75);
    border-radius: 30%;
    -webkit-animation: ani-mouse 2.5s linear infinite;
    -moz-animation: ani-mouse 2.5s linear infinite;
    animation: ani-mouse 2.5s linear infinite;
}

.about-container {
    background-position: 0 10%;
    background-size: 10%;
    background-repeat: no-repeat;
}
.about-client {
    display: flex;
    flex-direction: column;
    max-width: 80%;
    margin-left: 10%;
    margin-right: 10%;
}
.about-client h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.about-client p:not(:last-child) {
    margin-bottom: 4rem;
}
.client-video {
    margin: 3rem 0;
    border-radius: .25rem;
    box-shadow: 0 10px 20px rgba(150,150,150,0.16), 0 6px 6px rgba(150,150,150,0.23);
}
.colors {
    margin: 1rem 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.colors .color {
    position: relative;
    width: 75px;
    height: 75px;
    display: flex;
    border: 3px solid #fff;
    border-radius: .25rem;
    background: #f5f5f5;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: transform .35s ease-out;
    will-change: transform;
}
.colors .color:hover, .colors .color:active,
.colors .color:focus {
    cursor: pointer;
    transform: translateY(-5px);
}
.colors .color:not(:last-child) {
    margin-right: 1.5rem;
}
.colors .color.gold {
    background: #eee2cc;
}
.colors .color.green {
    background: #52969e;
}
.colors .color.white {
    background: #fff;
}
.tooltip {
    position: relative;
}
.tooltip .tooltiptext {
    visibility: hidden;
    width: 150px;
    background-color: #c9c9c9;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: .25rem;
    top: -2.5rem;
    left: calc(-75px / 2);
    position: absolute;
    z-index: 1;
    transition: transform .3s ease-out;
    will-change: transform;
    transform: translateY(5px);
}
.tooltip:hover .tooltiptext {
    visibility: visible;
    transform: translateY(-5px);
}
.tooltip .tooltiptext::after {
    content: " ";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #c9c9c9 transparent transparent transparent;
  }
.design-example h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.font-area {
    display: flex;
    flex-direction: column;
}
.font-name {
    font-family: 'Segoe UI',Frutiger,'Frutiger Linotype','Dejavu Sans','Helvetica Neue',Arial,sans-serif;
    width: 100%;
    font-size: 2.5rem;
    margin-bottom: .75rem;
}
.font-example {
    font-family: 'Segoe UI',Frutiger,'Frutiger Linotype','Dejavu Sans','Helvetica Neue',Arial,sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0;
}
.client-bottom {
    display: flex;
    flex-direction: row;
    width: 100%;
}
.client-bottom .column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.client-bottom .column.direction-back {
    align-items: center;
    flex: none;
    width: 25%;
}
.client-bottom .column.direction-forward {
    align-items: center;
    flex: none;
    width: 25%;
}
.client-bottom .column.direction-center {
    align-items: center;
    width: 50%;
    flex: none;
}
.client-bottom .column.direction-back a,
.client-bottom .column.direction-forward a {
    text-align: center;
}
.case-icon {
    width: 75%;
    text-align: center;
    border-radius: .25rem;
    margin-bottom: 1rem;
    box-shadow: 0 3px 6px rgba(155,155,155,0.16), 0 3px 6px rgba(155,155,155,0.23);
    transition: transform .3s ease-out;
    will-change: transform;
}
.case-icon:hover, .case-icon:active,
.case-icon:focus {
    transform: translateY(-5px);
}
.final-offer-header {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-align: center;
}
.inner-links {
    display: flex;
    flex-direction: row;
    width: 100%;
}
.inner-links .column {
    display: flex;
    height: 50px;
    padding: 0;
    border: 4px solid transparent;
    border-radius: 25rem;
    text-align: center;
    transition: border .35s linear;
    will-change: border;
    justify-content: center;
    align-items: center;
}
.inner-links .column a {
    width: 100%;
    height: 100%;
    line-height: 42px;
    color: #4a4a4a;
    font-weight: 600;
    font-size: 1.1rem;
    transition:color .35s linear;
    will-change: color;
}
.inner-links .column:hover, .inner-links .column:active, 
.inner-links .column:focus {
    border: 4px solid #ff244d;
}
.inner-links .column:hover a, .inner-links .column:active a, 
.inner-links .column:focus a {
    color: #ff244d;
}
hr {
    width: 100%;
}
.arrow-button-prev i,
.arrow-button-next i {
    transition: transform .3s ease-out;
    will-change: transform;
}
.arrow-button-next:hover i, .arrow-button-next:active i, 
.arrow-button-next:focus i {
    transform: translateX(5px);
}
.arrow-button-prev:hover i, .arrow-button-prev:active i, 
.arrow-button-prev:focus i {
    transform: translateX(-5px);
}


@media (max-width:768px) {
    .case-header {
        font-size: 2rem;
        padding: 4rem 0 4rem;
    }
    .case-subheader {
        font-size: 1.25rem;
        margin: 0 0 8rem;
    }
    .nav-vindict.extended .vindict-toggler span {
        background: #fff;
    }
    .nav-vindict.extended .nav-effect:before, .nav-vindict.extended .nav-effect:before {
        color: #3b3b3b;
    }
    .nav-vindict.extended .nav-effect {
        color: #757575;
    }
    .nav-vindict.extended .active.lang-selector {
        color: rgba(255, 255, 255, .9);
        background: #7f7f7f;
    }
    .nav-vindict.extended .vindict-toggler.open span {
        background: #3b3b3b;
    }
    .colors .color {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    .font-name {
        font-size: 2rem;
    }
    .font-example {
        font-size: 1.25rem;
    }
    .section {
        padding: 2rem 1.5rem;
    }
    .client-bottom {
        flex-direction: column;
    }
    .client-bottom .column.direction-back {
        order: 3;
        width: 100%;
    }
    .client-bottom .column.direction-center {
        order: 1;
        width: 100%;
        margin-bottom: 2rem;
    }
    .client-bottom .column.direction-forward {
        align-items: center;
        flex: none;
        width: 100%;
        order: 2;
        margin-bottom: 2rem;
    }
}

@-webkit-keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 300%, 0);
        transform: translate3d(0, 300%, 0);
        visibility: hidden;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }
}

@keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 300%, 0);
        transform: translate3d(0, 300%, 0);
        visibility: hidden;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }
}

@-webkit-keyframes opacityMouse {
    from {
        opacity: 0;
    }

    to {
        opacity: 100%;
    }
}

@keyframes opacityMouse {
    from {
        opacity: 0;
    }

    to {
        opacity: 100%;
    }
}

@-webkit-keyframes ani-mouse {
    0% {
        opacity: 1;
        top: 29%;
    }

    15% {
        opacity: 1;
        top: 50%;
    }

    50% {
        opacity: 0;
        top: 50%;
    }

    100% {
        opacity: 0;
        top: 29%;
    }
}

@-moz-keyframes ani-mouse {
    0% {
        opacity: 1;
        top: 29%;
    }

    15% {
        opacity: 1;
        top: 50%;
    }

    50% {
        opacity: 0;
        top: 50%;
    }

    100% {
        opacity: 0;
        top: 29%;
    }
}

@keyframes ani-mouse {
    0% {
        opacity: 1;
        top: 29%;
    }

    15% {
        opacity: 1;
        top: 50%;
    }

    50% {
        opacity: 0;
        top: 50%;
    }

    100% {
        opacity: 0;
        top: 29%;
    }
}
