@charset "UTF-8";

:root {
    --primary-color: #fdd70c;
    --secondary-color: #21422b;
    --section-padding: 5.20rem;
    color-scheme: dark light;
    --white--: #fff;
    --portfolio-padding: 10rem
}

[data-theme="dark"] {
    --primary-color: #21422b;
    --secondary-color: #fdd70c
}

[data-theme="light"] {
    --primary-color: #fdd70c;
    --secondary-color: #21422b
}

html {
    font-size: .83vw;
    user-select: none;
    cursor: none !important
}

a {
    cursor: none !important
}

body {
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    height: 100vh;
    overflow-x: hidden
}

.wrapper {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding-bottom: 1rem;
    transition: 0.3s ease all
}

.wrapper.aboutactive {
    color: var(--secondary-color);
    background: var(--primary-color)
}

.cursor {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 2px solid var(--white--);
    transition: all 200ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    transform: translate(calc(-50% + 15px), -50%);
    z-index: 200
}

.cursor2 {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: var(--white--);
    opacity: 1;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: width .3s, height .3s, opacity .3s;
    z-index: 200
}

html.lenis {
    height: auto
}

.lenis.lenis-smooth {
    scroll-behavior: auto
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain
}

.lenis.lenis-stopped {
    overflow: hidden
}

.lenis.lenis-scrolling iframe {
    pointer-events: none
}

.btn {
    font-size: 1.25rem;
    font-weight: 700;
    border: 2px solid var(--primary-color);
    border-radius: 2.5rem;
    padding: 1.2rem 4rem;
    display: inline-block;
    transition: 0.1s ease all
}

.btn.inverse {
    border-color: var(--secondary-color)
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    opacity: 1;
    transition: opacity 0.5s ease;
    color: var(--primary-color)
}

#loader.hidden {
    opacity: 0;
    pointer-events: none
}

.spinner {
    transform: rotateZ(45deg);
    perspective: 1000px;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    color: var(--primary-color)
}

.spinner:before,
.spinner:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: inherit;
    height: inherit;
    border-radius: 50%;
    transform: rotateX(70deg);
    animation: 1s spin linear infinite
}

.spinner:after {
    color: var(--primary-color);
    transform: rotateY(70deg);
    animation-delay: .4s
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotateZ(0deg)
    }

    100% {
        transform: translate(-50%, -50%) rotateZ(360deg)
    }
}

@keyframes rotateccw {
    0% {
        transform: translate(-50%, -50%) rotate(0deg)
    }

    100% {
        transform: translate(-50%, -50%) rotate(-360deg)
    }
}

@keyframes spin {

    0%,
    100% {
        box-shadow: .2em 0 0 0 currentcolor
    }

    12% {
        box-shadow: .2em .2em 0 0 currentcolor
    }

    25% {
        box-shadow: 0 .2em 0 0 currentcolor
    }

    37% {
        box-shadow: -.2em .2em 0 0 currentcolor
    }

    50% {
        box-shadow: -.2em 0 0 0 currentcolor
    }

    62% {
        box-shadow: -.2em -.2em 0 0 currentcolor
    }

    75% {
        box-shadow: 0 -.2em 0 0 currentcolor
    }

    87% {
        box-shadow: .2em -.2em 0 0 currentcolor
    }
}

.bounce {
    display: inline-block;
    animation: bounce 3s ease infinite
}

@keyframes bounce {
    0% {
        transform: translateY(0)
    }

    30% {
        transform: translateY(-10px)
    }

    50% {
        transform: translateY(0)
    }

    70% {
        transform: translateY(-5px)
    }

    100% {
        transform: translateY(0)
    }
}

.bounce {
    will-change: transform
}

.dronecontainer .wing {
    animation: spin 0.2s linear infinite
}

.dronecontainer .wing.one {
    transform-origin: 18% 19%
}

.dronecontainer .wing.two {
    transform-origin: 82% 19%
}

.dronecontainer .wing.three {
    transform-origin: 18% 81%
}

.dronecontainer .wing.four {
    transform-origin: 82% 81%
}

@keyframes spin {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

textarea:focus,
input:focus {
    outline: none
}

section {
    padding: 0 var(--section-padding)
}

.toggle-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 200
}

.toggletheme {
    visibility: hidden
}

.toggletheme+label {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: var(--primary-color)
}

.toggletheme+label::before {
    content: "";
    height: 2rem;
    width: 4rem;
    border-radius: 1rem;
    background-color: var(--primary-color);
    margin-right: .5rem;
    border: 2px solid var(--secondary-color)
}

.toggletheme+label::after {
    content: "";
    width: 1.5rem;
    height: 1.5rem;
    background: var(--secondary-color);
    position: absolute;
    left: .4rem;
    border-radius: 1rem;
    transition: 0.3s ease all
}

.toggletheme:checked+label::after {
    transform: translateX(135%)
}

.toggle-container.bg-active .toggletheme+label {
    color: var(--secondary-color)
}

.toggle-container.bg-active .toggletheme+label::before {
    background-color: var(--secondary-color)
}

.toggle-container.bg-active .toggletheme+label::after {
    background-color: var(--primary-color)
}

header {
    padding: 2rem var(--section-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20
}

header .logo {
    width: 6.25rem;
    height: auto;
    display: block
}

header .logo svg {
    width: 100%;
    height: auto;
    display: block;
    fill: var(--primary-color)
}

header .nav {
    list-style: none;
    padding: 0;
    display: flex
}

header .nav>li {
    text-align: center;
    padding: 0 1.9rem;
    font-size: 1.25rem;
    font-weight: 700;
    min-width: 10rem
}

header .nav a {
    display: block;
    position: relative
}

header .nav .has-dropdown {
    position: relative
}

header .nav a>svg {
    position: absolute;
    stroke-dasharray: 160;
    stroke-dashoffset: -160;
    stroke: var(--primary-color)
}

header .nav a:hover svg {
    animation: nav-anim .75s cubic-bezier(.08, .69, .1, 1) alternate forwards
}

@keyframes nav-anim {
    to {
        stroke-dashoffset: 0
    }
}

header .nav a>svg.ring {
    stroke-dasharray: 350;
    stroke-dashoffset: -350
}

header .nav a.active svg {
    stroke-dasharray: 350;
    stroke-dashoffset: 0
}

header .nav svg {
    stroke: #fff;
    fill: none;
    stroke-width: 3px
}

header .nav svg.line {
    left: -.4rem;
    bottom: -1rem;
    width: 100%
}

header .nav svg.ring {
    left: -2rem;
    bottom: -1rem
}

header .nav svg.curve {
    left: 1rem;
    bottom: -1.5rem
}

header .nav .subnav li {
    margin-bottom: .8rem;
    font-weight: 500
}

.submenu {
    position: fixed;
    background-color: var(--secondary-color);
    width: 100%;
    height: 90vh;
    z-index: 19;
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease all;
    border-bottom: 1px solid var(--primary-color);
    padding-top: 10.5rem
}

.submenu .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    height: 100%
}

.submenu>hr {
    border: none;
    border-top: 1px solid var(--primary-color)
}

.submenu ul {
    padding: 1.5rem var(--section-padding);
    list-style: none
}

.submenu .list .right {
    height: 100%
}

.submenu .svg-display {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden
}

.submenu .svg-display svg.menulogo path {
    stroke: none;
    fill: var(--primary-color)
}

.submenu .svg-display svg {
    position: absolute;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transition: 0.3s ease all;
    width: 25rem;
    height: 25rem
}

.submenu ul a {
    padding: 1rem;
    display: inline-block;
    margin-bottom: .2rem;
    width: 100%;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: .5rem;
    opacity: .7;
    transition: 0.3s ease all;
    border: 1px solid var(--secondary-color)
}

.submenu ul a:hover {
    opacity: 1
}

.submenu ul hr {
    margin: .5rem 0;
    display: block;
    border: none;
    border-top: 1px solid var(--primary-color)
}

.svg-display path,
.svg-display rect,
.svg-display circle,
.svg-display line,
.svg-display polyline {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 1;
    stroke-dashoffset: 0
}

.svg-display {
    transition: transform 0.3s ease
}

.list .left a:hover~.right .svg-display {
    transform: scale(1.05)
}

html.submenuactive {
    height: 100vh;
    overflow: hidden
}

html.submenuactive .submenu {
    height: 85vh;
    opacity: 1;
    visibility: visible;
    left: 0;
    top: 0
}

html.submenuactive.bottom .submenu {
    height: 85vh;
    opacity: 1;
    visibility: visible;
    left: 0;
    bottom: 0;
    top: auto
}

.headerbottom {
    display: flex;
    justify-content: center;
    position: fixed;
    bottom: 0;
    padding-bottom: 1rem;
    width: 100%;
    z-index: 50;
    background: none
}

.headerbottom>ul {
    list-style: none;
    padding: 0;
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 3px solid var(--primary-color);
    display: flex;
    padding: 1.5rem 2rem;
    min-width: 40rem;
    text-align: center;
    justify-content: center;
    border-radius: 5rem;
    transform: translateY(calc(100% * 1.2));
    transition: 0.3s ease all;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    height: 0
}

.headerbottom>ul>li {
    margin: 0 1rem
}

.headerbottom>ul>li>a {
    padding: 1rem 2rem;
    display: inline-block;
    border: 2px solid var(--primary-color);
    border-radius: 3rem
}

.headerbottom>ul>li.bottom_logo svg {
    width: 4.5rem;
    height: 4.5rem
}

.headerbottom>ul>li.bottom_logo svg path {
    fill: var(--primary-color)
}

.headerbottom>ul ul {
    list-style: none;
    text-align: left;
    background: var(--primary-color);
    color: var(--secondary-color);
    position: absolute;
    width: 16rem;
    padding: 1.5rem;
    font-size: 1rem;
    font-weight: 400;
    top: -12rem;
    border: 2px solid var(--secondary-color);
    visibility: hidden;
    height: 0;
    opacity: 0;
    transition: 0.2s ease all;
    overflow: hidden
}

.headerbottom>ul .has-dropdown.open .subnav {
    height: auto;
    opacity: 1;
    visibility: visible
}

.headerbottom>ul .subnav li {
    margin-bottom: .8rem;
    font-weight: 500
}

.headerbottom>ul .subnav li:nth-last-child(1) {
    margin-bottom: 0
}

body.scrolled .headerbottom>ul {
    transform: translateY(0);
    visibility: visible;
    height: auto;
    opacity: 1
}

body.up .headerbottom>ul {
    transform: translateY(calc(100% * 3))
}

body.down .headerbottom>ul {
    transform: translateY(0);
    visibility: visible;
    height: auto;
    opacity: 1
}

.home {
    width: 100%;
    display: block;
    height: auto
}

.videobg {
    display: none;
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0
}

.videobg video {
    width: 100%;
    height: 100vh;
    display: block;
    filter: grayscale();
    opacity: .4
}

.slider {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 var(--section-padding);
    padding-top: 9rem;
    position: relative;
    z-index: 2;
    overflow: hidden
}

.slider h1 {
    font-size: 6rem;
    font-weight: 900;
    line-height: 8rem;
    margin-bottom: 2.5rem
}

.slider h1 span {
    position: relative
}

.slider h1 svg {
    position: absolute;
    fill: none;
    stroke-width: 5px;
    stroke: var(--primary-color);
    ;
    right: -2rem;
    top: 0;
    stroke-dasharray: 1600;
    stroke-dashoffset: -1600;
    animation: homeslider 7s cubic-bezier(.08, .69, .1, 1) alternate forwards;
    width: 40rem;
    animation-delay: 0.8s;
    stroke: var(--primary-color)
}

@keyframes homeslider {
    to {
        stroke-dashoffset: 0
    }
}

.slider p {
    font-size: 2.1rem;
    line-height: 2.8rem;
    padding: 0 2rem
}

.scrolldown {
    margin-top: 6rem;
    margin-bottom: 1rem
}

.scrolldown a {
    padding-top: 5rem;
    position: relative
}

.scrolldown a span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1.5rem;
    height: 1.5rem;
    margin-left: -.75rem;
    border-left: 1px solid var(--primary-color);
    ;
    border-bottom: 1px solid var(--primary-color);
    ;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: sdb07 2s infinite;
    animation: sdb07 2s infinite;
    opacity: 0;
    box-sizing: border-box
}

.scrolldown a span:nth-of-type(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s
}

.scrolldown a span:nth-of-type(2) {
    top: 1rem;
    -webkit-animation-delay: .15s;
    animation-delay: .15s
}

.scrolldown a span:nth-of-type(3) {
    top: 2rem;
    -webkit-animation-delay: .3s;
    animation-delay: .3s
}

@-webkit-keyframes sdb07 {
    0% {
        opacity: 0
    }

    50% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@keyframes sdb07 {
    0% {
        opacity: 0
    }

    50% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

.home {
    display: block;
    width: 100%;
    transition: 0.3s ease all
}

.home .section1 {
    display: flex;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2
}

.home .section1 .img {
    width: 60%
}

.home .section1 .img svg {
    fill: none;
    ;
    stroke: var(--primary-color);
    stroke-width: 4px;
    width: 100%
}

.home .section1 .img #homeartone_wireframetxt,
.home .section1 .img #homeartone_uxtxt,
.home .section1 .img #homeartone_webtxt,
.home .section1 .img #homeartone_usertxt {
    stroke-width: 1px
}

.home .section1 .img #homeartone_wireframe path,
.home .section1 .img #homeartone_ux path,
.home .section1 .img #homeartone_web path,
.home .section1 .img #homeartone_user path {
    stroke-dashoffset: 1px;
    stroke-dasharray: 0 1000px
}

.home .section1 .svgpath {
    position: absolute;
    left: 0;
    top: 0;
    width: 20rem
}

.home .section1 .svgpath svg {
    stroke-width: 10px;
    stroke: var(--primary-color);
    width: 100%
}

.home .section1 .svgpath svg path {
    stroke-dashoffset: .001px;
    stroke-dasharray: 0, 999999px
}

.home .section2 {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--section-padding)
}

.home .section2 h2 {
    font-size: 6rem;
    font-weight: 900;
    line-height: 8rem;
    margin-bottom: 1.5rem
}

.home .section2 p {
    font-size: 2.125rem;
    font-weight: 400;
    line-height: 2.9rem;
    width: 73rem;
    margin: 0 auto 4rem auto
}

.home .section2 h3 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 2.9rem
}

.home .section2 svg {
    width: 70rem;
    display: block;
    height: auto;
    margin: 3.5rem auto 0 auto;
    fill: var(--primary-color)
}

.home .section2 svg #ha2_path path {
    fill: none;
    stroke-width: 4px;
    stroke: var(--primary-color);
    stroke-dashoffset: 1px;
    stroke-dasharray: 0 1000px
}

.home .section3 {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--section-padding);
    color: var(--secondary-color);
    border-radius: 3.3rem;
    background: var(--primary-color)
}

.home.bg-active {
    padding: 0
}

.home .section3 h2 {
    font-size: 6rem;
    font-weight: 900;
    line-height: 8rem;
    margin-bottom: 4rem
}

.home .section3 .list {
    margin-top: 6rem;
    display: block;
    width: 100%;
    height: auto
}

.home .section3 .list .each {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 6rem;
    text-align: left;
    align-items: center;
    padding: 10rem 0
}

.home .section3 .list .each path {
    fill: none;
    stroke: var(--secondary-color);
    stroke-width: 2px
}

.home .section3 .list .each g path {
    fill: none;
    stroke: var(--secondary-color);
    stroke-width: 2px;
    stroke-dashoffset: 1px;
    stroke-dasharray: 0 1000px
}

.home .section3 .list .each.inverse .txt {
    grid-row: 2;
    grid-column: 2;
    display: grid
}

.home .section3 .list .each.inverse .img {
    grid-row: 2;
    grid-column: 1;
    display: grid;
    justify-content: center
}

.home .section3 .list .each svg {
    fill: var(--secondary-color)
}

.home .section3 .list .each h3 {
    font-size: 3.375rem;
    line-height: 8rem;
    font-weight: 600;
    margin-bottom: 2.5rem
}

.home .section3 .list .each p {
    font-size: 2.125rem;
    line-height: 3.3rem;
    font-weight: 400;
    max-width: 45rem
}

.home .section3 .list .each .img {
    display: block;
    text-align: center
}

.home .section3 .list .each svg {
    max-width: 30rem;
    width: 100%;
    height: auto
}

.home .section4{min-height: 100vh;display: grid;grid-template-columns: repeat(2,1fr);padding:var(--section-padding) 0;align-items: center;position: relative;overflow: hidden;}
.home .section4 h2{font-size:4rem;margin-bottom:2rem}
.home .section4 p{font-size:1.5rem;line-height: 2.5rem;margin-bottom:2rem;}
.home .section4 .img svg{width: 100%;fill: none;stroke: var(--primary-color);}
.home .section4 .draggable{position: absolute;display: flex;justify-content: center;align-items: flex-start;z-index: 1;width: 15rem;top:0;bottom:0;left:0;right:0;margin:auto}
.home .section4 .draggable svg{fill: var(--primary-color);width: 100%;}
.home .section4 .draggable .wing {
    animation: spin 0.2s linear infinite
}

.home .section4 .draggable .wing.one {
    transform-origin: 18% 19%
}

.home .section4 .draggable .wing.two {
    transform-origin: 82% 19%
}

.home .section4 .draggable .wing.three {
    transform-origin: 18% 81%
}

.home .section4 .draggable .wing.four {
    transform-origin: 82% 81%
}

@keyframes spin {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.home .section5{min-height: 100vh;display: grid;grid-template-columns: 1fr 20% 1fr;padding:var(--section-padding) 0;position: relative;grid-gap: 10rem;padding-bottom:10rem}
.home .section5 span{font-size: 1.75rem;
  margin-bottom: .5rem;}
  .home .section5 h3{font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1rem;}
  .home .section5 p{font-size: 1.5rem;
  line-height: 2.5rem;margin-bottom:2rem}
.home .section5 .one{min-height: 200vh;display: flex;align-items: flex-start;}
.home .section5 .two svg{stroke: none;fill: var(--primary-color);}
.home .section5 .three{min-height: 200vh;display: flex;align-items: flex-end;}

.worklistingslider {
    height: 100vh;
    overflow: hidden;
    position: relative
}

.worklistingslider .content {
    display: flex;
    padding-top: 15rem;
    justify-content: center;
    padding-bottom: 17rem
}

.worklistingslider .content svg {
    width: 60rem;
    fill: var(--primary-color)
}

.worklistingslider h1 {
    font-size: 5.6rem;
    font-weight: 500;
    line-height: 6.7rem
}

.worklistingslider .mountain {
    stroke: var(--primary-color);
    stroke-width: 3px;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 67rem;
    stroke-dasharray: 0, 9999px
}

.worklist {
    padding: var(--section-padding) 0
}

.worklist .introcontent {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-gap: 5rem;
    align-items: flex-start;
    padding-bottom: 5rem
}

.worklist .introcontent h4 {
    font-size: 3.25rem;
    font-weight: 700;
    display: flex;
    align-items: flex-end
}

.worklist .introcontent svg {
    width: 3rem;
    height: auto;
    margin-left: 1rem
}

.worklist .introcontent p {
    font-size: 2rem;
    line-height: 3.75rem;
    font-weight: 400
}

.worklist .list {
    display: block
}

.worklist .list img{width: 100%;}

.worklist .list .each {
    padding-bottom: 10rem
}

.worklist .list .each:nth-last-child(1) {
    padding-bottom: 0
}

.worklist .list .each.style1 {
    display: grid;
    grid-template-columns: 1fr 3fr;
    grid-gap: 5rem;
    align-items: flex-start
}

.worklist .list .each.style1.inverse {
    direction: rtl
}

.worklist .list .each.style1 h2 {
    font-size: 3.625rem;
    font-weight: 700;
    line-height: 3.75rem;
    margin-bottom: 2rem
}

.worklist .list .each.style1 .img {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2rem;
    position: relative
}

.worklist .list .each.style1 .img img {
    width: 100%;
    height: auto
}

.worklist .list .each.style1 .img>div {
    width: 100%;
    overflow: hidden
}

.worklist .list .each.style1 .img .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    width: 12.5rem;
    height: 12.5rem;
    overflow: hidden;
    border-radius: 50%;
    margin: auto;
    padding: 1rem
}

.worklist .list .each.style1 .img .ringlogo {
    width: 100%;
    height: 100%
}

.rotate {
    animation: spin 5s linear infinite;
    transform-origin: 50% 50%
}

@keyframes spin {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.worklist .list .each.style2 {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr 1fr;
    grid-gap: 2.8rem;
}

.worklist .list .each.style2>div {
    max-height: 37rem;
    overflow: hidden
}

.worklist .list .each.style2>div>div {
    max-height: 37rem;
    overflow: hidden
}

.worklist .list .each.style2>img {
    width: 100%;
    height: 100%;
    display: block
}

.worklist .list .each.style2 .textbox {
    border: 2px solid var(--primary-color);
    padding: 2.6rem 0rem;
    text-align: center;
    font-size: 3.6rem;
    margin-bottom: 2.5rem
}

.work_intro {
    padding: 10rem var(--section-padding);
    height: 100vh;
    display: flex;
    align-items: center
}

.work_intro h2 {
    font-size: 5rem;
    font-weight: 700;
    line-height: 6.8rem;
    text-align: center
}

.work_intro h2 span {
    color: #fff
}

.services .process {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: var(--section-padding);
    position: relative;
    z-index: 2
}

.services .process .list {
    display: block;
    padding: var(--section-padding)
}

.services .process .list .each {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2rem;
    padding: 10rem 0;
    align-items: center
}

.services .process .list .each:nth-last-child(1) {
    margin-bottom: 0
}

.services .process .list .each.inverse .txt {
    grid-row: 2;
    grid-column: 2;
    display: grid
}

.services .process .list .each.inverse .img {
    grid-row: 2;
    grid-column: 1;
    display: grid;
    justify-content: center;
    width: 100%
}

.services .process h4 {
    font-size: 3.3rem;
    font-weight: 900
}

.services .process h3 {
    font-size: 3.3rem;
    font-weight: 600;
    margin-bottom: 1.8rem
}

.services .process p {
    font-size: 2rem;
    font-weight: 400;
    line-height: 3.3rem
}

.services .process .img {
    display: block;
    margin: 0 auto
}

.services .process svg {
    fill: var(--primary-color);
    width: 25rem;
    height: 25rem
}

.services .process path {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 2px
}

.services .process g path {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 2px;
    stroke-dashoffset: 1px;
    stroke-dasharray: 0 1000px
}

.services.website .slider h1 svg {
    left: -10rem
}

.services.mobileapp .slider h1 svg {
    left: -2rem
}

.services.services .slider h1 svg {
    left: -10rem
}

.mobileapp_sec1 {
    display: block;
    width: 100%;
    padding: var(--section-padding);
    position: relative;
    z-index: 2;
    height: 100vh
}

.mobileapp_sec1 h2 {
    padding: 0 var(--section-padding);
    font-size: 6rem;
    line-height: 7rem;
    text-align: center;
    font-weight: 900;
    margin-bottom: 5rem
}

.mobileapp_sec1 .list {
    display: grid;
    grid-template-columns: repeat(3, 1fr)
}

.mobileapp_sec1 .list .each {
    display: block;
    margin: 0 auto;
    text-align: center;
    width: 100%
}

.mobileapp_sec1 .list .each svg {
    fill: var(--primary-color);
    width: 15rem;
    height: 15rem;
    margin-bottom: 2rem
}

.mobileapp_sec1 .list .each p {
    font-size: 3rem;
    font-weight: 900
}

.popup_wrapper {
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    background: rgb(0 0 0 / .5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease all;
    padding: 2rem;
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease all
}

body.startproject .wrapper {
    height: 100vh;
    overflow: hidden
}

body.startproject .popup_wrapper {
    opacity: 1;
    height: 100vh;
    visibility: visible
}

.popup_content {
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    overflow-y: scroll;
    padding: 2rem
}

.popup_content .close {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
    font-size: 2rem;
    margin-bottom: 4rem
}

.popup_content .close button {
    display: block;
    background: none;
    border: none;
    cursor: none
}

.popup_content .close svg {
    width: 50px;
    height: 50px;
    fill: #000;
    stroke-width: 2px;
    stroke: #000
}

.popup_content form {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap
}

.popup_content form .each {
    display: block;
    margin-bottom: 2.5rem
}

.popup_content form .each.half {
    width: 49%
}

.popup_content form .each.full {
    width: 100%
}

.popup_content form .each.right {
    justify-content: flex-end;
    display: flex
}

.popup_content input[type=text],
.popup_content textarea,
.popup_content input[type=email] {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    border-bottom: 2px solid #000;
    color: #000
}

.custom-checkbox ul {
    padding: 0;
    display: flex;
    list-style: none
}

.custom-checkbox ul li {
    margin: 0 10px
}

.custom-checkbox input {
    position: absolute;
    opacity: 0
}

.custom-checkbox input+label {
    position: relative;
    cursor: pointer;
    padding: 0
}

.custom-checkbox input+label:before {
    content: "";
    margin-right: 10px;
    display: inline-block;
    vertical-align: text-top;
    width: 20px;
    height: 20px;
    background: var(--secondary-color)
}

.custom-checkbox input:checked+label:before {
    background: #222
}

.custom-checkbox input:disabled+label {
    color: #b8b8b8;
    cursor: auto
}

.custom-checkbox input:disabled+label:before {
    box-shadow: none;
    background: #ddd
}

.custom-checkbox input:checked+label:after {
    content: "";
    position: absolute;
    left: 5px;
    top: 9px;
    background: #fff;
    width: 2px;
    height: 2px;
    box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 #fff;
    transform: rotate(45deg)
}

.custom-checkbox label {
    color: #000
}

.startproject-upload {
    font-size: 14px;
    padding: 15px 10px;
    border: none;
    border-bottom: #000 solid 2px;
    margin: 20px 0;
    width: 100%;
    position: relative;
    cursor: pointer;
    font-weight: lighter;
    width: 100%;
    color: #000;
    display: block
}

startproject-upload::after {
    font-weight: 900;
    content: "";
    font: normal normal normal 14px/1 FontAwesome;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 28px;
    color: #222
}

.popup_content input[type=file] {
    position: absolute;
    opacity: 1;
    z-index: -1
}

.popup_content .each button {
    font-size: 1.25rem;
    font-weight: 700;
    border: 2px solid #000;
    border-radius: 2.5rem;
    padding: 1.2rem 4rem;
    display: inline-block;
    transition: 0.1s ease all;
    background: none;
    color: #000;
    transition: 0.3s ease all
}

.popup_content .each.right button:hover {
    background: #000;
    color: #fff
}

.popup_content .each button:hover {
    background: none
}

footer {
    background: var(--primary-color);
    position: relative;
    z-index: 2;
    color: var(--secondary-color);
    margin: var(--section-padding);
    padding: var(--section-padding);
    border-radius: 3.8rem
}

footer .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5rem
}

footer .top p {
    font-size: 2.6rem
}

footer .bottom {
    width: 100%;
    text-align: center;
    display: flex;
    align-items: flex-start
}

footer .bottom .each {
    width: 22rem;
    margin-right: 3rem;
    font-size: 2rem
}

footer .bottom .each.social {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    margin-right: 0
}

footer .bottom .each.social a {
    margin: 0 1rem;
    display: inline-block
}

.aboutslider {
    height: 100vh;
    display: flex;
    align-items: center
}

.aboutslider h1 {
    font-size: 5.1rem;
    line-height: 4.7rem;
    width: 70%;
    text-transform: uppercase
}

.aboutslider .sec1drawing {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center
}

.aboutslider .sec1drawing svg {
    width: 45rem
}

.aboutslider .sec1drawing svg #sec1path {
    fill: none;
    stroke-width: 3px;
    stroke-opacity: 1;
    stroke: var(--primary-color);
    stroke-dasharray: 5px, 9999px
}

.about .sec2 {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center
}

.about .sec2>div {
    width: 70rem;
    display: block;
    text-align: center
}

.about .sec2 p {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: .81rem
}

.about .sec2 h2 {
    font-size: 3rem;
    font-weight: 600;
    text-transform: uppercase
}

.about .sec2 h2 .mask {
    width: 100%;
    height: 115%;
    position: absolute;
    background: var(--secondary-color);
    left: 0;
    top: 0;
    opacity: .8
}

.about .yellowsec {
    transition: 0.2s ease all
}

.about .yellowsec.aboutactive {
    background: var(--primary-color);
    color: var(--secondary-color)
}

.about .sec3 .top {
    padding: 3.25rem 0;
    border-bottom: 1px solid var(--secondary-color);
    margin-bottom: 3.6rem;
    font-size: 3rem;
    font-weight: 300
}

.about .yellowsec.aboutactive .sec3 .top {
    border-color: var(--secondary-color)
}

.about .sec3 .title {
    display: grid;
    align-items: flex-start;
    grid-template-columns: 60% 40%;
    padding-bottom: 7rem
}

.about .sec3 .title h2 {
    font-size: 3rem;
    font-weight: 600;
    line-height: 3.75rem;
    text-transform: uppercase
}

.about .sec3 .title p {
    text-align: right;
    padding-right: 6rem;
    font-size: 3rem;
    font-weight: 300
}

.about .sec3 .textlist {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 4.87rem
}

.about .sec3 .textlist h3 {
    font-size: 6.5rem;
    font-weight: 600
}

.about .sec3 .textlist h4 {
    font-size: 2.1rem;
    font-weight: 300;
    text-transform: uppercase
}

.about .sec3 .list {
    display: flex;
    gap: 2.5rem;
    flex-direction: row;
    margin-bottom: 5rem
}

.about .sec3 .list .each {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 2rem;
    flex: 0 0 33.33%;
    border-radius: 2rem
}

.about .sec3 .list .each:nth-last-child(1) {
    margin-right: 10rem
}

.about .sec3 .list .each span {
    display: block;
    font-size: 3rem;
    font-weight: 300
}

.about .sec3 .list .each h3 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem
}

.about .sec3 .list .each p {
    font-size: 1.75rem;
    font-weight: 300;
    line-height: 2.1rem
}

.about .sec4 .top {
    padding: 3.25rem 0;
    border-bottom: 1px solid var(--secondary-color);
    margin-bottom: 3.6rem;
    font-size: 3rem;
    font-weight: 300
}

.about .yellowsec.aboutactive .sec4 .top {
    border-color: var(--secondary-color)
}

.about .sec4 .title {
    display: grid;
    align-items: flex-start;
    grid-template-columns: 60% 40%;
    padding-bottom: 7rem
}

.about .sec4 .title h2 {
    font-size: 3rem;
    font-weight: 600;
    line-height: 3.75rem;
    text-transform: uppercase
}

.about .sec4 .title p {
    text-align: right;
    padding-right: 6rem;
    font-size: 3rem;
    font-weight: 300
}

.about .sec4 .clientlist {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10rem;
    padding-bottom: 7rem
}

.about .sec4 .clientlist img {
    width: 100%
}

.about .team {
    position: relative
}

.about .team .top {
    padding: 3.25rem 0;
    border-bottom: 1px solid var(--primary-color);
    margin-bottom: 3.6rem;
    font-size: 3rem;
    font-weight: 300
}

.about .team .back-overlay {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: .4;
    position: absolute;
    top: 0;
    bottom: 0
}

.about .team .back-overlay p {
    width: 70rem;
    font-size: 3rem;
    font-weight: 600;
    line-height: 5rem;
    text-align: center
}

.about .team .teamlist {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0 5rem;
    grid-gap: 3.5rem
}

.about .team .teamlist .each.marginl {
    margin-left: 2rem
}

.about .team .teamlist .each.marginr {
    padding-right: 2rem
}

.about .team .teamlist img {
    width: 100%;
    display: block;
    height: auto
}

.about .team .teamlist .txt {
    background: #fff;
    padding: 1rem;
    color: var(--secondary-color)
}

.about .team .teamlist .txt h3 {
    font-size: 2rem;
    font-weight: 600
}

.about .team .teamlist .txt h4 {
    font-size: 1.5rem;
    font-weight: 300
}

.contact {
    padding: 0;
    padding-top: 15rem
}

.contact h1 {
    font-size: 4.2rem;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 5rem
}

.contact p {
    font-size: 1.5rem;
    margin-bottom: 1rem
}

.contact form {
    padding-bottom: 4rem
}

.contact form>div {
    padding: 0 25rem
}

.checkbox-wrapper-16 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
    margin-bottom: 2rem
}

.checkbox-wrapper-16 .checkbox-input {
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(100%);
    clip-path: inset(100%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px
}

.checkbox-wrapper-16 .checkbox-input:checked+.checkbox-tile {
    border-color: var(--primary-color);
    color: var(--primary-color)
}

.checkbox-wrapper-16 .checkbox-input:checked+.checkbox-tile:before {
    transform: scale(1);
    opacity: 1;
    background-color: var(--primary-color);
    border-color: var(--primary-color)
}

.checkbox-wrapper-16 .checkbox-input:checked+.checkbox-tile .checkbox-icon,
.checkbox-wrapper-16 .checkbox-input:checked+.checkbox-tile .checkbox-label {
    color: var(--primary-color)
}

.checkbox-wrapper-16 .checkbox-input:focus+.checkbox-tile:before,
.checkbox-wrapper-16 .checkbox-tile:hover:before {
    transform: scale(1);
    opacity: 1
}

.checkbox-wrapper-16 .checkbox-tile {
    display: block;
    width: 100%;
    border-radius: .5rem;
    position: relative;
    border: 2px solid #fff;
    color: #fff;
    padding: 1.5rem 0;
    padding-left: 3rem
}

.checkbox-wrapper-16 .checkbox-tile:before {
    content: "";
    position: absolute;
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #b5bfd9;
    border-radius: 50%;
    top: 0;
    bottom: 0;
    left: 1rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='192' height='192' fill='%23FFFFFF' viewBox='0 0 256 256'%3E%3Crect width='256' height='256' fill='none'%3E%3C/rect%3E%3Cpolyline points='216 72.005 104 184 48 128.005' fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='32'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    margin: auto
}

.contact .fields {
    display: block
}

.contact .fields .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem
}

.contact .fields .list input {
    padding: 1.5rem;
    width: 100%;
    color: #fff;
    background: none;
    border: 2px solid #fff;
    border-radius: .5rem;
    transition: 0.5s ease all
}

.contact .fields .list input::-webkit-input-placeholder {
    opacity: 1
}

.contact .fields .list input:focus {
    border-color: var(--primary-color)
}

.contact .fields .list .input-field {
    position: relative
}

.contact .fields .list span {
    position: absolute;
    display: block
}

.contact .fields button {
    background: var(--primary-color);
    padding: 1.5rem;
    margin-top: 1rem;
    color: var(--secondary-color);
    border: none;
    border-radius: .5rem;
    font-size: 1.5rem;
    font-weight: 500;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.contact .addresses {
    padding: 2rem var(--section-padding)
}

.contact .addresses>div {
    background: var(--primary-color);
    padding: 3rem;
    border-radius: 2rem;
}

.contact .addresses .top {
    padding: 3.25rem 0;
    border-bottom: 1px solid var(--secondary-color);
    margin-bottom: 3.6rem;
    font-size: 3rem;
    font-weight: 300;
    color: var(--secondary-color)
}

.contact .addresses .list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2rem
}

.contact .addresses .list .each {
    padding: 2rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 2rem
}

.contact .addresses .list .each>* {
    display: block
}

.contact .addresses .list .each span {
    font-weight: 200;
    font-size: 1.2rem;
    margin-bottom: 3rem
}

.contact .addresses .list .each h4 {
    font-size: 1.5rem;
    margin-bottom: 5rem
}

.contact .addresses .list .each label {
    font-weight: 200
}

.contact .addresses .list .each a {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: .7rem
}

.iot {
    display: block;
    padding: 0
}

.iot .innerslider {
    width: 100%;
    padding-top: 9rem;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 2rem;
    position: relative;
    padding: 0 var(--section-padding) 2rem var(--section-padding)
}

.iot .innerslider .title {
    position: relative
}

.iot .innerslider h1 {
    font-size: 6rem;
    font-weight: 900;
    line-height: 6.75rem;
    width: 48rem
}

.iot .innerslider h1 span {
    padding-left: 16rem
}

.iot .innerslider .title a {
    background: var(--primary-color);
    font-size: 1.375rem;
    display: inline-block;
    margin-right: 1rem;
    color: var(--secondary-color);
    padding: 1rem 3.5rem;
    position: absolute;
    top: 39%;
    margin: auto;
    text-wrap: nowrap;
    min-height: 5rem;
    display: flex;
    align-items: center;
    border-radius: 5rem;
    font-weight: 600;
    z-index: 1
}

.iot .sec1 {
    width: 100%;
    height: 100vh;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    position: relative
}

.iot .sec1 .right {
    display: flex;
    align-items: center
}

.iot .sec1 .right .content {
    padding: 0 3.6rem;
    width: 100%;
    position: relative
}

.iot .sec1 .right .content h2 {
    font-size: 4.25rem;
    font-weight: 400;
    line-height: 4.25rem
}

.iot .sec1 .right .content h2 span {
    padding-left: 20rem
}

.iot .sec1 .right .content>span {
    position: absolute;
    top: .8rem;
    left: 3.7rem;
    display: flex;
    align-items: center;
    text-wrap: nowrap;
    font-size: 2rem;
    font-weight: 400
}

.iot .sec1 .right .content>span svg {
    width: 5rem;
    display: block;
    margin-left: 1rem;
    fill: var(--primary-color)
}

.iot .drone svg {
    fill: var(--primary-color);
    stroke: none
}

.iot .drone svg .color2 {
    fill: var(--secondary-color);
    stroke: none
}

.iot .innerslider .dronecontainer {
    position: absolute;
    right: 50px;
    top: 45%;
    transform: translateY(-50%);
    scale: .7
}

.iot .target {
    position: absolute;
    left: 4rem;
    top: 50%;
    transform: translateY(-50%)
}

.iot .sec2 {
    padding: 0 var(--section-padding);
    transition: 0.3s ease all;
    padding-top: 6rem
}

.iot .sec2.bg-active {
    background: var(--primary-color);
    color: var(--secondary-color);
    transition: 0.3s ease all
}

.iot .sec2 .textpart {
    width: 100%;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center
}

.iot .sec2 .textpart>div {
    width: 90rem;
    text-align: center
}

.iot .sec2 .textpart h2 {
    font-size: 7rem;
    line-height: 6rem;
    font-weight: 900;
    margin-bottom: 1.5rem
}

.iot .sec2 .motionpathstart {
    position: relative;
    padding: var(--section-padding) 0;
    min-height: 330rem
}

.iot .sec2 .motionpathstart .path {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    pointer-events: none;
}

.iot .sec2 .motionpathstart svg {
    fill: none;
    stroke: var(--secondary-color);
    stroke-width: 4px;
    width: 100%
}

.iot .sec2 .motionpathstart .each {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr)
}

.iot .sec2 .motionpathstart .each:nth-child(2) {
    position: relative;
    display: block
}

.iot .sec2 .motionpathstart .each:nth-child(2) .sensorspath {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 40rem;
    top: 30rem;
    width: 50rem
}

.iot .sec2 .motionpathstart .each:nth-child(2) .img {
    padding-right: 5rem;
    min-height:
}

.iot .sec2 .motionpathstart .each:nth-child(2) .list path,
.iot .sec2 .motionpathstart .each:nth-child(2) .list polyline,
.iot .sec2 .motionpathstart .each:nth-child(2) .list line,
.iot .sec2 .motionpathstart .each:nth-child(2) .list rect,
.iot .sec2 .motionpathstart .each:nth-child(2) .list polygon,
.iot .sec2 .motionpathstart .each:nth-child(2) .list circle {
    stroke-dashoffset: 1px;
    stroke-dasharray: 0 1000px
}

.iot .sec2 .motionpathstart .each:nth-child(2) .sensorspath path.sensorinnerpath {
    stroke-dashoffset: 1px;
    stroke-dasharray: 0 1000px
}

.iot .sec2 .motionpathstart .each.datalogger {
    padding-right: 5rem
}

.iot .sec2 .motionpathstart .each.datalogger .img {
    padding: 0 3rem
}

.iot .sec2 .motionpathstart .each.datalogger .img .selected {
    stroke-dashoffset: 1px;
    stroke-dasharray: 0 1000px
}

.iot .sec2 .motionpathstart .each.sensors .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15rem;
    margin-top: 5rem
}

.iot .sec2 .motionpathstart .each.sensors .list .each {
    display: block;
    padding: 0;
    min-height: auto
}

.iot .sec2 .motionpathstart .each.sensors .list .each h4 {
    font-size: 2rem;
    margin: 2rem 0rem 1rem 0rem
}

.iot .sec2 .motionpathstart .each.sensors .list .each svg {
    padding: 0 7rem
}

.iot .sec2 .motionpathstart .each.sensors .list .each:nth-child(3) {
    padding-top: 7rem
}

.iot .sec2 .motionpathstart .each.sensors .list .each:nth-child(3) svg {
    padding: 0 10rem
}

.iot .sec2 .motionpathstart .title {
    font-size: 4rem;
    padding-right: 35rem;
    padding-bottom: 2rem;
    line-height: 6rem
}

.iot .sec2 .motionpathstart .each:nth-child(2) {
    min-height: 130rem;
    overflow: hidden;
    padding-left: 23rem;
    padding-top: 15rem;
    grid-template-columns: 100%
}

.iot .sec2 .motionpathstart .each:nth-child(3) {
    padding-top: 5rem;
    padding-right: 25rem;
    min-height: 80rem
}

.iot .sec2 .motionpathstart .each.system {
    padding-left: 20rem;
    padding-top: 10rem;
}

.iot .sec2 .motionpathstart .each.system svg {
    padding: 0 3rem
}

.iot .sec2 .motionpathstart .each.devices {
    padding-right: 20rem;
    grid-template-columns: 39% 61%;
    padding-bottom: 35rem;
    padding-top: 25rem
}

.iot .sec2 .motionpathstart .each.devices svg {
    padding-right: 2rem
}

.iot .sec2 .motionpathstart .each.devices svg .selected path,
.iot .sec2 .motionpathstart .each.devices svg .selected polygon,
.iot .sec2 .motionpathstart .each.devices svg .selected circle,
.iot .sec2 .motionpathstart .each.devices svg .selected rect,
.iot .sec2 .motionpathstart .each.devices svg .selected line {
    stroke-dashoffset: 1px;
    stroke-dasharray: 0 1000px
}

.iot .sec2 .motionpathstart .each .txt {
    overflow: hidden
}

.iot .sec2 .motionpathstart .each h2 {
    font-size: 8rem;
    line-height: 10rem
}

.iot .sec2 .motionpathstart .each.system .img .selected path,
.iot .sec2 .motionpathstart .each.system .img .selected polygon,
.iot .sec2 .motionpathstart .each.system .img .selected circle,
.iot .sec2 .motionpathstart .each.system .img .selected rect,
.iot .sec2 .motionpathstart .each.system .img .selected line {
    stroke-dashoffset: 1px;
    stroke-dasharray: 0 1000px
}

.iot .sec2 .motionpathstart .each h3 {
    font-size: 4rem;
    margin: 1.5rem 0;
    line-height: 4rem
}

.iot .sec2 .motionpathstart .each ul {
    list-style: none;
    padding: 0
}

.iot .sec2 .motionpathstart .each ul li {
    font-size: 1.5rem;
    line-height: 1.8rem;
    margin-bottom: 1.5rem
}

.iot .sec2 .motionpathstart .each p {
    margin-top: 2rem;
    font-size: 1.5rem;
    line-height: 1.8rem
}

.iot .sec2 .motionpathstart svg path.selected {
    stroke-dasharray: 8px
}

.iot .sec2 .motionpathstart svg path.pathlogo {
    stroke: none;
    fill: var(--secondary-color);
    width: 10rem;
    height: 10rem
}

.iot .sec2 .motionpathstart>p {
    font-size: 2rem;
    display: inline-block;
    transition: 0.1s ease all;
    position: absolute;
    z-index: 1;
    bottom: 23rem;
    left: 11rem
}

.iot .sec2 .motionpathstart>p a {
    font-weight: 700
}

.iot .sec3 {
    display: grid;
    grid-template-columns: 50% 50%;
    min-height: 100vh;
    padding: var(--section-padding) 0
}

.iot .sec3 .left {
    padding: 2rem var(--section-padding)
}

.iot .sec3 .left h2 {
    font-size: 6.5rem;
    line-height: 8.5rem;
    font-weight: 600
}

.iot .sec3 .left p {
    font-size: 2.125rem;
    line-height: 3.3rem;
    font-weight: 400
}

.iot .sec3 .right {
    padding: 0 var(--section-padding);
    overflow: hidden
}

.iot .sec3 .right .videocontainer {
    border-radius: 3rem;
    overflow: hidden;
    height: 100vh
}

.iot .sec3 .right video {
    width: auto;
    height: 100%;
    margin-left: -32%
}

.erp {
    display: block
}

.erpslider {
    display: block;
    padding: 0 var(--section-padding);
    padding-top: 10rem;
    position: relative;
    height: 100vh
}

.erpslider .illustration {
    position: absolute;
    bottom: 1rem;
    left: 0;
    width: 100%;
    z-index: 1
}

.erpslider .illustration svg {
    width: 100%;
    height: auto;
    display: block;
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 2px
}

.erpslider .illustration svg path,
.erpslider .illustration svg line,
.erpslider .illustration svg polyline,
.erpslider .illustration svg rect,
.erpslider .illustration svg circle,
.erpslider .illustration svg polygon {
    stroke-dashoffset: 1px;
    stroke-dasharray: 0 1000px
}

.erpslider .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    position: relative;
    z-index: 2
}

.erpslider .list .left h1 {
    font-size: 5rem;
    line-height: 5.75rem;
    font-weight: 900
}

.erpslider .list .left p {
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 2rem;
    margin-top: 1rem
}

.erpslider .list .left a {
    background: var(--primary-color);
    font-size: 1.375rem;
    display: inline-block;
    color: var(--secondary-color);
    padding: 1.25rem 3.5rem;
    border-radius: 5rem;
    font-weight: 600;
    margin-top: 2rem
}

.erpslider .list .right {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start
}

.erpslider .list .content {
    width: 50%;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 2rem;
    border-radius: 2rem
}

.erpslider .list .content .each {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem
}

.erpslider .list .content .each svg {
    fill: var(--secondary-color);
    margin-right: 1rem;
    width: 4rem;
}

.erpslider .list .content .each h4 {
    font-size: 1.25rem;
    font-weight: 400
}

.erpslider .list .content .each:nth-last-child(1) {
    margin-bottom: 0
}

.erp .sec1 {
    display: block;
    padding: 8rem 0
}

.erp .sec1 .splash {
    width: 60rem;
    background: var(--primary-color);
    color: var(--secondary-color);
    margin: 0 auto;
    padding: 2rem;
    border-radius: 2rem;
    display: grid;
    grid-template-columns: 80% 20%;
    align-items: center
}

.erp .sec1 .splash p {
    font-size: 1.5rem;
    font-weight: 400
}

.erp .sec1 .splash h2 {
    font-size: 4.6rem;
    font-weight: 900
}

.erp .sec1 .splash svg {
    width: 100%;
    height: auto;
    display: block;
    fill: none;
    stroke: var(--secondary-color);
    stroke-width: 1.5px
}

.erp .sec1 .splash svg path,
.erp .sec1 .splash svg line,
.erp .sec1 .splash svg polyline,
.erp .sec1 .splash svg rect,
.erp .sec1 .splash svg circle,
.erp .sec1 .splash svg polygon {
    stroke-dashoffset: 1px;
    stroke-dasharray: 0 1000px
}

.erp .sec1 .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 7rem;
    align-items: center
}

.erp .sec1 .list .left {
    display: grid;
    align-items: flex-start;
    grid-template-columns: 6rem 1fr;
    grid-gap: 3rem
}

.erp .sec1 .list .left .img {
    width: 100%;
    height: auto;
    display: block
}

.erp .sec1 .list .left .img svg {
    width: 100%;
    fill: var(--primary-color)
}

.erp .sec1 .list .right {
    padding: 0 10rem
}

.erp .sec1 .list .right svg {
    width: 100%;
    height: auto;
    display: block;
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 2px
}

.erp .sec1 .list .left span {
    font-size: 1.75rem;
    margin-bottom: .5rem
}

.erp .sec1 .list .left h3 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem
}

.erp .sec1 .list .left p {
    font-size: 1.25rem;
    line-height: 1.8rem
}

.erp .sec1 .list .right svg path,
.erp .sec1 .list .right svg line,
.erp .sec1 .list .right svg polyline,
.erp .sec1 .list .right svg rect,
.erp .sec1 .list .right svg circle,
.erp .sec1 .list .right svg polygon {
    stroke-dashoffset: 1px;
    stroke-dasharray: 0 1000px
}

.erp .sec2 {
    position: relative;
    width: 100%;
    display: block
}

.erp .sec2 .floatingtext {
    font-size: 5.5rem;
    line-height: 6.5rem;
    font-weight: 900;
    text-align: center;
    padding: 0 5rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2
}

.erp .sec2 .floatingtext span {
    position: relative;
    display: inline-block
}

.erp .sec2 .floatingtext span svg {
    stroke: var(--primary-color);
    position: absolute;
    top: 0;
    width: 120%;
    left: -3rem;
    stroke-width: .3rem;
}

.erp .sec2 .floatingtext span svg path {
    stroke-dashoffset: 1px;
    stroke-dasharray: 0 1000px
}

.erp .sec2 .imgsection {
    padding-top: 13rem;
    display: grid;
    grid-template-columns: 1fr 42rem 1fr;
    align-items: flex-start;
    gap: 4.5rem;
    position: relative;
    z-index: 1
}

.erp .sec2 .imgsection svg {
    width: 100%;
    height: auto;
    display: block
}

.erp .sec2 .imgsection .one,
.sec2 .imgsection .three {
    display: block;
    margin-top: 30rem;
    position: relative
}

.erp .sec2 .imgsection .two {
    display: block;
    position: relative
}

.erp .sec2 .imgsection .img {
    width: 100%;
    height: auto;
    display: block;
    overflow: hidden
}

.erp .sec2 .imgsection .two .img {
    border-top-right-radius: 21rem;
    border-top-left-radius: 21rem;
    margin-bottom: 2rem
}

.erp .sec2 .imgsection .three .img {
    border-top-right-radius: 14rem
}

.erp .sec2 .imgsection .one .img {
    border-top-left-radius: 14rem
}

.erp .sec2 .imgsection img {
    width: 100%;
    height: auto;
    display: block
}

.erp .sec2 .imgsection .overlay {
    stroke: var(--primary-color);
    stroke-width: .2rem
}

.erp .sec2 .imgsection .one .overlay {
    position: absolute;
    top: 8.75rem;
    left: 14rem
}

.erp .sec2 .imgsection .one .overlay svg {
    width: 12rem
}

.erp .sec2 .imgsection .one .overlay svg path,
.sec2 .imgsection .two .overlay svg path,
.sec2 .imgsection .three .overlay svg path {
    stroke-dashoffset: 1px;
    stroke-dasharray: 0 1000px
}

.erp .sec2 .imgsection .two .overlay {
    position: absolute;
    bottom: 30rem;
    right: 9rem;
    width: 24rem;
    z-index: 1
}

.erp .sec2 .imgsection .two .overlay svg {
    width: 25rem
}

.erp .sec2 .imgsection .three .overlay {
    position: absolute;
    top: 6.5rem;
    left: 2rem
}

.erp .sec2 .imgsection .three .overlay svg {
    width: 22rem
}

.erp .sec2 .imgsection .two .content {
    text-align: center
}

.erp .sec2 .imgsection .two h3 {
    font-size: 2.5rem;
    font-weight: 900
}

.erp .sec2 .imgsection .two p {
    font-size: 1.25rem;
    line-height: 2rem;
}

.erp .sec2 .imgsection .two a {
    font-size: 1.375rem;
    display: inline-block;
    color: var(--secondary-color);
    padding: 1.25rem 3.5rem;
    border-radius: 5rem;
    font-weight: 600;
    margin-top: 2rem;
    background: var(--primary-color)
}

.erp .sec3 {
    padding: 10rem 0;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start
}

.erp .sec3>div {
    width: 50%
}

.erp .sec3 .title {
    padding-right: 3rem;
    position: sticky;
    top: 0;
    left: 0;
    padding-top: 10rem;
    height: 100vh
}

.erp .sec3 .title .processimg {
    width: 100%;
    padding: 0 3rem 0 0;
    margin-top: 4rem
}

.erp .sec3 .title .processimg svg {
    width: 100%;
    height: auto;
    display: block;
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 2px
}

.erp .sec3 .title .processimg svg path,
.erp .sec3 .title .processimg svg line,
.erp .sec3 .title .processimg svg polyline,
.erp .sec3 .title .processimg svg rect,
.erp .sec3 .title .processimg svg circle,
.erp .sec3 .title .processimg svg polygon {
    stroke-dashoffset: 1px;
    stroke-dasharray: 0 1000px
}

.erp .sec3 .title h2 {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 4.125rem;
    margin-bottom: 1.5rem
}

.erp .sec3 .title p {
    font-size: 1.5rem;
    line-height: 1.8rem;
    margin-bottom: 2rem
}

.erp .sec3 .title a {
    font-size: 1.375rem;
    display: inline-block;
    color: var(--secondary-color);
    padding: 1.25rem 3.5rem;
    border-radius: 5rem;
    font-weight: 600;
    background: var(--primary-color)
}

.erp .sec3 .features {
    display: block;
    position: relative
}

.erp .sec3 .features .each {
    display: block;
    width: 100%;
    padding: 11rem 7rem
}

.erp .sec3 .features .each .inner {
    display: flex;
    align-items: flex-start;
    padding: 2rem;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 1.5rem
}

.erp .sec3 .features .each svg {
    stroke: var(--secondary-color);
    stroke-width: 1px;
    width: 6rem;
    height: 6rem;
    margin-right: 1rem;
    fill: none
}

.erp .sec3 .features .each h4 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: .5rem
}

.erp .sec3 .features .each p {
    font-size: 1.25rem;
    line-height: 1.8rem
}

.erp .sec3 .features .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1
}

.erp .sec3 .features .overlay svg {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 5px
}

.erp .sec3 .features .overlay svg path.selected {
    stroke-dashoffset: 1px;
    stroke-dasharray: 0 1000px
}

.mobilemenu {
    display: none
}

.portfoliodetail {
    padding: 7.5rem 0 0 0
}

.portfolioslider {
    padding: 0 var(--section-padding);
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 3rem;
    margin-bottom: var(--portfolio-padding);
    padding-top: 10rem;
    overflow: hidden
}

.portfolioslider img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 3rem;
    transform: translateY(100%)
}

.portfolioslider h1 {
    font-size: 7.5vw;
    text-align: center;
    text-transform: uppercase;
    font-weight: 900;
    line-height: 9rem
}

.portfoliointro {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-gap: 5rem;
    align-items: flex-start;
    padding: 0 var(--section-padding);
    margin-bottom: var(--portfolio-padding)
}

.portfoliointro h4 {
    font-size: 3.25rem;
    font-weight: 700;
    display: flex;
    align-items: flex-end
}

.portfoliointro svg {
    width: 3rem;
    height: auto;
    margin-left: 1rem
}

.portfoliointro p {
    font-size: 2rem;
    line-height: 3.75rem;
    font-weight: 400
}

.portfolioproblems {
    display: block;
    margin-bottom: var(--portfolio-padding);
    padding: 0 var(--section-padding)
}

.portfolioproblems h2 {
    font-size: 6.625rem;
    font-weight: 900;
    line-height: 6.8rem;
    margin-bottom: 5rem
}

.portfolioproblems .list {
    display: block
}

.portfolioproblems .list .each {
    margin-bottom: 10rem;
    display: grid;
    grid-template-columns: 2fr 4fr
}

.portfolioproblems .list .each .ico {
    display: flex;
    align-items: center;
    justify-content: center
}

.portfolioproblems .list .each .ico svg {
    width: 16rem;
    height: auto;
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 3px
}

.portfolioproblems .list .each h3 {
    font-size: 3.8rem;
    font-weight: 900;
    margin-bottom: 1rem
}

.portfolioproblems .list .each p {
    font-size: 2rem;
    line-height: 3.75rem;
    font-weight: 400
}

.porfoliodesignprocess {
    display: block;
    margin-bottom: var(--portfolio-padding);
    padding: 0 var(--section-padding)
}

.porfoliodesignprocess h2 {
    font-size: 6.625rem;
    font-weight: 900;
    line-height: 6.8rem;
    margin-bottom: 5rem
}

.porfoliodesignprocess .list {
    display: grid;
    grid-template-columns: repeat(5, 1fr)
}

.porfoliodesignprocess .list .each {
    position: relative;
    display: flex;
    min-height: 40rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-start
}

.porfoliodesignprocess .list .each svg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    fill: none;
    stroke: var(--primary-color);
    opacity: .5;
    stroke-width: 3px;
    z-index: 1
}

.porfoliodesignprocess .list .each .ico {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    min-width: 15rem;
    border-radius: 2.5rem;
    padding: .5rem;
    display: flex;
    position: relative;
    z-index: 2;
    align-items: center
}

.porfoliodesignprocess .list .each .ico span {
    background: var(--secondary-color);
    color: var(--primary-color);
    width: 3.8rem;
    height: 3.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2rem
}

.porfoliodesignprocess .list .each .ico h4 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-left: .75rem
}

.porfoliodesignprocess .list .each:nth-child(1) .ico {
    margin-top: 10rem
}

.porfoliodesignprocess .list .each:nth-child(2) .ico {
    margin-top: 3rem
}

.porfoliodesignprocess .list .each:nth-child(3) .ico {
    margin-top: 10rem
}

.porfoliodesignprocess .list .each:nth-child(4) .ico {
    margin-top: 3rem
}

.porfoliodesignprocess .list .each:nth-child(5) .ico {
    margin-top: 10rem
}

.portfoliofont {
    display: block;
    margin-bottom: var(--portfolio-padding);
    padding: 0 var(--section-padding)
}

.portfoliofont img {
    width: 100%;
    margin-bottom: 3rem;
    border-radius: 3rem;
}

.portfoliofont .list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 5rem
}

.portfoliofont .list h3 {
    font-size: 5rem;
    font-weight: 400;
    margin-bottom: 1rem
}

.portfoliofont .list p {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 400
}

.portfoliocolors {
    display: block;
    margin-bottom: var(--portfolio-padding);
    padding: 0 var(--section-padding)
}

.portfoliocolors h2 {
    font-size: 6.625rem;
    font-weight: 900;
    line-height: 6.8rem;
    margin-bottom: 5rem
}

.portfoliocolors .list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 2rem
}

.portfoliocolors .list .each {
    padding: 2.75rem;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 3rem;
    min-height: 28rem;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between
}

.portfoliocolors .list .each span {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: .5rem;
    display: inline-block;
    border: 1px solid var(--secondary-color);
    padding: .5rem 1.5rem;
    border-radius: 1.5rem
}

.portfoliocolors .list .each p {
    font-size: 1.8rem;
    font-weight: 700;
    width: 100%
}

.portfoliologo {
    display: block;
    margin-bottom: var(--portfolio-padding);
    padding: 0 var(--section-padding)
}

.portfoliologo h2 {
    font-size: 6.625rem;
    font-weight: 900;
    line-height: 6.8rem;
    margin-bottom: 5rem
}

.portfoliologo .img {
    width: 100%;
    height: 80vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center
}

.portfoliologo .img svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 3px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: .5
}

.portfoliologo .img img {
    width: 80rem;
    z-index: 1;
    position: relative
}

.portfolioservices {
    display: block;
    margin-bottom: var(--portfolio-padding);
    padding: 0 var(--section-padding)
}

.portfolioservices h2 {
    font-size: 6.625rem;
    font-weight: 900;
    line-height: 6.8rem;
    margin-bottom: 5rem
}

.portfolioservices .img img {
    width: 100%;
    margin-bottom: 3rem;
    border-radius: 3rem;
}

.portfolioservices .list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 5rem;
    position: relative;
    padding: 5rem
}

.portfolioservices .list .each:nth-child(odd) {
    grid-column: 1 / span 3
}

.portfolioservices .list .each:nth-child(even) {
    grid-column: 2 / span 3
}

.portfolioservices .list .each {
    position: relative;
    z-index: 2;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 3.75rem;
    border-radius: 3.1rem
}

.portfolioservices .list .each .ico {
    background: var(--secondary-color);
    width: 6.25rem;
    height: 6.25rem;
    padding: 1.25rem;
    border-radius: .9rem;
    margin-bottom: 2rem
}

.portfolioservices .list .each .ico img {
    width: 100%;
    display: block
}

.portfolioservices .list .each h3 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: .5rem
}

.portfolioservices .list .each p {
    font-size: 1.375rem;
    line-height: 2rem
}

.portfolioservices .list svg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    stroke: var(--primary-color);
    stroke-width: 3px;
    opacity: .5
}

.portfolioscreenshots {
    padding: 0 var(--section-padding);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem
}

.portfolioscreenshots>img {
    width: 100%;
    display: block;
    border-radius: 3rem;
}

.portfolioscreenshots>img:last-child {
    grid-column: 1 / -1
}

@media only screen and (max-width :767px) {
    :root {
        --section-padding: 1.5rem
    }

    .cursor {
        display: none
    }

    .cursor2 {
        display: none
    }

    html {
        font-size: 2vw;
        cursor: default !important
    }

    .wrapper.mblmenuactive {
        overflow: hidden;
        height: 100vh
    }

    header {
        display: none
    }

    .headerbottom {
        display: none
    }

    .mobilemenu {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: var(--section-padding);
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        z-index: 100
    }

    .mobilemenu .logo {
        width: 7.5rem;
        display: inline-block
    }

    .mobilemenu .logo svg {
        fill: var(--primary-color);
        width: 100%;
        height: auto;
        display: block
    }

    .mblmenucontent {
        display: block;
        position: fixed;
        background-color: var(--secondary-color);
        width: 100%;
        height: 87vh;
        top: 11rem;
        left: 0;
        z-index: 15;
        border-top: var(--primary-color) solid 1px;
        padding: 3rem;
        transform: translateX(100%);
        transition: 0.5s ease all
    }

    .wrapper.mblmenuactive .mblmenucontent {
        transform: translateX(0)
    }

    .mblmenucontent ul.nav {
        list-style: none;
        padding: 0;
        display: block
    }

    .mblmenucontent ul.nav li {
        font-size: 3rem;
        font-weight: 600;
        margin-bottom: 2rem
    }

    .mblmenucontent ul.bottomlinks {
        list-style: none;
        padding: 0;
        display: flex;
        margin-top: 5rem
    }

    .mblmenucontent ul.bottomlinks li {
        font-size: 2rem;
        font-weight: 400;
        margin-bottom: 1rem;
        padding-right: 3rem;
        font-weight: 700
    }

    .mobilemenu .rightoptions {
        display: flex;
        align-items: center;
        gap: 1.5rem
    }

    .mobilemenu .menu {
        position: relative;
        width: 4rem;
        height: 4rem;
        z-index: 4
    }

    .mobilemenu .menu span {
        background: var(--primary-color);
        width: 3rem;
        height: .375rem;
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        top: 1.4rem;
        margin: auto;
        z-index: 0
    }

    .mobilemenu .menu span:nth-child(2) {
        top: 2.3rem
    }

    .mobilemenu .menu.active span:nth-child(1) {
        transform: rotate(-45deg);
        top: 1.8rem
    }

    .mobilemenu .menu.active span:nth-child(2) {
        transform: rotate(45deg);
        top: 1.8rem
    }

    .popup_content form {
        display: block
    }

    .popup_content form .each.half {
        width: 100%
    }

    .custom-checkbox ul {
        flex-wrap: wrap
    }

    .custom-checkbox ul li {
        width: 50%;
        margin: 0 0 1rem 0
    }

    .popup_content input[type="text"],
    .popup_content textarea,
    .popup_content input[type="email"] {
        font-size: 1.5rem
    }

    .custom-checkbox input+label {
        font-size: 1.3rem
    }

    .slider {
        align-items: flex-start;
        padding: var(--section-padding);
        padding-top: 20rem
    }

    .slider h1 {
        font-size: 4rem;
        line-height: 6rem
    }

    .slider h1 svg {
        width: 25rem;
        left: -1rem;
        top: -4rem
    }

    .slider h1 span {
        display: inline-block
    }

    .home .section1 .svgpath {
        display: none
    }

    .home .section1 {
        align-items: flex-start;
        height: auto;
        padding: 5rem 0 10rem
    }

    .home .section1 .img {
        width: 100%
    }

    .home .section2 p {
        width: 100%
    }

    .home .section2 h2 {
        font-size: 4rem;
        line-height: 5rem
    }

    .home .section2 svg {
        padding-left: 3rem;
        width: 100%
    }

    .home .section2 {
        padding-bottom: 10rem
    }

    .home .section3 {
        padding: 5rem 0
    }

    .home .section3 h2 {
        font-size: 4rem;
        line-height: 5rem
    }

    .home .section3 .list .each {
        display: flex;
        flex-wrap: wrap-reverse;
        justify-content: center;
        padding: 5rem 3rem
    }

    .home .section3 .list .each h3 {
        line-height: 4rem
    }

    footer .top {
        display: block;
        text-align: center
    }

    footer {
        padding: 5rem
    }

    footer .top p {
        margin-bottom: 2rem
    }

    footer .bottom {
        display: block;
        text-align: center
    }

    footer .bottom .each {
        width: 100%;
        margin-top: 2rem;
        text-align: center;
        display: block
    }

    .services.services .slider h1 svg {
        left: -1rem;
        top: -4rem;
        width: 20rem
    }

    .services .process .list {
        overflow-x: hidden
    }

    .services .process .list .each {
        padding: 5rem 0;
        display: flex;
        flex-wrap: wrap-reverse
    }

    .mobileapp_sec1 h2 {
        font-size: 4rem;
        line-height: 6rem
    }

    .mobileapp_sec1 .list {
        display: block
    }

    .mobileapp_sec1 .list .each {
        margin-bottom: 5rem
    }

    .mobileapp_sec1 {
        height: auto
    }

    .work_intro {
        padding: 5rem 0
    }

    .aboutslider {
        display: block;
        padding-top: 15rem
    }

    .aboutslider .sec1drawing {
        top: auto;
        bottom: -10rem
    }

    .about .sec3 .list {
        display: block
    }

    .about .sec3 .list .each {
        margin-bottom: 3rem
    }

    .about .sec3 .textlist {
        grid-template-columns: repeat(2, 1fr)
    }

    .about .sec3 .list .each:nth-last-child(1) {
        margin: 0
    }

    .about .sec4 .title {
        display: block
    }

    .about .sec4 .clientlist {
        display: block
    }

    .about .sec4 .clientlist .each {
        padding: 5rem 10rem
    }

    .about .team .teamlist {
        display: block;
        overflow-x: hidden
    }

    .about .team .teamlist .each {
        margin-bottom: 5rem
    }

    .about .team .teamlist .each.marginl {
        margin-left: 0
    }

    .contact {
        padding: 15rem var(--section-padding) 0 var(--section-padding)
    }

    .contact form>div {
        padding: 0
    }

    .checkbox-wrapper-16 {
        display: block
    }

    .checkbox-wrapper-16>label {
        margin-bottom: 1rem;
        display: block
    }

    .contact .fields .list {
        display: block
    }

    .contact .fields .list input {
        margin-bottom: 1rem
    }

    .contact .addresses {
        padding: 0
    }

    .contact .addresses .list {
        display: block
    }

    .contact .addresses .list .each {
        margin-bottom: 2rem
    }

    .about .team .back-overlay p {
        width: 100%
    }

    .about .team {
        overflow-x: hidden
    }

    .iot .innerslider .dronecontainer {
        left: 0;
        right: auto;
        padding: 0 5rem;
        width: 100%;
        scale: 1
    }

    .iot .drone svg {
        width: 100%;
        scale: 1
    }

    .iot .sec1 {
        display: block;
        padding: 15rem 0;
        height: auto
    }

    .iot .sec1 .left {
        display: none
    }

    .iot .sec2 .motionpathstart .path {
        display: none
    }

    .iot .sec2 .motionpathstart .each:nth-child(2) .sensorspath {
        display: none
    }

    .iot .sec2 .motionpathstart .title {
        padding: 0
    }

    .iot .sec2 .motionpathstart .each:nth-child(2) {
        min-height: auto;
        padding: 0
    }

    .iot .sec2 .motionpathstart .each.sensors,
    .iot .sec2 .motionpathstart .each.datalogger,
    .iot .sec2 .motionpathstart .each.system {
        padding-top: 15rem !important
    }

    .iot .sec2 .motionpathstart .each.sensors .list {
        display: block
    }

    .iot .sec2 .motionpathstart .each.sensors .list .each {
        padding-top: 5rem
    }

    .iot .sec2 .motionpathstart .each p {
        font-size: 2.5rem;
        line-height: 3.5rem
    }

    .iot .sec2 .motionpathstart .each:nth-child(3) {
        padding: 0;
        min-height: auto;
        display: block
    }

    .iot .sec2 .motionpathstart .each.system {
        padding: 0;
        display: block;
        min-height: auto
    }

    .iot .sec2 .motionpathstart>p {
        position: static;
        display: block;
        padding-top: 5rem;
        padding-bottom: 3rem;
        font-size: 2.5rem
    }

    .iot .sec3 {
        display: flex;
        flex-wrap: wrap-reverse;
        height: auto;
        padding: 5rem var(--section-padding)
    }

    .iot .sec3 .right .videocontainer {
        border-radius: 3rem;
        overflow: hidden;
        height: auto
    }

    .iot .sec3 .right video {
        width: 100%;
        height: auto;
        margin-left: 0
    }

    .iot .sec2 .motionpathstart .each.devices {
        padding: 0;
        display: block;
        padding-top: 15rem
    }

    .erpslider .list {
        grid-template-columns: repeat(1, 1fr)
    }

    .erpslider .list .left {
        margin-bottom: 5rem
    }

    .erpslider .list .right .content {
        width: 100%
    }

    .erp .sec1 .splash {
        width: 100%;
        grid-template-columns: repeat(1, 1fr)
    }

    .erp .sec1 .splash .txt {
        margin-bottom: 3rem;
        text-align: center
    }

    .erpslider .list .content .each h4 {
        font-size: 2.5rem;
        margin-bottom: .5rem
    }

    .erpslider .list .content .each p {
        font-size: 1.75rem
    }

    .erpslider .list .content .each svg {
        width: 6rem;
        height: 6rem
    }

    .erpslider .illustration {
        display: none
    }

    .erp .sec1 .list {
        grid-row: inherit;
        grid-template-columns: repeat(1, 1fr)
    }

    .erp .sec2 .imgsection .one,
    .sec2 .imgsection .three {
        display: none
    }

    .erp .sec2 .imgsection {
        grid-template-columns: repeat(1, 1fr)
    }

    .erp .sec2 .floatingtext span svg {
        top: -4rem
    }

    .erp .sec2 {
        padding-top: 20rem
    }

    .erp .sec2 .floatingtext {
        width: 100%;
        padding: 0;
        top: -5rem
    }

    .erp .sec2 .imgsection .two h3 {
        font-size: 4rem;
        margin-bottom: 2rem
    }

    .erp .sec2 .imgsection .two p {
        font-size: 2rem;
        line-height: 3rem
    }

    .erp .sec2 .imgsection .two .overlay {
        display: none
    }

    .erp .sec3 {
        display: block
    }

    .erp .sec3>div {
        width: 100%
    }

    .erp .sec3 .title {
        padding-right: 0;
        position: static;
        height: auto;
        padding-top: 5rem
    }

    .erp .sec3 .features .overlay {
        display: none
    }

    .erp .sec3 .features .each {
        padding: 0;
        margin-top: 5rem
    }

    .erp .sec3 .features .each p {
        font-size: 2rem;
        line-height: 3rem
    }

    .erp .sec3 .features .each .inner .icon svg {
        width: 7rem
    }

    .worklistingslider .content {
        padding-top: 10rem;
        padding-bottom: 0
    }

    .worklistingslider h1 {
        text-align: center
    }

    .worklistingslider .mountain {
        width: 100%
    }

    .work_intro h2 {
        font-size: 4rem
    }

    .worklist .introcontent {
        display: block;
        text-align: center
    }

    .worklist .introcontent h4 {
        text-align: center;
        margin-bottom: 4rem;
        justify-content: center
    }

    .worklist .list .each.style1 {
        display: block
    }

    .worklist .list .each.style1 .link {
        margin-bottom: 4rem;
        text-align: center
    }

    .worklist .list .each.style1 h2 {
        font-size: 5rem;
        line-height: 6rem
    }

    .worklist .list .each.style2 {
        display: block
    }

    .worklist .list .each.style2>div {
        margin-bottom: 2.5rem
    }

    .portfolioslider {
        padding-top: 6rem
    }

    .portfolioslider h1 {
        line-height: 5rem
    }

    .portfoliointro {
        display: block
    }

    .portfoliointro h4 {
        text-align: center;
        margin-bottom: 4rem;
        justify-content: center
    }

    .portfoliointro p {
        text-align: center
    }

    .portfolioproblems h2 {
        text-align: center
    }

    .portfolioproblems .list .each {
        display: block
    }

    .portfolioproblems .list .each .ico {
        margin-bottom: 3rem;
    }

    .portfolioproblems .list .each .txt {
        text-align: center
    }

    .porfoliodesignprocess h2 {
        text-align: center
    }

    .porfoliodesignprocess .list {
        grid-template-columns: repeat(2, 1fr)
    }

    .portfoliofont .list {
        grid-template-columns: repeat(2, 1fr)
    }

    .portfoliocolors h2 {
        text-align: center
    }

    .portfoliocolors .list {
        display: block
    }

    .portfoliocolors .list .each {
        margin-bottom: 3rem
    }

    .portfoliologo h2 {
        text-align: center
    }

    .portfoliologo .img img {
        width: 100%
    }

    .portfolioservices h2 {
        text-align: center
    }

    .portfolioservices .list {
        display: block
    }

    .portfolioservices .list .each {
        margin-bottom: 3rem
    }

    .portfolioscreenshots {
        display: block
    }

    .portfolioscreenshots img {
        margin-bottom: 3rem
    }

    .home .section4{display: flex;flex-wrap: wrap-reverse;}
    .home .section4 .img{width: 100%;margin-bottom:2rem}
    .home .section4 .draggable{display: none;}
    .home .section4 .txt{margin-bottom:5rem;text-align: center;}
    .home .section5{display:block;}
    .home .section5 .one{width: 100%;text-align: center;margin-bottom:5rem;min-height: auto;}
    .home .section5 .two{display: none;}
    .home .section5 .three{text-align: center;min-height: auto;}
}