/***** 1. Common - Font Installation *****/
/*Mainfont - WorkSans*/
@font-face {
    font-family: 'WorkSans';
    src: url('../fonts/workSans/WorkSans-Light.ttf');
    font-weight:300;
    font-style:normal;
}
@font-face {
    font-family: 'WorkSans';
    src: url('../fonts/workSans/WorkSans-Regular.ttf');
    font-weight:400;
    font-style:normal;
}
@font-face {
    font-family: 'WorkSans';
    src: url('../fonts/workSans/WorkSans-Medium.ttf');
    font-weight:600;
    font-style:normal;
}
@font-face {
    font-family: 'WorkSans';
    src: url('../fonts/workSans/WorkSans-SemiBold.ttf');
    font-weight:700;
    font-style:normal;
}
@font-face {
    font-family: 'WorkSans';
    src: url('../fonts/workSans/WorkSans-Bold.ttf');
    font-weight:800;
    font-style:normal;
}

/****** 2. Common - General Stylings *****/
*{
    margin:0;
    padding:0;
    scroll-behavior: smooth;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
    /* transform-style: preserve-3d; */
}
::-webkit-scrollbar {
    width: 8px;
} 
::-webkit-scrollbar-track {
    background:#aaa;
} 
::-webkit-scrollbar-thumb {
    background-color: #1f1f1f;
    outline: 1px solid #fafafa;
    border-radius: 10px;
}
::-moz-selection { 
    background: #1f1f1f; 
    color:#fafafa;
}
::selection { 
    background: #1f1f1f; 
    color:#fafafa;
}
button:focus, button:active, button:hover{
    outline: 0px;
    /* border:0px; */
}
a{
    text-decoration: none;
}
body{
    position: relative;
    font-family: 'WorkSans';
    overflow-x: hidden;
    left: 0;
    width: 100vw;
    overflow-y: scroll;
}

/*Navigation Styles*/


nav#createrix-navigation {
    position: fixed;
    display: flex;
    padding: 0 0 0 20px;
    /* border-bottom: 2px solid; */
    background: #192a56;
    justify-content: center;
    width: 100vw;
    z-index: 10;
    top: 0;
    left: 0;
}

div#logo-area {
    max-height: 80px;
    position: relative;
    padding: 9px 60px;
    width: 30%;
    min-width: 150px;
}

img#logo {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    min-width: 90px;
    min-height: auto;
    height: auto;
}

div#menu-items {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.menu-item {
    color: #fff;
    text-transform: uppercase;
    font-weight: 300;
}

.menu-item span {
    font-size: 14px;
    font-weight: 500;
}


/*Section - Home Stylings*/
section#home {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: flex-start;
    flex-direction: row;
}
div#home-animation {
    height: 100vh;
}

div#home-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #0984e3;
    padding: 0 10%;
}
#road1 {
    -webkit-animation: pageExit 1s linear forwards infinite;
    animation: pageExit 1s linear forwards infinite;
}

#road2 {
    -webkit-animation: pageEnter 1s linear forwards infinite;
    animation: pageEnter 1s linear forwards infinite;
}

#terrain1 {
    -webkit-animation: pageEnter 2s linear forwards infinite;
    animation: pageEnter 2s linear forwards infinite;
}

#terrain2 {
    -webkit-animation: pageExit 2s linear forwards infinite;
    animation: pageExit 2s linear forwards infinite;
}

#mountains1 {
    -webkit-animation: pageEnter 6s linear forwards infinite;
    animation: pageEnter 6s linear forwards infinite;
}

#mountains2 {
    -webkit-animation: pageExit 6s linear forwards infinite;
    animation: pageExit 6s linear forwards infinite;
}

#clouds1 {
    -webkit-animation: pageEnter 12s linear forwards infinite;
    animation: pageEnter 12s linear forwards infinite;
}

#clouds2 {
    -webkit-animation: pageExit 12s linear forwards infinite;
    animation: pageExit 12s linear forwards infinite;
}

#van-body {
    -webkit-animation: bounce 0.3s forwards infinite;
    animation: bounce 0.3s forwards infinite;
}

/*
* Keyframes
*/
@-webkit-keyframes pageExit {
    from {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
    to {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}
@keyframes pageExit {
    from {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
    to {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}
@-webkit-keyframes pageEnter {
    from {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    to {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
}
@keyframes pageEnter {
    from {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    to {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
}
@-webkit-keyframes bounce {
    from {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    to {
        -webkit-transform: translateY(5px);
        transform: translateY(5px);
    }
}
@keyframes bounce {
    from {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    to {
        -webkit-transform: translateY(5px);
        transform: translateY(5px);
    }
}

svg {
    position: relative;
}

.hmst0 {
    fill: #ebd9ff;
}

.hmst1 {
    fill: none;
    stroke: #37366c;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 10;
}

.hmst2 {
    display: none;
}

.hmst3 {
    display: inline;
    fill: #fdc858;
}

.hmst4 {
    fill: none;
    stroke: #c6b8d0;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 10;
}

.hmst5 {
    fill: #fd9c58;
}

.hmst6 {
    fill: #ffffff;
    stroke: #d4c0e2;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 10;
}

.hmst7 {
    fill: none;
    stroke: #d4c0e2;
    stroke-width: 7.4637;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 10;
}

.hmst8 {
    opacity: 0.56;
    fill: #fdc858;
    enable-background: new;
}

.hmst9 {
    fill: #0e1d48;
}

.hmst10 {
    fill: #6366ad;
}

.hmst11 {
    opacity: 0.36;
}

.hmst12 {
    opacity: 0.36;
    fill: #8e63ad;
    enable-background: new;
}

.hmst13 {
    opacity: 0.25;
}

.hmst14 {
    fill: #ffffff;
}

.hmst15 {
    fill: #d8d8d8;
}

.hmst16 {
    opacity: 0.48;
    fill: none;
    stroke: #523160;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 10;
    enable-background: new;
}

.hmst17 {
    fill: none;
    stroke: #523160;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 10;
}


/*Section About Stylings*/
section#about {
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background: #0f1316;
    padding: calc(80px + 1rem) 3rem;
}
.main {
    position: relative;
    width: 52vmax;
    height: 45vmax;
    background-size: cover;
    transform-style: preserve-3d;
}

/**/
.human {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    bottom: 2.5vmax;
    left: 27.5%;
    width: 21vmax;
    height: 30vmax;
    z-index: 1000;
}
.human__head {
    position: relative;
    display: flex;
    justify-content: center;
    width: 25%;
    height: 6vmax;
    z-index: 6000;
}
.human__head::before {
    content: '';
    position: absolute;
    width: .2vmax;
    height: .4vmax;
    bottom: 13%;
    border-radius: 50%;
    background-color: #2E2250;
    z-index: 2000;
}
.human__hair-b {
    position: absolute;
    top: -4%;
    width: 7vmax;
    height: 6vmax;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    border-bottom-left-radius: 40%;
    border-bottom-right-radius: 40%;
    background-color: #2E2250;
}
.human__hair-b::before, .human__hair-b::after {
    content: '';
    position: absolute;
    width: 7vmax;
    height: 7vmax;
    border-top-left-radius: 40%;
    border-top-right-radius: 40%;
    border-bottom-left-radius: 30%;
    border-bottom-right-radius: 30%;
    background-color: #2E2250;
    border-left: 1vmax solid #423352;
    animation: hair 1s infinite alternate;
}
.human__hair-b::before {
    transform: rotateZ(-20deg);
}
.human__hair-b::after {
    transform: rotateZ(20deg);
}
.human__hair-c {
    position: absolute;
    top: -5%;
    z-index: -1;
    width: 110%;
    height: 1.5vmax;
    overflow: hidden;
    border-radius: 50%;
}
.human__hair {
    width: 100%;
    height: 3vmax;
    background-color: #2E2250;
    border-radius: 50%;
}
.human__face {
    position: absolute;
    display: flex;
    justify-content: center;
    top: 7%;
    height: 90%;
    width: 65%;
    border-radius: 45%;
    background-color: #FFC4C5;
    border-bottom: 0.6vmax solid #2E2250;
    border-left: 0.15vmax solid #2E2250;
    border-right: 0.15vmax solid #2E2250;
}
.human__eye-l, .human__eye-r {
    position: absolute;
    top: 45%;
    width: .3vmax;
    height: .5vmax;
    background-color: #2E2250;
    border-radius: 50%;
    animation: eye 4s infinite alternate;
}
.human__eye-l {
    left: 22%;
}
.human__eye-r {
    right: 22%;
}
.human__nose {
    position: absolute;
    width: .5vmax;
    height: 1.5vmax;
    bottom: 20%;
    border-radius: 50%;
    background-color: #FFA0A5;
}
.human__cheeks-l, .human__cheeks-r {
    position: absolute;
    bottom: 8%;
    width: .8vmax;
    height: .9vmax;
    background-color: #FFB1B4;
    border-radius: 50%;
}
.human__cheeks-l {
    left: 10%;
}
.human__cheeks-r {
    right: 10%;
}
.human__mouth {
    position: absolute;
    bottom: 10%;
    width: .8vmax;
    height: 1vmax;
    border-bottom: 0.15vmax solid #600004;
    border-radius: 50%;
}
.human__eyebrow-l, .human__eyebrow-r {
    position: absolute;
    top: 30%;
    width: 1vmax;
    height: .8vmax;
    border-top: 0.15vmax solid #2E2250;
    border-radius: 50%;
}
.human__eyebrow-l {
    left: 10%;
}
.human__eyebrow-r {
    right: 10%;
}
.human__ears {
    position: absolute;
    justify-content: space-between;
    top: 8%;
    width: 21%;
}
.human__ear-l, .human__ear-r {
    position: absolute;
    top: 30%;
    width: 1vmax;
    height: 1vmax;
    border-radius: 50%;
    background-color: #FFA0A5;
}
.human__ear-l {
    left: 0%;
}
.human__ear-r {
    right: 0%;
}
.human__body-c {
    display: flex;
    justify-content: center;
    position: absolute;
    top: 17%;
    width: 100%;
    height: 11vmax;
    overflow: hidden;
    z-index: -1;
}
.human__body {
    position: relative;
    display: flex;
    justify-content: center;
    width: 83%;
    height: 22vmax;
    border-radius: 50%;
    border-left: 0.9vmax solid #FF9B5A;
    border-right: 1vmax solid #FF4624;
    background: linear-gradient(135deg, #FF4624 25%, transparent 25%) -1vmax 0, linear-gradient(225deg, #FF4624 25%, transparent 25%) -1vmax 0, linear-gradient(315deg, #FF4624 25%, transparent 25%), linear-gradient(45deg, #FF4624 25%, transparent 25%);
    background-size: 2vmax 2vmax;
    background-color: #FF552E;
    overflow: hidden;
}
.human__body::before {
    content: '';
    position: absolute;
    top: -2vmax;
    width: 4vmax;
    height: 4vmax;
    border-radius: 50%;
    background-color: #FFC4C5;
    border: 0.5vmax solid #FF371B;
}
.human__arm-l, .human__arm-r {
    position: absolute;
    bottom: 48%;
    width: 10vmax;
    height: 2.7vmax;
    background-color: #FFC4C5;
    z-index: 2000;
}
.human__arm-l {
    left: 25px;
    border-right: 4vmax solid #FFB1B4;
    border-bottom: 0.7vmax solid #FFB1B4;
    border-radius: 2vmax;
    animation: arm-l 1s ease infinite alternate;
}
.human__arm-r {
    right: 2vmax;
    width: 2.25vmax;
    height: 1.5vmax;
    background-color: #dae4ed;
    border-top-left-radius: 2vmax;
    border-top-right-radius: 2vmax;
    animation: eye 2s infinite alternate;
}
.human__arm-r::before {
    content: '';
    position: absolute;
    width: 3.25vmax;
    height: 2vmax;
    background-color: #FFB1B4;
    bottom: 0;
    left: .5vmax;
    border-bottom: 0.7vmax solid #FFB1B4;
    border-top-left-radius: 2vmax;
    border-top-right-radius: 2vmax;
}
.human__legs {
    position: absolute;
    bottom: 1.3vmax;
    width: 100%;
    height: 10vmax;
    overflow: hidden;
}
.human__leg-l, .human__leg-r {
    position: absolute;
    bottom: -2vmax;
    width: 4.5vmax;
    height: 130%;
}
.human__leg-l {
    left: 3.3vmax;
    transform: rotateZ(-20deg);
    background-image: linear-gradient(80deg, transparent, transparent 35%, #001682 35%, #001682 40%, #001164 40%, #001164 90%);
    border-right: 0.5vmax solid #010a2a;
}
.human__leg-r {
    right: 3.3vmax;
    transform: rotateZ(20deg);
    background-image: linear-gradient(-80deg, transparent, transparent 35%, #001682 35%, #001682 40%, #001164 40%, #001164 90%);
    border-left: 0.5vmax solid #010a2a;
}
.human__shoes {
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 0;
    width: 45%;
    height: 2vmax;
}
.human__shoe-c {
    bottom: 0;
    height: 1.8vmax;
    width: 4.2vmax;
    overflow: hidden;
}
.human__shoe-c:nth-of-type(1) {
    animation: shoe-l 0.125s ease infinite alternate;
}
.human__shoe-l, .human__shoe-r {
    position: relative;
    height: 200%;
    width: 100%;
    border-radius: 50%;
    overflow: hidden;
    background-color: #2B165D;
}
.human__shoe-l::before, .human__shoe-r::before {
    content: '';
    position: absolute;
    width: 2.5vmax;
    height: 2vmax;
    top: -10%;
    background-color: #351C77;
    border-radius: 50%;
}
.human__shoe-l::before {
    left: -15%;
}
.human__shoe-r::before {
    right: -15%;
}

/*==================*/
.table {
    display: flex;
    justify-content: center;
    align-content: flex-start;
    flex-wrap: wrap;
    position: absolute;
    width: 33vmax;
    height: 15vmax;
    bottom: 2vmax;
    left: 7vmax;
    z-index: 1000;
}
.table__top {
    width: 100%;
    height: 1vmax;
    border-top: 0.1vmax solid #FFDC97;
    background-color: #2764cc;
}
.table__bottom {
    width: 95%;
    height: 2.5vmax;
    border-top: 0.75vmax solid #001164;
    background-color: #001B7A;
}
.table__legs {
    position: relative;
    display: flex;
    width: 90%;
    height: 11vmax;
}
.table__leg {
    position: absolute;
    top: 0;
    width: .6vmax;
    height: 100%;
    border-top: 0.75vmax solid #001164;
    background-color: #001B7A;
}
.table__leg:nth-of-type(1) {
    left: 1%;
}
.table__leg:nth-of-type(2) {
    left: 9%;
}
.table__leg:nth-of-type(3) {
    left: 88%;
}
.table__leg:nth-of-type(4) {
    left: 96%;
}

/*==================*/
.laptop {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -6.1vmax;
    left: 13vmax;
    width: 11vmax;
    height: 6vmax;
    background-color: #69696a;
    border-top: 0.2vmax solid #363636;
    border-left: 0.2vmax solid #363636;
    overflow: hidden;
}
.laptop::before {
    content: '';
    position: absolute;
    height: 1vmax;
    width: 1vmax;
    border-radius: 50%;
    background-color: #dae4ed;
    z-index: 100;
}
.laptop::after {
    content: '';
    position: absolute;
    right: 20%;
    bottom: -40%;
    height: 300%;
    width: 300%;
    border-radius: 50%;
    background-color: #414141;
}

/*==================*/
.cup {
    position: absolute;
    top: -2.6vmax;
    left: 5vmax;
    width: 2vmax;
    height: 2.5vmax;
    background-image: linear-gradient(to bottom, #008C9A, #008C9A 10%, #04798c 10%, #04798c 20%, #008C9A 20%, #008C9A 80%, #04798c 80%, #04798c 90%, #008C9A 90%);
}
.cup::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(-135deg, rgba(255, 220, 151, 0.5), rgba(255, 220, 151, 0.1), rgba(255, 220, 151, 0));
}
.cup::after {
    content: '';
    position: absolute;
    right: -.7vmax;
    top: .25vmax;
    width: .9vmax;
    height: 1.5vmax;
    border-top: 0.2vmax solid #04798c;
    border-bottom: 0.2vmax solid #008C9A;
    border-right: 0.2vmax solid #008C9A;
    border-left: .2vmax solid transparent;
    border-radius: 45%;
    z-index: -1;
}

/*==================*/
.chair {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    width: 12vmax;
    height: 14vmax;
    bottom: 2vmax;
    left: calc(50% - 8vmax);
}
.chair__top {
    position: relative;
    width: 100%;
    height: 5vmax;
    border-bottom: 0.7vmax solid #005788;
    background-color: #010109;
}
.chair__top::before {
    content: '';
    position: absolute;
    bottom: .1vmax;
    right: 0;
    width: 80%;
    height: 35%;
    border-radius: 100% 0% 100% 0%/82% 100% 0% 18%;
    background-color: #010a2a;
}
.chair__line {
    width: .7vmax;
    height: 7.2vmax;
    border-top: 0.7vmax solid #00467F;
    border-left: 0.15vmax solid #005788;
    border-right: 0.15vmax solid #005788;
    background-image: repeating-linear-gradient(to bottom, #005788, #005788 4%, #00467F 4%, #00467F 6%);
}
.chair__base {
    position: relative;
    width: 100%;
    height: .7vmax;
    border-bottom: 0.2vmax solid #00467F;
    background-color: #005788;
}
.chair__wheels {
    position: absolute;
    bottom: 1vmax;
    width: 100%;
    height: .7vmax;
    z-index: -1;
}
.chair__wheel {
    position: absolute;
    height: .8vmax;
    width: .8vmax;
    top: .4vmax;
    border-radius: 50%;
    background-color: #001164;
}
.chair__wheel:nth-of-type(1) {
    left: .4vmax;
}
.chair__wheel:nth-of-type(2) {
    right: .4vmax;
}

/*==================*/
.trashcan {
    position: absolute;
    width: 3.5vmax;
    height: 6vmax;
    bottom: 2.5vmax;
    left: 13.5vmax;
    background-image: repeating-linear-gradient(to bottom, #010a2a 0vmax, #010a2a 0.4vmax, #001164 0.4vmax, #001164 0.45vmax);
    transform: perspective(350px) rotateX(-40deg);
    transform-origin: bottom center;
}
.trashcan::before {
    content: '';
    position: absolute;
    left: calc(0%  - .2vmax);
    width: 115%;
    height: .2vmax;
    background-color: #001682;
}

/*==================*/
.window {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 2.5vmax;
    right: 2.5vmax;
    width: 23.5vmax;
    height: 28vmax;
    border: 0.1vmax solid #001164;
}
.window__container {
    width: 98%;
    height: 98%;
    border: 0.2vmax solid #0F1316;
    background-image: linear-gradient(-45deg, #010109, #010516);
    box-shadow: inset -0.1vmax -0.1vmax 0 #FFDC97;
}
.window__container::before {
    content: '';
    position: absolute;
    top: 30%;
    width: 100%;
    height: .5vmax;
    background-color: #0F1316;
}
.window__container::after {
    content: '';
    position: absolute;
    left: calc(50% - .25vmax);
    height: 100%;
    width: .5vmax;
    background-color: #0F1316;
}

.building {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: absolute;
    bottom: .1vmax;
    right: .1vmax;
    width: 20%;
    height: 40%;
    padding: .75vmax .3vmax;
    border-top: 0.1vmax solid #0d0900;
    z-index: -1;
    overflow: hidden;
}
.building__window, .building__window-f {
    height: 1.5vmax;
    width: .75vmax;
    margin: .45vmax;
    border-top-left-radius: 40%;
    border-top-right-radius: 40%;
    background-color: #010a2a;
    border-bottom: 0.15vmax solid black;
    border-left: 0.15vmax solid black;
}
.building__window--active, .building__window-f--active {
    background-color: black;
}
.building__window-f {
    width: 39%;
    border-radius: 0;
    height: 1vmax;
}
.building__window-on-1 {
    animation: win 20s infinite alternate;
}
.building__window-on-2 {
    animation: win 12s infinite alternate;
}
.building__window-on-3 {
    animation: win 10s infinite alternate;
}
.building__window-on-4 {
    animation: win 15s infinite alternate;
}
.building:nth-of-type(1) {
    right: .1vmax;
    width: 25%;
    height: 65%;
    background-color: #020212;
}
.building:nth-of-type(2) {
    left: 15%;
    width: 36%;
    height: 30%;
    background-color: #020212;
}
.building:nth-of-type(3) {
    left: 40%;
    width: 40%;
    height: 50%;
    z-index: -2;
    background-color: #010109;
}
.building:nth-of-type(4) {
    left: 5%;
    width: 40%;
    height: 60%;
    background-color: black;
    z-index: -3;
}

/*==================*/
.lamp {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 2vmax;
    left: 15vmax;
    width: 5vmax;
    height: 12vmax;
    animation: lamp 1s ease infinite alternate;
}
.lamp::before {
    content: '';
    position: absolute;
    width: 1vmax;
    height: 1vmax;
    left: calc(50% - .5vmax);
    bottom: 0;
    border-radius: 50%;
    background-color: #FFDC97;
}
.lamp__top {
    position: relative;
    display: flex;
    justify-content: center;
    width: .25vmax;
    height: 70%;
    background-color: #001164;
}
.lamp__light {
    position: absolute;
    width: 5vmax;
    height: 15vmax;
    bottom: -17.5vmax;
    background-image: linear-gradient(to bottom, rgba(255, 220, 151, 0.0075), rgba(255, 220, 151, 0.025));
    z-index: 4000;
    animation: light 4s ease infinite alternate;
}
.lamp__light::before, .lamp__light::after {
    content: '';
    position: absolute;
    width: 4vmax;
    height: 16vmax;
}
.lamp__light::before {
    top: -1vmax;
    right: 2vmax;
    transform: rotateZ(10deg);
    background-image: linear-gradient(to right, rgba(255, 220, 151, 0.1), rgba(255, 220, 151, 0.1), rgba(255, 220, 151, 0));
}
.lamp__light::after {
    top: -1vmax;
    left: 2vmax;
    transform: rotateZ(-10deg);
    background-image: linear-gradient(to left, rgba(255, 220, 151, 0.1), rgba(255, 220, 151, 0.1), rgba(255, 220, 151, 0));
}
.lamp__base-c {
    position: relative;
    width: 100%;
    height: 2.5vmax;
    overflow: hidden;
    border-bottom: 0.1vmax solid #FFDC97;
    padding-bottom: 1vmax;
}
.lamp__base {
    position: relative;
    width: 100%;
    height: 5vmax;
    border-radius: 50%;
    background-color: #001B7A;
    border-right: 1vmax solid #001164;
}

/*==================*/
.bricks {
    position: absolute;
    width: 100%;
    height: 100%;
}

.brick {
    position: absolute;
    width: 10vmax;
    height: 6vmax;
    top: 10%;
    left: 25%;
    z-index: -1;
    background-image: repeating-linear-gradient(to bottom, #273c75, #273c75 0.1vmax, transparent 0.1vmax, transparent 2vmax);
    opacity: .75;
}
.brick:nth-of-type(2) {
    top: 75%;
    left: 75%;
}
.brick::before, .brick::after {
    content: '';
    position: absolute;
    height: 2vmax;
    width: .1vmax;
    background-color: #001164;
    left: 25%;
}
.brick::after {
    left: 50%;
    bottom: 2vmax;
}

/**********************/
/**********************/
/**********************/
@keyframes lamp {
    0% {
        transform: rotate(-1deg);
        transform-origin: top center;
    }
    100% {
        transform: rotate(1deg);
        transform-origin: top center;
    }
}
@keyframes light {
    0%,70%,72%,100% {
        opacity: 1;
    }
    71% {
        opacity: .6;
    }
}
@keyframes eye {
    0%, 10%, 50%, 90%, 100% {
        transform: translateX(-0.1vmax);
    }
    30%, 60% {
        transform: translateX(0.1vmax);
    }
}
@keyframes hair {
    0% {
        border-left: 1vmax solid #423352;
    }
    100% {
        border-left: 0.9vmax solid #423352;
    }
}
@keyframes arm-l {
    0%, 45%, 60%, 80% {
        transform: rotateZ(0deg);
        transform-origin: bottom left;
    }
    50%, 100% {
        transform: rotateZ(-3deg);
        transform-origin: bottom left;
    }
}
@keyframes shoe-l {
    0% {
        transform: rotateZ(0deg);
        transform-origin: bottom right;
    }
    100% {
        transform: rotateZ(5deg);
        transform-origin: bottom right;
    }
}
@keyframes win {
    0%,50%, 91% {
        background-color: black;
    }
    60%,90% {
        background-color: #241a3e;
    }
}
.out{
    float:left;
    width:100%;
    max-height:100px;
}
.share {
    max-width: 600px;
    height: 100px;
    margin: 0 auto;
    -webkit-filter: url("#goo");
    filter: url("../index.php#goo");
    position: relative;
}

.share-button,
.share-toggle-button {
    position: absolute;
    display: inline-block;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    cursor: pointer;
    line-height: 80px;
    margin-left: -40px;
    margin-top: -40px;
    background: #ccc;
    text-align: center;
    color: #fafafa;
    border: none;
    outline: none;
}

.share-button:hover,
.share-toggle-button:hover {
    color: #fff;
}

.share-button {
    font-size: 30px;
    background: #192a56;
    -webkit-transform: scale(0.95, 0.95);
    transform: scale(0.95, 0.95);
    color: #fafafa;
}

a.share-button {
    color: #fafafa;
}

a.share-button:hover, 
a.share-button:focus {
    color: #dfd7d7;
}

.share-toggle-button {
    z-index: 9;
    background: #0984e3;
    font-size: 20px;
}

.share-items {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.share-item {
    display: inline-block;
}

/*Serives Section*/
section#services {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    padding: calc(80px + 1rem) 5rem;
    align-items: center;
    justify-content: center;
}

.rb-grid {
    list-style: none;
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.rb-grid li {
    width: 24%;
    /* height: 15em; */
    margin: 0.5%;
    /* background: #3F51B5; */
    color: #fff;
    display: block;
    float: left;
    padding: 1.6em;
    /* border: 7px solid #0f1316; */
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
}

.rb-grid li.rb-span-2 {
    width: 49%;
}

.rb-grid li.rb-span-4 {
    width: 99%;
}

.rb-grid li h3 {
    font-size: 23px;
    font-weight: 800;
    text-align: right;
    color: #1f1f1f;
    width: 80%;
    text-transform: uppercase;
}

.rb-grid li[class^="icon-"]:before,
.rb-grid li[class*=" icon-"]:before {
    font-size: 10em;
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    line-height: 3;
    opacity: 0.4;
    text-align: right;
    pointer-events: none;
}

.rb-temp {
    display: block;
    font-size: 2em;
    opacity: 0.5;
    -webkit-transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}

.rb-grid li:hover .rb-temp {
    opacity: 1;
}

.rb-overlay {
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #02080f;
    -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease, clip 0.4s ease;
    -moz-transition: opacity 0.4s ease, -moz-transform 0.4s ease, clip 0.4s ease;
    transition: opacity 0.4s ease, transform 0.4s ease, clip 0.4s ease;
    z-index: -1;
    pointer-events: none;
    cursor: default;
}

.rb-close {
    position: absolute;
    top: 0.4em;
    right: 0.4em;
    width: 2em;
    height: 2em;
    text-indent: -9000px;
    cursor: pointer;
    z-index: 1000;
}

.rb-close::before {
    content: "\f00d";
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 2em;
    color:#444;
    line-height: 0.6;
    text-align: center;
    text-indent: 0px;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.rb-week {
    width: 100%;
    height: 100%;
    position: relative;
    display: grid;
    grid-template-columns: 3fr 5fr;
    text-align: left;
}


@media screen and (max-width: 63.125em) {

    .rb-grid li,
    .rb-grid li.rb-span-2,
    .rb-grid li.rb-span-4 {
        /* width: 100%; */
        /* height: 10em; */
        text-align: left;
    }

    .rb-grid li[class^="icon-"]:before,
    .rb-grid li[class*=" icon-"]:before {
        font-size: 6em;
        left: auto;
        right: 0;
        line-height: 2.5;
    }

    .rb-grid li > div {
        text-align: center;
    }
}

/*Work Section*/
section#work {
    position: relative;
    display: flex;
    padding: 10vh 0;
    margin: 50px 0;
}


.deco {
    pointer-events: none;
}

.deco--title {
    position: absolute;
    top: 0px;
    right: 50px;
    left: 50px;
    height: 100%;
    border: 17px solid #0f1316;
    background-color: #fff;
}

.slideshow {
    position: relative;
    width: 100%;
    margin-top: 70px;
}

.slide {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-align-items: center;
    align-items: center;
    width: 100vw;
    text-align: center;
}

.js .slide {
    position: absolute;
    z-index: 12;
    top: 0;
    left: 0;
    visibility: hidden;
    pointer-events: none;
}

.slide.slide--current {
    position: relative;
    visibility: visible;
}

.deco--circle {
    position: absolute;
    top: 0;
    border-radius: 50%;
    background: #fff;
}

.deco--circle-left {
    right: calc(100% - 140px);
}

.deco--circle-right {
    left: calc(100% - 140px);
}

.deco--circle,
.slide__inner {
    width: 450px;
    height: 450px;
}

.slide__item {
    position: relative;
    width: 100%;
}

.no-js .slide__item {
    display: none;
}

.slide__inner {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    margin: 0 auto;
    pointer-events: auto;
    border-radius: 50%;
}

.deco--expander {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -225px 0 0 -225px;
    border-radius: 50%;
    overflow: hidden;
    border: 15px solid #0f1316;
}

.slide__title {
    position: relative;
    text-indent: 4px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.slide__title--preview {
    font-size: 25px;
    margin: 1em 0 0 0;
    padding: 10px;
    opacity: 0;
    text-align: center;
    font-weight: 500;
    background: #1b2226;
    color: #fff;
}

.slide__title--main {
    font-size: 2.5em;
    line-height: 1;
    margin: 0 0 0.25em;
    color: #464653;
}

.slide--current .slide__title--preview {
    opacity: 1;
}

.slide--open .slide__title--main {
    opacity: 1;
}

.slide__price {
    font-weight: bold;
    display: inline-block;
    color: #464653;
}

.slide__price--large {
    font-size: 1.3em;
    vertical-align: middle;
}

.slide__img {
    position: relative;
    display: block;
    margin: 0 auto;
    width: 100%;
    display: flex;
    border-radius: 50%;
    border: 15px solid #0f1316;
    overflow: hidden;
    background: #eee;
    align-items: center;
    justify-content: center;
}

.slide__img--small {
    max-height: 100%;
    height: 100%;
}

.slide__img--large {
    margin: 0;
    height: 100%;
    width: 100%;
    background: url(../images/coins_01.jpg);
    background-size: contain;
    background-position: center;
}

.action {
    font-size: 1.5em;
    line-height: 54px;
    width: 50px;
    height: 50px;
    margin: 0;
    padding: 0;
    text-align: center;
    border: none;
    background: none;
}

.action:focus {
    outline: none;
}

.action--open {
    position: absolute;
    right: 0;
    bottom: 0;
    cursor: pointer;
    margin: 0 40px 40px 0;
    color: #fff;
    border-radius: 50%;
    background: #0f1316;
    -webkit-transition: -webkit-transform 0.1s, background 0.1s, opacity 0.1s;
    transition: transform 0.1s, background 0.1s, opacity 0.1s;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    z-index: 25;
}

.action--open:focus,
.action--open:hover {
    background: #32363a;
    -webkit-transform: scale3d(1.0865, 1.0865, 1);
    transform: scale3d(1.0865, 1.0865, 1);
}

.slide--open .action--open {
    opacity: 0;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transform: scale3d(0.3, 0.3, 1);
    transform: scale3d(0.3, 0.3, 1);
}

.action--close {
    position: fixed;
    z-index: 1001;
    cursor: pointer;
    top: 10px;
    right: 15px;
    color: #22313F;
    -webkit-transition: -webkit-transform 0.1s, opacity 0.1s, color 0.1s;
    transition: transform 0.1s, opacity 0.1s, color 0.1s;
}

.action--close:focus,
.action--close:hover {
    color: #464653;
}

.slide--open ~ .action--close {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transition-delay: 0.5s, 0.5s, 0s;
    transition-delay: 0.5s, 0.5s, 0s;
}

.action--close,
.slide--close ~ .action--close {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 1);
    transform: scale3d(0.3, 0.3, 1);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.js .slide__content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    opacity: 0;
    z-index: 10;
}

.js .slide--open .slide__content {
    pointer-events: auto;
    opacity: 1;
}

.slide__content-scroller {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 2em;
    position: relative;
    z-index: 8;
}

.js .slide__content-scroller {
    position: fixed;
    min-height: 100vh;
    width: 100vw;
    display: grid;
    padding: 0;
    grid-template-columns: 1fr 1fr;
}

.slide__description {
    font-size: 20px;
    font-weight: 300;
    margin: 0.25em auto 1em;
    text-indent: 4px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #818188;
}

.button {
    font-weight: 500;
    margin: 0 1em;
    padding: 0.5em 1em;
    color: #333232;
    border: 4px solid #333232;
    background: #fff;
    font-size:20px;
    text-transform:uppercase;
}
.button a, .button a:focus, .button a:hover{
    color:#333232;
    text-decoration:none;
}
.button:focus,
.button:hover {
    outline: none;
    background: #fff;
    border: 4px solid #f06a59;
}

.navbutton {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 30px;
    margin: 0;
    margin: -50px 0 0 0;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
}

.navbutton__line {
    -webkit-transition: stroke 0.2s;
    transition: stroke 0.2s;
}

.navbutton:focus {
    outline: none;
}

.navbutton:hover .navbutton__line {
    stroke: #192a56;
}

.navbutton--next {
    -webkit-transform: translate3d(220px,-125px,0);
    transform: translate3d(220px,-125px,0);
}

.navbutton--prev {
    -webkit-transform: translate3d(-100%, 0, 0) translate3d(-220px,137px,0);
    transform: translate3d(-100%, 0, 0) translate3d(-220px,137px,0);
} /* +12 of difference */




p#home-main-title {
    color: #fff;
    font-size: 3.5em;
    text-align: center;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
}

p#home-subtitle-title {
    color: #fafafa;
    font-size: 1.5em;
    text-align: center;
    margin: 10px 0;
    font-weight: 300;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all .5s ease-out 1.5s;
}

h2.sec-title {
    font-size: 3.2em;
    text-transform: uppercase;
    font-weight: 800;
    color: #0984e3;
    line-height: 1;
    margin-bottom: 2rem;
    width: 100%;
    text-align: center;
    /* opacity: 0; */
}

div#about-animation {
    width: 50%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0F1316;
}

div#about-description {
    width: 100%;
    /* padding: 50px; */
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
}

.main * {
    transform-style: preserve-3d;
}

#about-description p {
    color: #fafafa;
    font-size: 14px;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.5;
}

.main-services {
    width: 100%;
    position: relative;
    margin-top: 30px;
}
.border-lights {
    background-color: hsl(240, 50%, 10%);
    background-image: radial-gradient(transparent 40%, #273c75 60%), linear-gradient(-45deg, #45aaf2, #45aaf2);
    background-size: 5% 5%, 100% 100%;
    background-position: 0 0;
    position: relative;
    z-index: 1;
}

.border-lights::before {
    content: "";
    display: block;
    background-color: hsla(0, 0%, 100%, 1);
    position: absolute;
    top: 5%;
    left: 5%;
    /* height: calc(300px - 5% * 2); */
    /* width: calc(300px - 5% * 2); */
    z-index: -1;
}
div#film-strip {
    position: absolute;
    width: calc(100% - 100px);
    background: #0f1316;
    z-index: 10;
    color: #fff;
    padding: 10px;
    top: 0;
    left: 50px;
}

div#film-strip h3 {
    text-align: center;
    font-size: 3.5em;
    text-transform: uppercase;
    font-weight: 800;
}

section#contact {
    background: #0f1316;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    padding-top: calc(80px + 1rem);
}

div#menu-section {
    position: relative;
    width: 70%;
    display: grid;
    grid-template-rows: 2fr 3fr;
    height: 80px;
}

div#contact-details-menu {
    display: flex;
    width: 100%;
    background: #0984e3;
    align-items: center;
    /* border: 7px solid #192a56; */
    justify-content: space-around;
    font-size: 12px;
    color: #ffffff;
    border-radius: 0 0 50px 50px;
    font-weight: 700;
}

div#animi-section {
    position: relative;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    background: #0f1316;
    flex-direction: column;
    padding: 50px;
}

div#animi-section img {
    display: block;
    width: 100%;
    padding: 30px;
}

div#contact-form-section {
    background: #0f1316;
    position: relative;
    padding: 0 30px 50px;
}

img#services-main-image {
    width: 90%;
    position: relative;
    display: block;
    margin: auto;
}

div#service-section {
    position: relative;
    width: 60%;
    grid-template-columns: 1fr;
    display: grid;
}

div#service-image-sec {position: relative;display: flex;display: none;}

div#service-description {
    /* padding: 30px; */
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
}

.scrolldown {
    --color: white;
    --sizeX: 30px;
    --sizeY: 50px;
    position: relative;
    width: var(--sizeX);
    height: var(--sizeY);
    margin-left: var(sizeX / 2);
    border: calc(var(--sizeX) / 10) solid var(--color);
    border-radius: 50px;
    box-sizing: border-box;
    margin-bottom: 16px;
    margin-top: 20px;
}

.scrolldown::before {
    content: "";
    position: absolute;
    bottom: 30px;
    left: 50%;
    width: 6px;
    height: 6px;
    margin-left: -3px;
    background-color: var(--color);
    border-radius: 100%;
    animation: scrolldown-anim 2s infinite;
    box-sizing: border-box;
    box-shadow: 0px -5px 3px 1px #00000066;
}

@keyframes scrolldown-anim {
    0% {
        opacity: 0;
        height: 6px;
    }
    40% {
        opacity: 1;
        height: 10px;
    }
    80% {
        transform: translate(0, 20px);
        height: 10px;
        opacity: 0;
    }
    100% {
        height: 3px;
        opacity: 0;
    }
}

/* Chisato */
.input{
    position: relative;
    z-index: 1;
    display: inline-block;
    margin: 10px;
    width: 80%;
    vertical-align: top;
}
.input__field {
    position: relative;
    display: block;
    float: right;
    padding: 0.8em;
    width: 60%;
    border: none;
    font-size: 16px;
    border-radius: 0;
    background: #f0f0f0;
    color: #aaa;
    font-weight: 400;
    -webkit-appearance: none;
}
.input__label {
    display: inline-block;
    float: right;
    padding: 0 1em;
    width: 40%;
    color: #696969;
    font-weight: 300;
    font-size: 70.25%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.input__label-content {
    position: relative;
    display: block;
    padding: 1.6em 0;
    width: 100%;
}
.input--chisato {
    padding-top: 1em;
}

.input__field--chisato {
    width: 100%;
    padding: 0.8em 0.5em;
    background: transparent;
    border: 2px solid;
    color: #b5b5b5;
    -webkit-transition: border-color 0.25s;
    transition: border-color 0.25s;
}

.input__label--chisato {
    width: 100%;
    position: absolute;
    top: -3px;
    text-align: left;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    -webkit-transform: translate3d(0, 3em, 0);
    transform: translate3d(0, 3em, 0);
}

.input__label-content--chisato {
    padding: 0 1em;
    font-weight: 400;
    color: #b5b5b5;
    font-size: 16px;
}

.input__label-content--chisato::after {
    content: attr(data-content);
    position: absolute;
    top: -225%;
    left: 0;
    color: #0984e3;
    font-weight: 400;
}

.input__field--chisato:focus,
.input--filled .input__field--chisato {
    border-color: #0984e3;
}

.input__field--chisato:focus + .input__label--chisato,
.input--filled .input__label--chisato {
    -webkit-animation: anim-chisato-1 0.25s forwards;
    animation: anim-chisato-1 0.25s forwards;
}

.input__field--chisato:focus + .input__label--chisato .input__label-content--chisato,
.input--filled .input__label-content--chisato {
    -webkit-animation: anim-chisato-2 0.25s forwards ease-in;
    animation: anim-chisato-2 0.25s forwards ease-in;
}

@-webkit-keyframes anim-chisato-1 {
    0%, 70% {
        -webkit-transform: translate3d(0, 3em, 0);
        transform: translate3d(0, 3em, 0);
    }
    71%, 100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes anim-chisato-2 {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    70%, 71% {
        -webkit-transform: translate3d(0, 125%, 0);
        transform: translate3d(0, 125%, 0);
        opacity: 0;
        -webkit-animation-timing-function: ease-out;
    }
    100% {
        color: transparent;
        -webkit-transform: translate3d(0, 200%, 0);
        transform: translate3d(0, 200%, 0);
    }
}

@keyframes anim-chisato-1 {
    0%, 70% {
        -webkit-transform: translate3d(0, 3em, 0);
        transform: translate3d(0, 3em, 0);
    }
    71%, 100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes anim-chisato-2 {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    70%, 71% {
        -webkit-transform: translate3d(0, 125%, 0);
        transform: translate3d(0, 125%, 0);
        opacity: 0;
        -webkit-animation-timing-function: ease-out;
    }
    100% {
        color: transparent;
        -webkit-transform: translate3d(0, 200%, 0);
        transform: translate3d(0, 200%, 0);
    }
}


#animi-section h2 {
    text-align: left;
    font-size: 3em;
    color: #fafafa;
}

.btn {
    position: relative;
    padding: 10px;
    display: block;
    margin: 20px 0;
    text-transform: uppercase;
    font-weight: 800;
    cursor: pointer;
    border: 0px;
}

div#contact-form-section button {
    margin-left: 10px;
}

.button-one {
    transition: all .3s ease;
}

.button-one:hover {
    background: #0984e3;
    color: #fff;
}

.slide__img.slide__img--small img {
    width: 100%;
}

.slide__details {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.deco--title:before {content: '';width: 100%;height: 100%;position: absolute;top: 0;left: 0;background-image: url(../images/bg.jpg);background-position: center;background-size: cover;opacity: 0.3;background-attachment: scroll;}

div#bg_2 {
    background-image: url(../images/2.jpg);
}

div#bg_3 {
    background-image: url(../images/3.jpg);
}

.service-content-section {
    background: #fff;
    padding: 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    color: #02080f;
}

.service-content-section h4 {
    font-size: 2.7em;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 30px;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0px;
}

.service-content-section p {
    line-height: 1.5;
    font-size: 14px;
    color: #656;
    font-weight: 600;
}

div#service-description p {
    font-size: 16px;
    text-align: center;
    line-height: 1.5;
    font-weight: 600;
    color: #666a73;
}

div#srv-1 {
    background-image: url(../images/services/1.jpg);
}

div#srv-2 {
    background-image: url(../images/services/2.jpg);
}

div#srv-3 {
    background-image: url(../images/services/3.jpg);
}

div#srv-4 {
    background-image: url(../images/services/4.jpg);
}

div#srv-5 {
    background-image: url(../images/services/5.jpg);
}

div#srv-6 {
    background-image: url(../images/services/6.jpg);
}

section#portfolio {
    position: relative;
    width: 100vw;
    padding: 3rem 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url(../images/bg.jpg);
    background-size: contain;
    background-attachment: fixed;
    /* filter: blur(4px); */
}

div#project-outer {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    /* filter: blur(0px); */
}

.project-cover {
    position: relative;
    display: flex;
    width: calc((100% / 3) - 2rem);
    flex-direction: column;
    align-items: center;
    margin: 1rem;
}

.project-img {
    position: relative;
    display: flex;
    width: 100%;
}

.pro-img {
    position: relative;
    display: block;
    width: 100%;
}

section#portfolio:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(255 255 255 / 92%);
    top: 0;
    left: 0;
}

#portfolio h1 {
    position: relative;
    margin: 2rem 0;
    font-size: 3.5em;
    text-transform: uppercase;
    color: #2f77e3;
    text-align: center;
}

span.project-name {
    color: #0984e3;
    font-size: 1.3em;
    /* margin-top: 1rem; */
    text-transform: uppercase;
    font-weight: 800;
    text-align: center;
}

.project-type {
    color: #666;
    text-align: center;
}

g.phone, g.lap, g.tab {
    opacity: 0;
    visibility: hidden;
    transform: translateY(5%);
}

g.desktop {
    transform: scale(1.7) translate(-15%, -25%);
}

.project-cover:hover g.desktop {transform: scale(1) translate(0, 0px);}

.project-img g {
    transition: all .5s ease-out;
}

.project-cover:hover g.tab {
    opacity: 1;
    visibility: visible;
    transition-delay: .3s;
    transform: translateY(0);
}

.project-cover:hover g.lap {
    opacity: 1;
    visibility: visible;
    transition-delay: .35s;
    transform: translateY(0);
}

.project-cover:hover g.phone {
    opacity: 1;
    visibility: visible;
    transition-delay: .3s;
    transform: translateY(0);
}

.project-img svg {
    margin: 1.4rem 0;
}

.about-intro {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 50%;
}

.about-intro p {
    color: #fafafa;
    text-align: center;
    transform: translateY(40px);
    opacity: 0;
}

img.serv-img {
    width: 100%;
    position: relative;
}

footer {
    position: relative;
    width: 100vw;
    padding: 20px;
    display: flex;
    justify-content: center;
    font-size: 13px;
    color: #fff;
    background: #0984e3;
}

.reveal .anime-1 {
    transform: scale(0.94);
    animation: scale 3s forwards cubic-bezier(0.5, 1, 0.89, 1);
}
@keyframes scale {
    100% {
        transform: scale(1);
    }
}

.anime-1 span {
    display: inline-block;
    opacity: 0;
    filter: blur(4px);
}

.reveal .anime-1 span:nth-child(1) {
    animation: fade-in 0.8s 0.4s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.reveal .anime-1 span:nth-child(2) {
    animation: fade-in 0.8s 0.6s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.reveal .anime-1 span:nth-child(3) {
    animation: fade-in 0.8s 0.8s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.reveal .anime-1 span:nth-child(4) {
    animation: fade-in 0.8s 1.0s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.reveal .anime-1 span:nth-child(5) {
    animation: fade-in 0.8s 1.2s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.reveal .anime-1 span:nth-child(6) {
    animation: fade-in 0.8s 1.3s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.reveal .anime-1 span:nth-child(7) {
    animation: fade-in 0.8s 1.4s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.reveal .anime-1 span:nth-child(8) {
    animation: fade-in 0.8s 1.5s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.reveal .anime-1 span:nth-child(9) {
    animation: fade-in 0.8s 2.0s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.reveal .anime-1 span:nth-child(10) {
    animation: fade-in 0.8s 2.2s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.reveal .anime-1 span:nth-child(11) {
    animation: fade-in 0.8s 2.4s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.reveal .anime-1 span:nth-child(12) {
    animation: fade-in 0.8s 2.6s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.reveal .anime-1 span:nth-child(13) {
    animation: fade-in 0.8s 2.8s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.reveal .anime-1 span:nth-child(14) {
    animation: fade-in 0.8s 1.4s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.reveal .anime-1 span:nth-child(15) {
    animation: fade-in 0.8s 1.5s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.reveal .anime-1 span:nth-child(16) {
    animation: fade-in 0.8s 1.6s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.reveal .anime-1 span:nth-child(17) {
    animation: fade-in 0.8s 1.7s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.reveal .anime-1 span:nth-child(18) {
    animation: fade-in 0.8s 1.8s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

@keyframes fade-in {
    100% {
        opacity: 1;
        filter: blur(0);
    }
}
@keyframes fade-up {
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}
.no-roll{
    opacity: 1 !important;
    transform: translateY(0px) scale(1) !important;
}
.reveal p#home-subtitle-title {
    animation: fade-up 0.6s 1.8s forwards ease-out;
}
.reveal .about-intro p{
    animation: fade-up 0.6s 1.8s forwards ease-out;
}
.reveal div#service-description{
    animation: fade-up 0.6s 1s forwards ease-out;
}

nav#responsive-navigation {
    position: fixed;
    width: 100%;
    z-index: 20;
    height: 80px;
    background: #192a56;
    display: none;
}
.bar1, .bar2, .bar3 {
    width: 35px;
    height: 3px;
    background-color: #f3f3f3;
    margin: 6px 0;
    transition: 0.4s;
}
.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-5px, 5px);
    transform: rotate(-45deg) translate(-5px, 5px);
}
.change .bar2 {
    opacity: 0;
}
.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px);
    transform: rotate(45deg) translate(-8px, -8px);
}

.logo-sector {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    padding: 10px 25px;
    justify-content: space-between;
    align-items: center;
}

img#mobile-logo {
    position: relative;
    display: block;
    height: 55px;
}

.menu-sec {
    position: fixed;
    width: 100vw;
    height: calc(100vh - 75px);
    background: #0984e3;
    display: grid;
    place-items: center;
    top: 80px;
    left: -110%;
    transition: all .4s ease;
}

.menu-area {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-area a {
    font-size: 1.5rem;
    margin-bottom: .5rem;
    color: #fff;
    text-transform: uppercase;
}

.menu-sec.active {
    left: 0;
}

.container-menu-icon {
    cursor: pointer;
}

.service-in {
    position: relative;
    display: grid;
    grid-template-columns: 30% 70%;
    padding: 2rem 0;
}

div#services-new {
    width: 80%;
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 3rem 0;
}

.service-infor {
    padding: 0 3rem;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.serv-details {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 1rem 0 0;
    padding: 0 2rem;
}

.service-infor h3 {text-transform: uppercase;font-weight: 900;font-size: 2rem;color: #3f3d56;}

span.s-detail {
    font-size: 16px;
    margin-bottom: 14px;
    color: #6d7179;
    font-weight: 600;
    padding-right: 10px;
    display: flex;
}

.service-in:not(:last-child):after {
    content: '';
    width: 100%;
    height: 2px;
    background: #e6e6e6;
    position: absolute;
    left: 0;
    bottom: 0;
}

.pf-inner {
    position: relative;
    width: 30%;
    display: flex;
    flex-direction: column;
    margin: 1rem calc(10% / 6);
}

div#portfolio-outer {
    width: 100%;
    position: relative;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

.pf-heading {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: #fff;
    color: #192a56;
}

.pf-content {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    background: #fff;
    padding: .5rem 1rem;
}

.pf-client {
    width: 25%;
    position: relative;
    height: auto;
    padding: 5px;
    display: grid;
    place-items: center;
}

.pf-client-i {
    position: relative;
    width: 80%;
    /* filter: grayscale(1); */
}

.pf-heading span {
    text-transform: uppercase;
    font-size: 1.7rem;
    font-weight: 900;
    text-align: center;
}

.pf-client-3 {
    width: 35%;
    display: grid;
    padding: 5px;
    place-items: center;
}

.pf-heading:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 6px;
    background: #e6e6e6;
    left: 0;
    bottom: 0;
}

section#loader {
    position: fixed;
    width: 100vw;
    height: 100vh;
    display: grid;
    place-items: center;
    background: #fff;
    z-index: 11;
}

div#loading-logo {
    width: 400px;
    height: auto;
    position: relative;
}

.letter {
    opacity: 0;
}

.inner-shape {
    opacity: 0;
}

.outer-shape {
    opacity: 0;
    position: relative;
    transform: rotate(45deg);
    transform-origin: 50% 50%;
}

.loading .outer-left {
    -webkit-animation: left-element-enter 2s forwards 1s, rotate-element 2s forwards 3s infinite;
    animation: left-element-enter 2s forwards 1s, rotate-element 2s forwards 3s infinite;
    animation-timing-function: ease;
}
.loading .outer-right {
    -webkit-animation: right-element-enter 2s forwards 1s;
    animation: right-element-enter 2s forwards 1s;
    animation-timing-function: ease;
}


@-webkit-keyframes left-element-enter {
    0% {
        -webkit-transform: translateX(-53%) rotate(45deg);
        transform: translateX(-53%) rotate(45deg);
    }
    60%{
        opacity: 1;
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0%) rotate(45deg);
        transform: translateX(0%) rotate(45deg);
    }
}
@keyframes left-element-enter {
    0% {
        -webkit-transform: translateX(-53%) rotate(45deg);
        transform: translateX(-53%) rotate(45deg);
    }
    60%{
        opacity: 1;
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0%) rotate(45deg);
        transform: translateX(0%) rotate(45deg);
    }
}
@keyframes rotate-element{
    0% {
        -webkit-transform: rotateY(0deg) rotateZ(45deg);
        transform: rotateY(0deg) rotateZ(45deg);
        
    }
    100% {
        
        -webkit-transform:rotateY(7200deg) rotateZ(45deg);
        transform: rotateY(7200deg) rotateZ(45deg);
    }
}
@-webkit-keyframes right-element-enter {
    0% {
        -webkit-transform: translateX(53%) rotate(45deg);
        transform: translateX(53%) rotate(45deg);
    }
    60%{
        opacity: 1;
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0%) rotate(45deg);
        transform: translateX(0%) rotate(45deg);
    }
}
@keyframes right-element-enter {
    0% {
        -webkit-transform: translateX(53%) rotate(45deg);
        transform: translateX(53%) rotate(45deg);
    }
    60%{
        opacity: 1;
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0%) rotate(45deg);
        transform: translateX(0%) rotate(45deg);
    }
}