#overly {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom:0;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0,0,0,0.5)!important;
}
#popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;

    z-index: 9999;
}

body{
    overflow-x:hidden !important;
}

/* Global */
@font-face {
    font-family: 'Poppins';
    src: url('../assets/poppins/Poppins-Regular.ttf');
}
@font-face {
    font-family: 'Poppins-Bold';
    src: url('../assets/poppins/Poppins-Bold.ttf');
}
:root {
    --primary: #4553C7;
    --highlight: #D4ECFF;
    --dark: #202020;
    --fade: #808080;
    --bgcolor: #EBF2FA;
    --light: #fafafa;
    --success: #7EDF99;
    --warning: #FF5E5E;
    --color-text: navy;
    --bgdark: #454F5C;
    --size: clamp(10rem, 1rem + 40vmin, 30rem);
    --gap: calc(var(--size) / 14);
    --duration: 60s;
    --scroll-start: 0;
    --scroll-end: calc(-100% - var(--gap));
    /* Services Section Style */

    --color-brand-primary: #4553C7;
        --color-brand-primary-h: 251;
        --color-brand-primary-s: 43%;
        --color-brand-primary-l: 43%;
        --color-brand-accent: #4553C7;
        --color-brand-accent-h: 16;
        --color-brand-accent-s: 96%;
        --color-brand-accent-l: 61%;
        --color-brand-accent-bg: #ffebeb;
        --ratio: 1.4;
        --s-6: calc(var(--s-5) / var(--ratio));
        --s-5: calc(var(--s-4) / var(--ratio));
        --s-4: calc(var(--s-3) / var(--ratio));
        --s-3: calc(var(--s-2) / var(--ratio));
        --s-2: calc(var(--s-1) / var(--ratio));
        --s-1: calc(var(--s0) / var(--ratio));
        --s0: calc(1.05rem + 0.333vw);
        --s1: calc(var(--s0) * var(--ratio));
        --s2: calc(var(--s1) * var(--ratio));
        --s3: calc(var(--s2) * var(--ratio));
        --s4: calc(var(--s3) * var(--ratio));
        --s5: calc(var(--s4) * var(--ratio));
        --s6: calc(var(--s5) * var(--ratio));
}
html {
    scroll-behavior: smooth;
}
body {
    background: #F6F7FA;
    font-family: 'Poppins';
    margin: 0;
    padding: 0;
    color: #404040;
    overflow-x: hidden;
}
/* width */
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #38ACEC;
    border-radius: 5px;
    transition: 300ms;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
    transition: 300ms;
}

/* Logo */
.logo {
    margin: 20px 20px;
}
.logo-image {
    height: 40px;
    object-fit: contain;
}

/* Text Styles */
.text-primary {
    color: var(--primary) !important;
}
.text-fade {
    color: var(--fade);
}
.text-bold{
    font-family: 'Poppins-Bold';
}
.title {
    font-size: 2rem;
    font-family: 'Poppins-Bold';
    text-align: center;
    margin: 30px 0;
}
.subtitle {
    font-size: 1.25rem;
    font-family: 'Poppins-Bold';
}
.text-heading {
    font-family: 'Poppins-Bold';
}

/* ------------------- */
.boxshadow{
    box-shadow: 10px 20px 50px rgba(0, 0, 0, 0.1);
}
button{
    border: none;
    outline: none;
}
.button {
    height: 40px;
    background: var(--highlight);
    display: table-cell;
    vertical-align: middle;
    padding: 5px 30px;
    font-weight: bold;
    color: var(--primary);
    border-radius: 10px;
}
.button-light {
    height: 40px;
    background: var(--light);
    display: table-cell;
    vertical-align: middle;
    padding: 5px 30px;
    font-weight: bold;
    color: var(--dark);
    border-radius: 10px;
}
.button-primary {
    height: 40px;
    background: var(--primary);
    display: table-cell;
    vertical-align: middle;
    padding: 5px 30px;
    font-weight: bold;
    color: var(--light);
    border-radius: 10px;
}

/* ------------------- */
.social-icon {
    height: 40px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    background-color: none;
    border-radius: 30px;
    transition: 200ms;
}
.social-icon:hover {
    transform: scale(1.1);
    transition: 200ms;
}

/* ------------------- */
p {
    max-width: 800px;
    text-align: center;
    margin: 0;
    padding: 0;
    text-align: justify;
}
ul{
    padding: none !important;
}
li {
    list-style-type: none;
}
a,
a:hover {
    color: var(--fade);
    text-decoration: none;
}
a:hover{
    color: var(--primary);
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins-Bold';
    font-weight: bold;
}
.header,.footer{
    width: 100vw;
}
.info-container {
    display: grid;
    grid-template-columns: auto auto;
    min-height: 12.5rem;
}
.info-container-image {
    grid-row: 1;
    width: 30vw;
    display: flex;
}
.info-container-description {
    grid-row: 1;
}
.info-image{
    height: 100%;
    width: 100%;
    max-width: 200px;
    max-height: 10rem;
    object-fit: contain;
    margin: 0 auto;
}
@media (max-width:1080px) {
    body {
        overflow-x: hidden !important;
    }
    .product-description-image {
        width: 200px;
    }
}
@media (max-width:720px) {
    body{
        overflow-x: hidden;
    }
    .title {
        font-size: 1.5rem;
    }
    .info-container {
        grid-template-columns: 100% auto;
    }

    .info-container-image {
        grid-column: 1;
        grid-row: 2;
        width: 100%;
        margin: 20px 0;
    }

    .info-container-description {
        grid-column: 1;
        grid-row: 1;
    }
}

/* Animations  */
.hidden {
    opacity: 0;
}
.console-container {

    font-family: Khula;
    font-size: 4em;
    text-align: center;
    height: 200px;
    width: 600px;
    display: block;
    position: absolute;
    color: white;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.console-underscore {
    display: inline-block;
    position: relative;
    top: -0.14em;
    left: 10px;
}
.float {
    animation: float 3s ease-out infinite;
}
@keyframes float {
    50% {
        transform: translate(0, 20px);
    }
}
.shadowFrame {
    width: 130px;
    margin-top: 15px;
}
.shadow {
    animation: shrink 3s ease-out infinite;
    transform-origin: center center;
    /* ellipse {
        transform-origin: center center;
    } */
}
@keyframes shrink {
    0% {
        width: 90%;
        margin: 0 5%;
    }

    50% {
        width: 60%;
        margin: 0 18%;
    }

    100% {
        width: 90%;
        margin: 0 5%;
    }
}

/* Navbar */
.header {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 10;
}
nav {
    width: var(--menu-width);
    display: flex;
    transform-style: preserve-3d;
    justify-content: space-evenly;
    position: relative;
    z-index: 10;
    margin: 0px auto;
    perspective: 2000px;
    flex-wrap: wrap;
    top: 1em;
}
#menu {
    margin: 10px 20px;
}
nav .menu-item {
    font-weight: 600;
    transform-style: preserve-3d;
    flex-grow: 1;
    display: flex;
    flex-basis: var(--item-width);
    box-sizing: border-box;
    margin: 0 20px;
    justify-content: center;
    perspective: 200px;
    letter-spacing: 0.5px;
    min-height: 3.5em;
}
.menu-text,
nav .menu-text a {
    color: #444444 !important;
    font-size: 1em;
    color: var(--fade);
    text-decoration: none;
    transition: color 0.1s ease-out;
    text-align: center;
}
nav .menu-text a:hover {
    color: var(--dark);
}
.opacity-1{
    opacity: 1 !important;
}
#sub-menu-holder {
    pointer-events: none;
    color: rgba(0, 0, 0, 0.5);
    font-weight: normal;
    padding: 1em;
    position: absolute;
    transition: opacity 2 ease-out;
    transform: rotateX(-25deg) scale(1);
    transform-origin: 50% 7em 0em;
    opacity: 0;
    box-sizing: border-box;
    top: 3rem;
    border-radius: 10px;
    background: var(--bgcolor);
    display: block;
    height: 300px;
    width: calc(var(--menu-width) * 1.5);
}
#sub-menu-container {
    position: absolute;
    z-index: 10;
    min-width: 100%;
    top: 2.5em;
    width: 100%;
}
nav .menu-item:hover~#sub-menu-container #sub-menu-holder {
    animation: clipPath 0.25s ease-out 1 forwards;
    transition: clip-path 0.25s ease-out, left 0.15s ease-out, height 0.15s ease-out;
    opacity: 1;
    right: auto;
}
nav .menu-item:nth-of-type(1):hover~#sub-menu-container #sub-menu-holder,
nav .menu-item:nth-of-type(4):hover~#sub-menu-container #sub-menu-holder {
    clip-path: inset(0 28.75em 0 0 round 10px);
    height: 14em;
}
nav .menu-item:nth-of-type(2):hover~#sub-menu-container #sub-menu-holder,
nav .menu-item:nth-of-type(3):hover~#sub-menu-container #sub-menu-holder {
    clip-path: inset(0 15em 0 0 round 10px);
}
nav .menu-item:nth-of-type(1):hover~#sub-menu-container #sub-menu-holder {
    left: calc(-9em + -1px);
}
nav .menu-item:nth-of-type(2):hover~#sub-menu-container #sub-menu-holder {
    left: calc(-6.5em + -1px);
    height: 18.75em;
}
nav .menu-item:nth-of-type(3):hover~#sub-menu-container #sub-menu-holder {
    left: calc(2.75em + 1px);
    height: 24.5em;
}
nav .menu-item:nth-of-type(4):hover~#sub-menu-container #sub-menu-holder {
    left: calc(19em + 1px);
}
.menu-item .sub-menu {
    position: absolute;
    top: 3em;
    min-width: 350px;
    color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    pointer-events: none;
    background: var(--light);
    box-sizing: border-box;
    z-index: 10;
    border: 1px solid var(--light);
    margin-left: -5em;
    box-shadow: 20px 20px 100px rgba(0, 0, 0, 0.2);
    /* clip-path: inset(0 10em 10em 15em); */
    opacity: 0;
    font-weight: initial;
    padding: 1rem;
    padding-bottom: 0 !important;
    transition: all 0.25s ease-out, opacity 0.25s ease-in, margin-left 0.25s ease-out, clip-path 0.15s ease-out;
}
.menu-item .sub-menu.double {
    min-width: 41.25em;
    box-shadow: 20px 20px 100px rgba(0, 0, 0, 0.2);
    height: 18.75em;
    display: grid;
    grid-template-columns: 54% 50%;
}
.menu-item .sub-menu.triple {
    min-width: 41.25em;
    box-shadow: 20px 20px 100px rgba(0, 0, 0, 0.2);
    height: 25em;
    display: grid;
    padding: 1.5em 2.5em;
    grid-template-columns: 55% 45%;
}
.menu-item:hover .sub-menu {
    pointer-events: all;
    /* clip-path: inset(0 0 0 0); */
}
.menu-text:after {
    transition: bottom 0.25s ease-out, opacity 0.01s ease-out 0.01s;
    opacity: 0;
    content: '';
    position: absolute;
    pointer-events: none;
    bottom: -5em;
    left: calc(50% - 10px);
    border-color: transparent transparent var(--light) transparent;
    border-width: 10px;
    border-style: solid;
}
.menu-item:hover .menu-text:after {
    bottom: 0.5em;
    opacity: 1;
    transition: bottom 0.25s ease-out, opacity 0.01s ease-out 0.15s;
}
.menu-item:hover .sub-menu {
    opacity: 1;
    margin-right: auto;
}
.menu-item:hover~#sub-menu-container #sub-menu-holder {
    transition: transform 0.25s ease-out, opacity 0.25s ease-out, clip-path 0.25s ease-out;
}
@keyframes clipPath {
    0% {
        opacity: 0;
    }

    100% {
        transform: rotateX(0deg) scale(1);
        top: 4.5em;
        opacity: 1;
    }
}
/* Menu specific */
.menu-item .title {
    font-size: 1rem;
    text-align: left;
    /* font-weight: 500; */
    color: rgb(44 70 86);
    margin: 0 0 0.25em 0;
}
.menu-item .icon-box * {
    transition: all 0.1s ease-out;
    position: relative;
}
.menu-item .icon-box.space {
    margin-bottom: 1.25em;
}
.menu-item .icon-box.flat {
    height: 1.5em;
    margin-bottom: 0.5em;
}
.menu-item .icon,
.menu-item .text {
    float: left;
    color: #9ea9af;
}
.menu-item .sub-text{
    font-size: 12px;
}
.menu-item .icon {
    color: rgb(44 70 86);
    font-size: 1.25em;
    margin: 0 1em 0 0;
}
.menu-item .icon-box {
    cursor: pointer;
    display: grid;
    grid-template-columns: 10% auto;
    float: left;
    width: 100%;
    margin: 0;
    height: 4em;
    row-gap: 0;
    line-height: 1em;
}
.menu-item .icon-box .text i {
    clip-path: inset(0 100% 0 0);
    font-size: 0.75em;
    position: relative;
    top: -1px;
}
/* Base Icon Style */
.icon-box.gb .icon i:before {
    background: linear-gradient(45deg, #0c86ef, #0cef9b);
    -webkit-text-fill-color: transparent;
    /* -webkit-background-clip: text; */
    padding-left: 1px;
}
/* Define Icon Colors */

.menu-item .icon-box:hover .text i {
    clip-path: inset(0 0 0 0);
    transition: clip-path 0.1s ease-out;
}
.icon-box:hover .icon,
.icon-box:hover .title,
.icon-box:hover .sub-text {
    color: rgb(89 110 123);
    max-width: 300px;
}
#sub-menu-bottom {
    background: #d4e3ea70;
    position: absolute;
    bottom: 0;
    opacity: 0;
    transition: all 0.25s ease-out, height 0.1s ease-out;
    left: 0;
    width: 100%;
    height: 5em;
}
nav .menu-item:nth-of-type(3).highlight:hover~#sub-menu-container #sub-menu-holder #sub-menu-bottom {
    height: 7.5em;
}
.bottom-container {
    grid-area: 4 / -3 / 4 / 3;
    padding-top: 1.5em;
    color: #3a5260;
    font-weight: 500;
}
.top-container {
    grid-area: 1 / -3 / 1 / 3;
    margin: 2em 0 2em 0;
}
.bottom-container a {
    float: right;
    background: linear-gradient(90deg, #8ea4b166, #a3b5bf6b);
    padding: 0.5em 1em;
    border-radius: 100px;
    position: absolute;
    color: #2c4655bf;
    font-weight: bold;
    text-decoration: none;
    right: 1.5em;
    bottom: 1.5em;
}
.bottom-container a:hover {
    background: linear-gradient(90deg, #8ea4b136, #a3b5bf33);
}
.sub-menu h3 {
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgb(44 70 86 / 68%);
    margin: 0.75em 0;
}
.sub-menu .box a {
    width: 100%;
    float: left;
    font-size: 1em;
    line-height: 1.75em;
    color: #7a8a94;
    text-decoration: none;
}
.sub-menu .box a:hover {
    color: rgb(44 70 86);
}

.icon.big i {
    font-size: 1.25em;
    top: 0.2em;
}
nav .menu-item.highlight:hover~#sub-menu-container #sub-menu-holder #sub-menu-bottom {
    opacity: 1;
}
#info-box {
    position: absolute;
    bottom: 2em;
    right: 2em;
}
#info-box ul {
    list-style: none;
}
#info-box a {
    color: var(--light);
    text-decoration: none;
    text-align: right;
    padding: 0.5em 0;
    transition: all 0.1s ease-out;
    display: block;
    text-transform: uppercase;
    font-size: 1.25em;
    font-weight: 900;
    letter-spacing: 1px;
}
#info-box a:hover {
    color: rgba(255, 255, 255, 0.5);
}
@media (max-width:1080px) {
    nav .menu-item {
        margin: 0 10px;
    }
}
@media (max-width:720px) {
    .desktop-nav{
        display: none;
    }
    .nav-links {
        display: none;
    }

    .logo {
        margin: 10px 0;
    }

    .logo-image {
        height: 30px;
    }

    .logo-text {
        font-size: 1.2rem;
        line-height: 1rem;
    }
}
/* Mega Menu */
.mega-menu{
    position: fixed;
    top: 0;
    left: -110%;
    z-index: 20;
    height: 100vh;
    width: 100vw;
    background: #ffffff;
    padding: 1rem;
    transition: 300ms;
}
.mega-menu li{
    padding: 1rem 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.panel-title a{
    display: flex;
    justify-content: space-between;
    padding-right: 1rem;
}
.panel-title .fa{
    color: #b9b9b9;
}
.list-group{
    margin-top: 10px;
    padding: 0 1rem;
    background: #fafafa !important;
}
.list-group-item{
    border: none !important;
    background: none;
    padding: 0 0.5rem !important;
}
.close-btn{
    height: 40px;
    width: 40px;
    background: #fafafa;
    color: #db5b25;
    border-radius: 5px;
}
.show-mega-menu{
    left: 0;
    transition: 300ms;
}
/* Navbar Responsive */
.responsive-nav{
    position: sticky !important;
    z-index: 15;
    top: 0;
    left: 0;
    display: none !important;
}
.options-button{
    margin: auto 0;
    border: none;
    outline: none;
    color: #808080;
}
@media (max-width:720px) {
    .responsive-nav{
        display: flex !important;
        background: #ffffff;
        width: 100% !important;
        padding: 0 1rem;
    }
}/* Banner */
.info-banner{
    background: var(--highlight);
    padding: 0 20px;
    border-radius: 20px;
    padding: 20px;
}
.demo-button{
    margin: auto auto;
}
@media (max-width:1080px) {
    .demo-button{
        padding: 5px 10px !important;
    }
}
@media (max-width:720px) {
    .demo-button{
        margin: 10px auto;
    }
}
/* End Banner */
/* Hero - Section */
.hero {
    display: grid;
    grid-template-columns: auto auto;
    /* margin-top: 100px; */
    width: 80%;
    margin: 0 auto;
}
.hero-content {
    max-width: 42rem;
    margin: 5rem;
}
.hero-title {
    font-family: 'Poppins-Bold';
    font-size: 4rem;
    line-height: 60px;
}
.hero-description {
    font-size: 1.25rem;
    color: var(--fade);
    margin: 20px 0;
}
.hero-image img {
    margin-top: 50px;
    max-width: 600px;
}
@media (max-width:1080px) {
    .hero {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }

    .hero-content {
        max-width: 100vw;
    }

    .hero-image {
        width: 100vw;
        display: flex;
    }

    .hero-image img {
        margin: 0 auto;
        margin-top: 0;
    }
}
@media (max-width:720px) {
    .hero {
        display: flex;
        flex-wrap: wrap;
        margin-top: 20px;
    }

    .hero-content {
        margin: 0 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-image {
        width: 100vw;
        display: flex;
    }

    .hero-image img {
        width: 350px;
        margin: 0 auto;
    }
}

/* Counts - Section */
.counts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.count-card {
    height: 200px;
    background: var(--highlight);
    display: flex;
    justify-content: center;
    margin: 0 20px;
    border-radius: 20px;
    transform-style: preserve-3d;
    transform: perspective(1000px);
}
.count-card:hover {
    box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    border-radius: 20px;
}
.count-card-container {
    max-width: 200px;
    width: 200px;
    margin: auto 0;
    text-align: center;
}
.count-card-container {
    transform: translateZ(10px);
}
.count {
    font-size: 3rem;
    font-family: 'Poppins-Bold';
}
.count-description {
    font-size: 1.2rem;
    max-width: 150px;
    margin: 0 auto;
}
@media (max-width:1080px) {
    .count-card {
        margin: 5px 5px;
    }

    .count-card-container {
        max-width: 175px;
        min-height: 75px;
    }

    .count-description {
        min-height: 50px;
    }
}

/* Our Values */
.values-content {
    width: 60vw;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}
.values-container {
    max-width: 1024px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
}
.values-card {
    display: inline-block;
    margin: 20px;
    background-color: var(--highlight);
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    width: 300px;
}
.values-description {
    min-height: 60px;
}
@media (max-width:1080px) {
    .values-content {
        width: 80vw;
        margin: 0 auto;
    }

    .values-card {
        margin: 10px;
    }
}

/* Projects */
.projects{
    overflow-y: visible;
}
.product-image{
    height: 200px;
    width: 300px;
    overflow: hidden;
}
.product-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    transition: 300ms;
}
.products-card {
    max-width: 300px;
    margin: 10px;
    background: var(--highlight);
    transition: 200ms;
    cursor: pointer;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.products-card *{
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.products-card:hover img
{
    -webkit-transform: scale(1.3) rotate(5deg);
    transform: scale(1.3) rotate(5deg);
    transition: 500ms;
    overflow: hidden;
}
.products-card:hover {
    transform: scale(1.02);
    transition: 200ms;
    box-shadow: 50px 50px 50px rgba(0, 0, 0, 0.1);
}
.products-description {
    padding: 15px;
    font-size: 14px;
    color: #404040 !important;
}
.project-view-all{
    text-align: center;
    font-size: 1.2rem;
    color: #444 !important;
    margin-top: 20px;
    background: #0c86ef;
    width: 200px;
    margin: 0 auto;
    padding: 15px 0;
    color: #fff !important;
}
/* Our Work Culture */
.our-working-culture{
    display: flex;
}
.work-culture-card{
    width: 175px;
    padding: 0.5rem;
    text-align: center;
}
.work-culture-icon img{
    height: 100px;
}
.work-culture-title{
    margin-top: 10px;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Clients */
.client-image img{
    max-height: 150px;
    border-radius: 10px;
}
@media (prefers-color-scheme: dark) {
    :root {
        --color-text: papayawhip;
        --color-bg: navy;
        --color-bg-accent: #2626a0;
    }
}
.scroll-body {
    box-sizing: border-box;
    display: grid;
    align-content: center;
    overflow: hidden;
    gap: var(--gap);
    width: 100%;
    font-family: system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-text);
}
.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
    mask-image: linear-gradient(var(--mask-direction, to right),
            hsl(0 0% 0% / 0),
            hsl(0 0% 0% / 1) 20%,
            hsl(0 0% 0% / 1) 80%,
            hsl(0 0% 0% / 0));
}
.marquee__group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll-x var(--duration) linear infinite;
}
@media (prefers-reduced-motion: reduce) {
    .marquee__group {
        animation-play-state: paused;
    }
}
.marquee--vertical {
    --mask-direction: to bottom;
}
.marquee--vertical,
.marquee--vertical .marquee__group {
    flex-direction: column;
}
.marquee--vertical .marquee__group {
    animation-name: scroll-y;
}
.marquee--reverse .marquee__group {
    animation-direction: reverse;
    animation-delay: -3s;
}
@keyframes scroll-x {
    from {
        transform: translateX(var(--scroll-start));
    }

    to {
        transform: translateX(var(--scroll-end));
    }
}
@keyframes scroll-y {
    from {
        transform: translateY(var(--scroll-start));
    }

    to {
        transform: translateY(var(--scroll-end));
    }
}
/* Element styles */
/* Client-Logo-Element */
.marquee svg {
    display: grid;
    place-items: center;
    width: 175px;
    fill: var(--color-text);
    background: var(--highlight);
    aspect-ratio: 16/9;
    padding: calc(var(--size) / 10);
    border-radius: 0.5rem;
}
.marquee--vertical svg {
    aspect-ratio: 1;
    width: calc(var(--size) / 1.5);
    padding: calc(var(--size) / 6);
}
/* Parent wrapper */
.wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    margin: auto;
    max-width: 100vw;
}
.wrapper--vertical {
    flex-direction: row;
    /* height: 100vh; */
}
/* Toggle direction button */
.toggle {
    --size: 3rem;
    position: relative;
    position: fixed;
    top: 1rem;
    left: 1rem;
    width: var(--size);
    height: var(--size);
    font: inherit;
    text-align: center;
    cursor: pointer;
    outline: none;
    border: none;
    border-radius: 50%;
    color: inherit;
    background-color: var(--highlight);
    z-index: 1;
}
.toggle:focus-visible {
    box-shadow: 0 0 0 2px var(--color-text);
}
.toggle span {
    position: absolute;
    display: inline-block;
    top: 50%;
    left: calc(100% + 0.4em);
    width: fit-content;
    white-space: nowrap;
    transform: translateY(-50%);
    animation: fade 400ms 4s ease-out forwards;
    user-select: none;
}
.toggle svg {
    --size: 1.5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    width: var(--size);
    height: var(--size);
    fill: currentcolor;
    transform: translate(-50%, -50%);
    transition: transform 300ms cubic-bezier(0.25, 1, 0.5, 1);
}
.toggle--vertical svg {
    transform: translate(-50%, -50%) rotate(-90deg);
}
@keyframes fade {
    to {
        opacity: 0;
        visibility: hidden;
    }
}
@media (max-width:720px) {
    .marquee svg {
        width: 100px;
    }

}
/* Testimonials */
.testimonial-user-container{
    overflow: visible;
    position: relative;
    z-index: 5;
}
.carousel-indicators
{
    margin-left: -150px !important;
}
.testimonial-image{
    height: 175px;
    width: 175px;
    object-fit: cover;
    border-radius: 2px;
    position: relative;
    right: -25px;
    border: 10px solid #ffffff;
    box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.1);
}
.testimonial-details{
    background: #ffffff;
    margin-top: 100px;
    height: 200px;
    padding: 1rem;
    padding-left: 75px;
    margin-left: -50px;
    border-radius: 5px;
    color: #808080;
    font-style: italic;
}
.testimonial-details .subtitle{
    font-style: normal;
}
.quotes-start {
    position: relative;
    top: 100px;
    right: -50%;
    z-index: 5;
    height: 50px;
    width: 50px;
}
.quotes-end{
    position: relative;
    top: 200px;
    left: -125%;
    z-index: 5;
    height: 50px;
    width: 50px;
}
.carousel-indicators li{
    background: #808080 !important;
    border: none !important;
    height: 15px;
    width: 15px;
    border-radius: 100%;
}
.carousel-indicators .active{
    background: #0c86ef !important;
}
@media (max-width:720px) {
    .testimonial-details{
        margin: 0 1rem;
        margin-top: -25px;
        padding: 25px 1rem 1rem 1rem;
        max-width: 90vw;
    }
    .testimonial-image{
        right: 0 !important;
    }
    .quotes-start, .quotes-end{
        display: none !important;
    }
    .carousel-indicators{
        margin: 0 0 -1.5rem 0 !important;
    }
}
/* Products */
.product-description-image{
    margin: 0 auto;
}
.product-image-main{
    max-width: 600px;
}
.list-features li{
    margin: 10px 0 !important;
}
@media (max-width:1024px) {
    .product-image-main{
        max-width: 500px;
    }
}
@media (max-width:720px) {
    .product-image-main {
        max-width: 300px;
    }
}
/* About */
.about{
    overflow-x: hidden !important;
}
.about-hero{
    margin-top: 5%;
    display: flex;
    align-items: center;
    align-content: center;
    width: 100vw;
}
.about-hero-image{
    position: relative;
    max-height: 500px;
    margin: 0 -25% -15% -25%;
    z-index: -1;
}
.about-content{
    margin: auto;
    max-width: 60%;
}
.about-images{
    max-width: 300px !important;
}
@media (max-width:1080px) {
    .about-content{
        max-width: 80%;
    }
}
@media (max-width:720px) {
    .about-content{
        max-width: 90%;
    }
    .about-hero-image{
        margin: -30% 0 -10% 0;
        max-height: 300px;
    }
}
/* Industry Solutions */
.quick-challenge-image img{
    max-width: 100px;
    height: 100px;
    object-fit: contain;

}
.industry-challenge .subtitle{
    margin: 15px 0;
}
/* Contact us */
.contact-us .hero{
    grid-template-columns: 60% 40%;
}
.contact-us .hero-content {
    width: 50% !important;
}
.contact-us-image{
    max-width: 300px;
    max-height: 300px;
    object-fit: contain;
}
.form-container{
    background: #fff;
    padding: 20px;
    min-width: 375px;
    border-radius: 10px;
    box-shadow: 10px 20px 50px rgba(0, 0, 0, 0.1);
    margin-top: 5rem;
    height: auto;
}
.contact-hero-title{
    font-size: 3rem;
    line-height: 130%;
}
.form-control::placeholder{
    font-size: 0.85rem;
}
.form-control:focus, .form-control:active{
    outline: none;
}
select, option{
    font-size: 0.85rem;
}
.contact-form .button{
    width: 100%;
    border-radius: 5px;
    font-weight: normal;
}
@media (max-width:1080px) {
    .contact-us .hero {
        width: 95%;
    }
    .contact-us .hero-content {
        width: 100% !important;
        margin: 0 !important;
    }
    .contact-us .hero-image{
        width: 100%;
    }
    .hero-content-container{
        width: 80%;
    }
    .contact-hero-title
    {
        text-align: center;
    }
    .contact-us .contact-form{
        width: 100% !important;
    }
    .form-container{
        width: 80%;
        padding: 3rem;
        margin: 0 auto;
        min-width: none;
    }
}
@media (max-width:720px) {
    .hero-content-container{
        width: 95%;

    }
    .form-container {
        width: 90%;
        padding: 1.5rem;
        margin: 0 auto;
        min-width: 300px;
    }
}
/* Blogs */

.media.media-news {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    padding-bottom: 210px;
}

@media (min-width: 768px) {
    .media.media-news {
        padding-bottom: 0;
        margin-bottom: 0;
    }
}

@media (min-width: 1200px) {
    .media.media-news {
        padding-bottom: 25px;
        margin-bottom: 0;
    }
}

.media.media-news .media-body {
    padding: 20px;
    box-shadow: 0 22px 28px 0 rgba(0, 0, 0, 0.06);
    background: #fff;
    position: absolute;
    width: 85%;
    right: 0;
    bottom: 0;
}

@media (min-width: 768px) {
    .media.media-news .media-body {
        position: relative;
        padding: 46.5px 35px;
        right: 0;
    }
}

@media (min-width: 992px) {
    .media.media-news .media-body {
        right: 40px;
        bottom: 0;
    }
}

@media (min-width: 1200px) {
    .media.media-news .media-body {
        position: absolute;
        right: 35px;
        width: 60%;
        padding: 20px;
    }
}

.media.media-news .media-body .media-date {
    font-family: "Open Sans", sans-serif;
    color: #848484;
    margin-bottom: 10px;
}

.media.media-news .media-body h5 {
    font-size: 22px;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.media.media-news .media-body h5.small {
    font-size: 16px;
}

.media.media-news .media-body p {
    font-family: "Open Sans", sans-serif;
    color: #848484;
}

.media.media-news .media-body .common-btn {
    margin-top: 10px;
}

.blog-content{
    margin: 2rem 0;
}
.blog-view-title{
    font-size: 2.5rem;
    line-height: 120%;
}
.blog-view-image img{
    width: 100%;
    height: 100%;
    max-height: 300px;
    object-fit: cover;
}
.blog-view-main{
    padding: 2rem 0;
}
.blog-view{
    max-width: 100vw;
}
.blog-subtitle{
    font-size: 1.5rem;
    font-weight: bold;
}
.blog-view a{
    color: #0c86ef;
}
.blog-list-item{
    background: #fff;
    margin: 1rem 0;
    padding: 1rem;
    border-radius: 5px;
}
/* ------------------------------------------------- */
/* Career */
.career-categories>li>a {
    color: #b6b6b6;
    font-weight: 400
}

.career-categories>li>a:hover {
    background-color: #ddd;
    color: #555
}

.career-categories>li>a>.glyphicon {
    margin-right: 5px
}

.career-categories>li>a>.badge {
    float: right
}

.careers-count {
    margin-top: 10px
}

.career-item {
    padding: 20px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 10px 20px 50px rgba(0, 0, 0, 0.05);
}

.career-item:after,
.career-item:before {
    content: " ";
    display: table
}

.career-item:after {
    clear: both
}

.career-item .image-link {
    display: block;
    overflow: hidden;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px
}

.career-item .info {
    margin-top: 2px;
    font-size: 12px;
    color: #999
}

.career-item .description {
    font-size: 13px
}

.career-item+.career-item {
    margin-top: 20px
}
.career-item-heading {
    font-weight: 400
}

.career-item-heading>a {
    color: #555
}

@media (min-width:768px) {
    .career-item-heading {
        margin: 0
    }
}

/* ------------------------------------------------- */

/* footer */
.footer{
    background: #fff;
    padding: 20px;
    margin-top: 40px;
}
.neuromonk-desc{
    font-size: 0.9rem;
}
.footer li{
    margin: 10px 0;
}
.product-list{
    font-size: 0.9rem;
}
.social-network li{
    font-size: 1.5rem;
    margin: 0 20px !important;
    float: left;
}
.footer-contact li{
    float: left;
    padding-bottom: none !important;
}
@media (max-width:1080px) {
    .neuromonk-info {
            width: 100% !important;
            padding: 0;
            min-width: 350px;
        }
    .footer-contact li{
        margin:10px 20px 10px 0 !important;
    }
    .hide-responsive{
        display: none !important;
    }
    .quick-links{
        min-width: 400px;
    }
}
@media (max-width:720px) {
    .neuromonk-info{
        width: 100% !important;
        padding: 0;
        min-width: 300px !important;
    }
    .neuromonk-info img{
        padding: 0 10px !important;
    }
    .neuromonk-desc{
        padding: 10px 20px 20px 20px !important;
    }
}
/* Flow Loader */
.horizontal-loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    height: inherit;
}

.horizontal-loader-container>div {
    width: 8px;
    height: 8px;
    border-radius: 100%;
    margin: 5px;
    animation: bounceone 0.8s linear infinite;
    background: #38ACEC;
}

.horizontal-loader-container div:nth-child(1) {
    animation-delay: 0.1s;
}

.horizontal-loader-container div:nth-child(2) {
    animation-delay: 0.2s;
}

.horizontal-loader-container div:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes bounceone {
    0%,100% {
        transform: scale(1);
        opacity: 0.25;
    }

    25% {
        transform: scale(1.25);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.75;
    }

    75% {
        transform: scale(2.25);
        opacity: 0.5;
    }
}
@media (max-width:720px) {
    .our-working-culture{
        display: flex;
        flex-wrap: wrap;
    }
    .work-culture-card{
        width: 100vw;
        margin-top: 20px;
    }
    .horizontal-loader-container{
        display: none;
    }
}
/* =================================== */
/* Filter Gallery */
/* Create three equal columns that floats next to each other */
.column {
    float: left;
    width: 33.33%;
    display: none;
    /* Hide columns by default */
}

/* Clear floats after rows */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Content */
.content {
    background-color: white;
    padding: 10px;
}

/* The "show" class is added to the filtered elements */
.show {
    display: block;
}

/* Style the buttons */
.btn {
    border: none;
    outline: none;
    padding: 12px 16px;
    background-color: white;
    cursor: pointer;
}

/* Add a grey background color on mouse-over */
.btn:hover {
    background-color: #ddd;
}

/* Add a dark background color to the active button */
.btn.active {
    background-color: #666;
    color: white;
}
/* Our Technology */
.et-hero-tabs,
.et-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 85vh;
    position: relative;
    background: #eee;
    text-align: center;
    padding: 0 2em;
}

.et-hero-tabs h1,
.et-slide h1 {
    font-size: 2rem;
    margin: 0;
    letter-spacing: 1rem;
}

.et-hero-tabs h3,
.et-slide h3 {
    font-size: 1rem;
    letter-spacing: 0.3rem;
    opacity: 0.6;
}

.et-hero-tabs-container {
    display: flex;
    flex-direction: row;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 70px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    background: #fff;
    z-index: 10;
}

.et-hero-tabs-container--top {
    position: fixed;
    top: 0;
}

.et-hero-tab {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    color: #000;
    letter-spacing: 0.1rem;
    transition: all 0.5s ease;
    font-size: 0.8rem;
}

.et-hero-tab:hover {
    color: white;
    background: rgba(102, 177, 241, 0.8);
    transition: all 0.5s ease;
}

.et-hero-tab-slider {
    position: absolute;
    bottom: 0;
    width: 0;
    height: 6px;
    background: #66b1f1;
    transition: left 0.3s ease;
}

@media (min-width: 800px) {

    .et-hero-tabs h1,
    .et-slide h1 {
        font-size: 3rem;
    }

    .et-hero-tabs h3,
    .et-slide h3 {
        font-size: 1rem;
    }

    .et-hero-tab {
        font-size: 1rem;
    }
}

/* Services - Page Style */
.service-page *,
.service-page *:before,
.service-page *:after {
    box-sizing: inherit;
}

.service-page {
    font-weight: 300;
    background-color: F6F7FA;
}
.services-title{
    font-size: 4rem;
    line-height: 100%;
    font-weight: 900;
    position: relative;
    bottom: -50px;
}
@media (max-width:1024px) {
    .services-title {
        bottom: -25px;
    }
}
@media (max-width:720px) {
    .services-title {
        margin-bottom: -50px;
    }
}
.c-section ul li {
    /* Remove li Bullets with zero-width space for accessability */
    list-style-type: none !important;
}

.c-section ul li:before {
    content: "\200B";
    /* add zero-width space */
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    position: absolute;
}

.c-section {
    padding: 0 var(--s3);
}


/* .c-section span:after {
    content: "Lorem ipsum, dolor sit amet consectetur adipisicing elit. Beatae accusamus eaque necessitatibus modi facilis aspernatur ut natus saepe!";
    display: block;
    font-size: 1.4rem;
    position: absolute;
    font-weight: 350;
    padding: 0 var(--s3);
    color: rgba(255, 255, 255, 0.85);
    left: 9px;
} */

.c-services {
    display: grid;
    grid-gap: var(--s2);
    margin: 0 calc(var(--s3) * -1);
    padding: var(--s6) var(--s3) 0 var(--s3) !important;
    position: relative;
    z-index: 1;
}

.c-services__item {
    background: #fff;
    padding: calc(var(--s2) - 0.6rem) var(--s1);
    border-radius: 25px;
    box-shadow: 0 7px 20px rgba(100, 28, 2, 0.135);
    transition: all 300ms ease, transform 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.c-services__item h3 {
    color: var(--color-brand-primary);
    font-size: var(--s1);
    line-height: 1.2;
}

.c-services__item:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
    border-radius: 25px 0;
    cursor: pointer;
    transition: inherit;
    background-color: var(--color-brand-accent);
    background-size: 30px 30px;
    background-repeat: no-repeat;
    background-position: center;
    /* background-image: url("data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9JzMwMHB4JyB3aWR0aD0nMzAwcHgnICBmaWxsPSIjZmZmZmZmIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGRhdGEtbmFtZT0iTGF5ZXIgMSIgdmlld0JveD0iMCAwIDEwMCAxMDAiIHg9IjBweCIgeT0iMHB4Ij48dGl0bGU+NTI8L3RpdGxlPjxwYXRoIGQ9Ik04MS4zMDMyOSwzOC41MjkzOUExNC4wMTgsMTQuMDE4LDAsMSwwLDYxLjQ3NywxOC43MDY3MUw0Ny4wMDMxNSwzMy4xNzkxNGExNC4wMzAzNywxNC4wMzAzNywwLDAsMCwwLDE5LjgyMTcxLDQuODAxMTMsNC44MDExMywwLDAsMS02Ljc4OTc5LDYuNzg5ODcsMjMuNjQzMjcsMjMuNjQzMjcsMCwwLDEsMC0zMy40MDE0NUw1NC42ODcyMSwxMS45MTY4NEEyMy42MjAzLDIzLjYyMDMsMCwwLDEsODguMDkzMDgsNDUuMzE5MjdMODAuOTIzOCw1Mi40ODcxMWE0LjgwMTE0LDQuODAxMTQsMCwwLDEtNi43ODk4LTYuNzg5ODdaTTExLjkwNzQxLDg4LjA5MzlhMjMuNjUwNTMsMjMuNjUwNTMsMCwwLDAsMzMuNDA1ODYtLjAwMUw1OS43ODY2NCw3My42MjE0N2EyMy42MTU4MywyMy42MTU4MywwLDAsMCwwLTMzLjQwMTQ1LDQuODAxMTQsNC44MDExNCwwLDAsMC02Ljc4OTc5LDYuNzg5ODgsMTQuMDE1MzEsMTQuMDE1MzEsMCwwLDEsMCwxOS44MjI2OEwzOC41MjM0OCw4MS4zMDRBMTQuMDE4LDE0LjAxOCwwLDEsMSwxOC42OTcyLDYxLjQ4MTM1TDI1Ljg2Niw1NC4zMTM1YTQuODAxMTQsNC44MDExNCwwLDAsMC02Ljc4OTgtNi43ODk4N2wtNy4xNjg3OSw3LjE2Nzg1QTIzLjY0NDg5LDIzLjY0NDg5LDAsMCwwLDExLjkwNzQxLDg4LjA5MzlaIj48L3BhdGg+PC9zdmc+"); */
}
.c-services__item:hover:after {
    background-color: #fff;
    /* background-image: url("data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9JzMwMHB4JyB3aWR0aD0nMzAwcHgnICBmaWxsPSIjZmI2ZjNjIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGRhdGEtbmFtZT0iTGF5ZXIgMSIgdmlld0JveD0iMCAwIDEwMCAxMDAiIHg9IjBweCIgeT0iMHB4Ij48dGl0bGU+NTI8L3RpdGxlPjxwYXRoIGQ9Ik04MS4zMDMyOSwzOC41MjkzOUExNC4wMTgsMTQuMDE4LDAsMSwwLDYxLjQ3NywxOC43MDY3MUw0Ny4wMDMxNSwzMy4xNzkxNGExNC4wMzAzNywxNC4wMzAzNywwLDAsMCwwLDE5LjgyMTcxLDQuODAxMTMsNC44MDExMywwLDAsMS02Ljc4OTc5LDYuNzg5ODcsMjMuNjQzMjcsMjMuNjQzMjcsMCwwLDEsMC0zMy40MDE0NUw1NC42ODcyMSwxMS45MTY4NEEyMy42MjAzLDIzLjYyMDMsMCwwLDEsODguMDkzMDgsNDUuMzE5MjdMODAuOTIzOCw1Mi40ODcxMWE0LjgwMTE0LDQuODAxMTQsMCwwLDEtNi43ODk4LTYuNzg5ODdaTTExLjkwNzQxLDg4LjA5MzlhMjMuNjUwNTMsMjMuNjUwNTMsMCwwLDAsMzMuNDA1ODYtLjAwMUw1OS43ODY2NCw3My42MjE0N2EyMy42MTU4MywyMy42MTU4MywwLDAsMCwwLTMzLjQwMTQ1LDQuODAxMTQsNC44MDExNCwwLDAsMC02Ljc4OTc5LDYuNzg5ODgsMTQuMDE1MzEsMTQuMDE1MzEsMCwwLDEsMCwxOS44MjI2OEwzOC41MjM0OCw4MS4zMDRBMTQuMDE4LDE0LjAxOCwwLDEsMSwxOC42OTcyLDYxLjQ4MTM1TDI1Ljg2Niw1NC4zMTM1YTQuODAxMTQsNC44MDExNCwwLDAsMC02Ljc4OTgtNi43ODk4N2wtNy4xNjg3OSw3LjE2Nzg1QTIzLjY0NDg5LDIzLjY0NDg5LDAsMCwwLDExLjkwNzQxLDg4LjA5MzlaIj48L3BhdGg+PC9zdmc+"); */
}
/* Digital Transformation */
.c-services__item:nth-of-type(1)::after {
    background-image: url("../assets/icons/services/digital_transfomation_white.svg");
}
.c-services__item:nth-of-type(1):hover:after {
    background-image: url("../assets/icons/services/digital_transformation_primary.svg");
}
/* Application Development */
.c-services__item:nth-of-type(2)::after {
    background-image: url("../assets/icons/services/application_development_white.svg");
}
.c-services__item:nth-of-type(2):hover:after {
    background-image: url("../assets/icons/services/application_development_primary.svg");
}
/* Web Development */
.c-services__item:nth-of-type(3)::after {
    background-image: url("../assets/icons/services/web_development_white.svg");
}

.c-services__item:nth-of-type(3):hover:after {
    background-image: url("../assets/icons/services/web_development_primary.svg");
}
/* Cloud Consulting Education */
.c-services__item:nth-of-type(4)::after {
    background-image: url("../assets/icons/services/cloud_white.svg");
}

.c-services__item:nth-of-type(4):hover:after {
    background-image: url("../assets/icons/services/cloud_primary.svg");
}
/* UI/UX Development */
.c-services__item:nth-of-type(5)::after {
    background-image: url("../assets/icons/services/ui_ux_white.svg");
}

.c-services__item:nth-of-type(5):hover:after {
    background-image: url("../assets/icons/services/ui_ux_primary.svg");
}
/* Data Science */
.c-services__item:nth-of-type(6)::after {
    background-image: url("../assets/icons/services/data_science_white.svg");
}

.c-services__item:nth-of-type(6):hover:after {
    background-image: url("../assets/icons/services/data_science_primary.svg");
}
/* Technology Training */
.c-services__item:nth-of-type(7)::after {
    background-image: url("../assets/icons/services/technology_training_white.svg");
}

.c-services__item:nth-of-type(7):hover:after {
    background-image: url("../assets/icons/services/technology_training_primary.svg");
}



.c-services__item p {
    margin-top: var(--s-1);
    font-weight: 400;
    color: #706d7e;
    font-size: 1rem;
}

.c-services__item:hover {
    background-color: var(--color-brand-accent);
}

.c-services__item:hover h3 {
    color: #fff;
}

.c-services__item:hover p {
    color: rgba(255, 255, 255, 0.8);
}


/* -------------------------------- */
@media (min-width: 40.625em) {
    :root {
        --s0: calc(1.25rem + 0.333vw);
    }
    .service-page {
        font-size: 1.5rem;
    }
    .c-section__title {
        padding: var(--s2) var(--s3) var(--s4);
    }

    .c-section__title {
        display: flex;
        align-items: self-start;
        justify-content: flex-end;
        position: relative;
        text-align: unset;
    }

    .c-section__title:after {
        margin-left: auto;
        margin-right: 0;
        transform: translateY(2rem);
    }

    .c-section span:after {
        font-size: 23%;
    }

    .c-section span:after {
        width: 47ch;
    }

    .c-services {
        grid-template-columns: repeat(7, 1fr);
        grid-template-rows: minmax(100px, 1fr);
    }

    .c-services {
        padding: 0 var(--s3);
    }

    .c-services__item {
        transform: translateY(-85px);
    }

    .c-services__item:nth-of-type(1) {
        grid-column: 1 / -1;
        grid-row: 4;
    }

    .c-services__item:nth-of-type(2) {
        grid-column: 1 / span 3;
        grid-row: 2;
    }

    .c-services__item:nth-of-type(3) {
        grid-column: 4 / -1;
    }

    .c-services__item:nth-of-type(4) {
        grid-column: 1 / span 4;
    }

    .c-services__item:nth-of-type(5) {
        grid-column: 5 / -1;
    }

    .c-services__item:nth-of-type(6) {
        grid-column: 1 / span 4;
        grid-row: 1;
    }
    .c-services__item:nth-of-type(7) {
        grid-column: 1 / span 4;
    }

    .c-services__item:hover {
        transform: translateY(-93px);
    }
}

/* -------------------------------- */
@media (min-width: 48em) {
    :root {
        --s0: calc(1.4rem + 0.333vw);
    }

    .c-section span:after {
        width: 57ch;
    }

    .c-services__item {
        transform: translateY(-130px);
    }

    .c-services__item:hover {
        transform: translateY(-138px);
    }
}

/* -------------------------------- */
@media (min-width: 62em) {
    :root {
        --s0: calc(1.6rem + 0.333vw);
    }

    .c-section span:after {
        width: 67ch;
    }

    /* .c-services__item:nth-of-type(1) {
        grid-column: 5 / -1;
        grid-row: 3;
    }

    .c-services__item:nth-of-type(2) {
        grid-column: 3 / span 3;
        grid-row: auto;
    }

    .c-services__item:nth-of-type(3) {
        grid-column: 4 / -1;
        grid-row: 2;
    }

    .c-services__item:nth-of-type(4) {
        grid-column: 1 / span 3;
    }

    .c-services__item:nth-of-type(5) {
        grid-column: 1 / span 3;
    }

    .c-services__item:nth-of-type(6) {
        grid-column: 3 / span 3;
        grid-row: 1;
    } */
}

.text-trim{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.blog-list-item{
    background: #fff;
    margin: 1rem 0;
    padding: 1rem;
    color: #404040;
    border-radius: 5px;
    transition: 300ms;
}
.blog-list-item:hover{
    box-shadow: 10px 20px 50px rgba(0, 0, 0, 0.1);
    transition: 300ms;
}
.blog-list-item .description{
    color: #808080;
}
