* {
    transition: 0.3s;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}
img {
    max-width: 100%;
}
a {
    text-decoration: none;
}
::selection {
    background-color: #fff;
    color: #183153;
}
/* Fonts */
body {
    background-color: #fff;
    transition: 0.3s;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}
/* Container Size */
@media (min-width: 1113px) {
    section {
        padding-bottom: calc(5vmin * 2);
        padding-top: calc(5vmin * 2);
    }
}
@media (max-width: 1112px) {
    section {
        padding-bottom: 40px;
        padding-top: 40px;
    }
}
@media (min-width: 767px) {
    .sol-list {
        padding-bottom: 5rem;
    }
}
.container {
    padding-inline: 20px;
    -webkit-transition: max-width 0.3s;
    transition: max-width 0.3s;
    margin-inline:auto;
    width: 100%;
}
.container {
    max-width: calc(1440px + 20px * 2);
}
@media (min-width: 1441px) and (max-width:1660px) {
    .container {
        max-width: calc(1280px + 20px * 2);
    }
}
@media (min-width: 1113px) and (max-width: 1440px) {
    .container {
        max-width: calc(1120px + 20px * 2);
    }
}
@media (max-width: 1112px) {
    .container {
        max-width: calc(768px + 20px * 2);
    }
}
/* Buttons */
.main-button {
    width: max-content;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    border: none;
}
.main-button::before {
    content: "";
    position: absolute;
    inset: -1px;
    background: linear-gradient(94deg, #009cff -2.26%, #9536e5 63.14%);
    -webkit-filter: blur(9px);
    filter: blur(9px);
    z-index: -1;
    pointer-events: none;
}
.main-button:after {
    content: " ";
    width: 100%;
    height: 0%;
    position: absolute;
    transition: all 0.3s ease-in-out;
    top: 0;
    background: linear-gradient(94deg, #009cff -2.26%, #9536e5 63.14%);
}
.main-button:hover::after {
    top: auto;
    bottom: 0;
    height: 100%;
}
.main-button a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
    text-decoration: none;
    width: 100%;
    padding: 0.7em 24px 0.7em 24px;
    color: #3B7BCE;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    z-index: 2;
    transition: all 0.3s ease-in-out;
    line-height: 1.6;
}
.main-button a svg {
    width: 10px;
    height: 16px;
}
.main-button:hover a {
    color: #fff;
}
/* Header */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background: linear-gradient(180deg,rgba(0,0,0,.5) 0,rgba(0,0,0,0) 100%);
    border-bottom: 1px solid rgba(255,255,255,.2);
}
@media (max-width: 1200px) {
    header {
        min-width: 100%;
        width: 100%;
    }
}
header.scrolled {
    background: rgba(19, 39, 97, 0.95);
}
header .header-container {
    padding: 2.2vmin 5.2vmin;
}
header.scrolled .header-container {
    padding: 2.0vmin 5.2vmin;
}
header .header-container .inside {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .header-container .inside .logo img {
    max-width: 260px;
    max-height: 100px;
    width: 260px;
    height: 40px;
    min-width: 60px;
    object-fit: contain;
    object-position: left center;
}
@media (max-width: 1112px) {
    header .header-container .inside .logo img {
        max-width: 150px;
        max-height: 30px;
    }
}
header .header-container .inside .side {
    display: flex;
    align-items: center;
    gap: 25px;
}
header .header-container .inside .side .header-button {
    width: max-content;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
    border: 1px solid #fff;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-transform: uppercase;
    padding: 0.5em 25px;
}
@media (max-width: 1112px) {
    header .header-container .inside .side .header-button {
        display: none;
    }
}
header .header-container .inside .side .header-button:hover {
    border-color: #7dc4c8;
}
header .header-container .inside .side .header-button::before {
    content: "";
    position: absolute;
    height: 120%;
    width: 120%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .2);
    transform: translate(-50%, -50%) scale(0);
    box-shadow: 0 0 5px 1px #01AFE9,inset 0 0 2px 0 #01AFE9;
    opacity: 0;
    transition: opacity .3s, transform .3s, -webkit-transform .3s;
}
header .header-container .inside .side .header-button:hover::before {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}
header .header-container .inside .side .header-button .label {
    line-height: 1.6;
}
header .header-container .inside .side .header-button:hover .label {
    --btn-primary-border-color: #7dc4c8;
    text-shadow: -2px 0 5px rgba(24, 151, 227, .98), 2px 3px 5px #1baaff, 3px 0 5px #1baaff, -3px -2px 5px #1baaff;
}
header .header-container .inside .side .menu-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
header .header-container .inside .side .menu-icon .icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 6px;
    width: 26px;
}
header .header-container .inside .side .menu-icon .icon span {
    width: 100%;
    height: 3px;
    background-color: #fff;
}
header .header-container .inside .side .menu-icon .icon span.middle {
    width: 70%;
    height: 3px;
    background-color: #fff;
}
main.open header .header-container .inside .side .menu-icon .icon span.middle {
    width: 0%;
}
main.open header .header-container .inside .side .menu-icon .icon span.top {
    transform: translateY(200%) rotate(45deg);
}
main.open header .header-container .inside .side .menu-icon .icon span.bottom {
    transform: translateY(-400%) rotate(-45deg);
}
header .header-container .inside .side .menu-icon .menu {
    text-transform: uppercase;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
}
main.open header .header-container .inside .side .menu-icon .menu {
    transform: translateX(20vw);
}
@media (max-width: 1112px) {
    header .header-container .inside .side .menu-icon .menu {
        display: none;
    }
}
/* Nav */
nav {
    display: flex;
    align-items: flex-start;
}
nav .parent .main-ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
}
nav .parent .main-ul .main-li {
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.3s ease-in-out;
}
nav .parent .main-ul .main-li .line {
    display: flex;
    align-items: center;
    gap: 0;
    color: #fff;
    cursor: pointer;
}
nav .parent .main-ul .main-li .line .li-name {
    text-transform: uppercase;
    font-size: 30px;  
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}
nav .parent .main-ul .main-li .line:hover .li-name {
    color: #04E4FF;
}
@media (min-width: 1113px) {
    nav .parent .main-ul .main-li .line .li-name {
        font-size: 2.5rem;
    }
}
nav .parent .main-ul .main-li .line .arrow {
    padding-left: 20px;
    width: 10px;
    height: 18px;
    display: flex;
    gap: 7.5px;
}
nav .parent .main-ul .main-li .line .arrow span {
    display: inline-block;
    width: 3px;
    height: 100%;
    padding: 2px;
    border-radius: 5px;
    background-color: #fff;
}
nav .parent .main-ul .main-li .line:hover span {
    background-color: #04E4FF;
}
nav .parent .main-ul .main-li.open .line span {
    background-color: #04E4FF;
}
nav .parent .main-ul .main-li .line .arrow span.left {
    transform: rotate(-50deg);
}
nav .parent .main-ul .main-li.open .line .arrow span.left {
    transform: rotate(50deg);
}
nav .parent .main-ul .main-li .line .arrow span.right {
    transform: rotate(50deg);
}
nav .parent .main-ul .main-li.open .line .arrow span.right {
    transform: rotate(-50deg);
}
nav .parent .main-ul .main-li.open .line .li-name {
    color: #04E4FF;
}
nav .parent .main-ul .main-li .dropmenu {
    display: none;
}
nav .parent .main-ul .main-li.open .dropmenu {
    display: block;
}
nav .parent .main-ul .main-li .dropmenu .inside-ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 10px;
}
nav .parent .main-ul .main-li .dropmenu .inside-ul a {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
}
nav .parent .main-ul .main-li .dropmenu .inside-ul a:hover {
    color: #04E4FF;
}
nav .parent .main-ul .main-li .dropmenu .inside-ul .top-a {
    display: none !important;
}
nav .parent .main-ul .main-li .dropmenu .inside-ul .top-a a {
    font-size: 20px;
    text-transform: uppercase;
}
nav .parent .main-ul .main-li .dropmenu .inside-ul .uls {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}
nav .parent .main-ul .main-li .dropmenu .inside-ul .uls .small-ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
nav .parent .main-ul .main-li .dropmenu .inside-ul .uls .small-ul h4 {
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    padding-bottom: 10px;
    cursor: pointer;
}
nav .parent .main-ul .main-li .dropmenu .inside-ul .uls .small-ul:hover h4 {
    color: #04E4FF;
}
/* Main */
main {
    position: relative;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    overflow-y: auto;
    background: #00042b;
    background: radial-gradient(circle at right 20%,rgba(186,0,133,.5215686275) -6%,rgba(177,0,254,.4784313725) 32%,#00031f 97%),radial-gradient(circle at left top,rgba(186,0,133,.5098039216) -6%,rgba(177,0,254,.3098039216) 32%,rgba(1,147,240,.1803921569) 97%),radial-gradient(circle at center top,rgba(186,0,133,.5098039216) -6%,rgba(177,0,254,.3098039216) 22%,rgba(2,157,255,.5215686275) 57%);
    box-shadow: inset -1px -1px 1000000px 1000000000px rgba(0, 0, 0, 0.35);
}
main .page {
    transform-origin: left center;
    transform: rotateY(0deg);
    transition: transform 0.6s ease;
    width: 100%;
}
main nav {
    position: fixed;
    top: 100px;
    right: -100vw;
    max-height: calc(100% - 100px);
    width: calc(50vw - 3px);
    overflow: hidden;
    overflow-y: auto;
    padding: 1rem;
    transition: all 0.6s ease;
    z-index: 5;
    scrollbar-color: #5d0b79 transparent;
    scrollbar-width: thin;
}
main.open {
    overflow: hidden;
}
main.open::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0;
    right: 0;
    background: radial-gradient(ellipse at center, #9536e5 0, rgba(149, 54, 229, 0) 74%, rgba(149, 54, 229, 0) 100%);
    opacity: .35;
    z-index: 0;
}
main.open::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 20%;
    background: radial-gradient(ellipse at center, #00b9ff 0, rgba(0, 185, 255, 0) 70%, rgba(0, 185, 255, 0) 100%);
    opacity: .25;
    z-index: 0;
}
main.open header {
    width: 100%;
}
main.open .page {
    transform: perspective(3000px) scale(0.8) rotateY(45deg);
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    border-radius: 12px;
}
main.open nav {
    right: 50%;
    transform: translateX(100%);
}
@media (max-width: 1112px) {
    main.open .page {
        transform: perspective(1000px) scale(1) rotateY(0);
        border-radius: 0px;
    } 
    main.open nav {
        width: 100vw;
        min-height: 100dvh;
        max-height: 100dvh;
        right: 0;
        left: 0;
        top: 0;
        padding-top: 20dvh;
        bottom: 0;
        transform: translateX(0);
        display: flex;
        justify-content: center;
        align-items: center;
        background: #00042b;
        background: radial-gradient(circle at right 20%,rgba(186,0,133) -6%,rgba(177,0,254) 32%,#00031f 97%),radial-gradient(circle at left top,rgba(186,0,133) -6%,rgba(177,0,254) 32%,rgba(1,147,240) 97%),radial-gradient(circle at center top,rgba(186,0,133) -6%,rgba(177,0,254) 22%,rgba(2,157,255) 57%);
        box-shadow: inset -1px -1px 1000000px 1000000000px rgba(0, 0, 0, 0.35);
    }
    main.open nav .parent {
        width: 100%;
        height: 100%;
    }
    nav .parent .main-ul {
        align-items: center;
    }
    nav .parent .main-ul .main-li .dropmenu .inside-ul .uls {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
    nav .parent .main-ul .main-li .dropmenu .inside-ul .top-a {
        text-align: center;
    }
    nav .parent .main-ul .main-li .line {
        justify-content: center;
    }
    nav .parent .main-ul .main-li .dropmenu .inside-ul .uls .small-ul {
        width: 100%;
        align-items: center;
    }
    main.open nav .main-button {
        display: none;
    }
}
/* Form */
@media (min-width: 1113px) {
    .child-form.component {
        width: 45%;
        flex-basis: 45%;
    }
}
.child-form.component .form-box {
    background-color: #131848;
    padding: 1.5rem 1rem;
    border-top: 6px solid transparent;
    border-image-source: linear-gradient(274deg,#04e4ff 1.61%,#9536e5 98.62%);
    border-image-slice: 1;
}
@media (min-width: 575px) {
    .child-form.component .form-box {
        padding: 1.5rem 2.5rem;
    }
}
.child-form.component .form-box {
    background-color: #131848;
}
.child-form.component .form-box .top {
    margin-bottom: 1.5rem;
}
.child-form.component .form-box .top h3 {
    color: #01AFE9;
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1.2;
}
.child-form.component .form-box .top p {
    color: #ffffff;
    font-size: 1.0rem;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 1;
    margin: 0.3em 0;
}
.child-form.component .form-box .form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.child-form.component .form-box .form .input {
    min-height: 43px;
    display: flex;
    align-items: center;
    gap: 0;
}
.child-form.component .form-box .form .input .icon {
    height: 100%;
    margin-bottom: -14px;
    border-radius: 2px;
    border-bottom: 3px solid #ffffff;
}
.child-form.component .form-box .form input,
.child-form.component .form-box .form textarea {
    background-color: transparent;
    width: 100%;
    max-width: 100%;
    border: 0;
    outline: 0;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.3);
    font-size: 0.9rem;
    font-weight: 400;
    padding: 10px 15px;
    line-height: 1.6;
}
.child-form.component .form-box .form input::placeholder,
.child-form.component .form-box .form textarea::placeholder {
    color: #fff;
}
.child-form.component .form-box .form input:focus,
.child-form.component .form-box .form textarea:focus {
    outline: 0;
}
.child-form.component .form-box .form textarea {
    min-height: 50px;
    height: 50px;
}
.child-form.component .form-box .form .input.textarea .icon {
    height: 100%;
    margin-bottom: -21px;
    border-radius: 2px;
    border-bottom: 3px solid #ffffff;
}
.child-form.component .form-box .form .button.submit {
    width: max-content;
    padding: 16px 0;
    overflow: hidden;
}
.child-form.component .form-box .form .button.submit button {
    overflow: hidden;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: max-content;
    padding-right: calc(0.9rem + 20px);
    padding: 0.75em 1.4em;
    cursor: pointer;
    border: 3px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(7deg, #009cff 50%, #522ef4 65%, #9537e3 80%);
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
}
.child-form.component .form-box .form .button.submit button:hover {
    color: #470083;
}
.child-form.component .form-box .form .button.submit button:hover svg {
    color: #470083;
    transform: translateX(5px);
}
.child-form.component .form-box .form .button.submit button span {
    position: relative;
}
.child-form.component .form-box .form .button.submit button span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-color: #fff;
    pointer-events: none;
    opacity: 0;
    transition: all .5s, transform .6s, -webkit-transform .6s;
    -webkit-transform: rotate(30deg) translate(-210px, 180px);
    transform: rotate(30deg) translate(-210px, 180px);
    height: 350px;
    width: 400%;
    mix-blend-mode: multiply;
}
.child-form.component .form-box .form .button.submit button:hover span::before {
    transform: rotate(30deg) translate(-100px, 0px);
    opacity: 1;
}
.child-form.component .form-box .form .button.submit button::before {
    content: "";
    position: absolute;
    inset: -6px;
    border: 8px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(to left, rgba(0, 156, 255, .5), rgba(200, 47, 255, .5));
    -webkit-filter: blur(5px);
    filter: blur(5px);
    pointer-events: none;
    opacity: .6;
    -webkit-animation: pulse-btn 2.1s ease-in-out infinite;
    animation: pulse-btn 2.1s ease-in-out infinite;
    z-index: 0;
}
.child-form.component .form-box .form .button.submit button svg {
    color: #fff;
}

@keyframes pulse-btn {
    0% {
        opacity: .2;
    }
    70% {
        opacity: 1;
    }
    100% {
        opacity: .2;
    }    
}
/* Footer */
.footer-request {
    position: relative;
    overflow: hidden;
    background-color: #00042A;
    background-position: center bottom;
    background-size: cover;
}
.footer-request .bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    opacity: .8;
    pointer-events: none;
    contain: layout;
    pointer-events: none;
}
@media (min-width: 1113px) {
    .footer-request .bg {
        opacity: .5;
    }
}
@keyframes rotation {
    0% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
}
@media (min-width: 1113px) {
    .footer-request .bg .img {
        animation: rotation 16s infinite linear;
        -webkit-animation: rotation 16s infinite linear;
    }
}
@media (max-width: 1112px) {
    .footer-request .bg .img {
        display: none;
    }
}
@media (min-width: 1113px) {
    .footer-request .bg .img {
        position: absolute;
        width: 100%;
        height: 100%;
        max-height: 150vh;
        -webkit-transform: translate(-15%, -8%);
        transform: translate(-15%, -8%);
        -webkit-animation: rotation 16s infinite linear;
        animation: rotation 16s infinite linear;
        -webkit-transform-origin: center;
        transform-origin: center;
        bottom: -80vh;
    }
}
.footer-request .bg .img img {
    width: 100%;
    max-width: 100%;
    height: auto;
    transform: scale(2.5) translate3d(0, 0, 0);
    filter: blur(5px);
    pointer-events: none;
    vertical-align: middle;
}
.footer-request .container {
    position: relative;
    z-index: 2;
}
.footer-request .container .inside .all .parent {
    display: flex;
    flex-wrap: wrap;
}
.footer-request .container .inside .all .parent .child {
    flex: 0 0 100%;
    text-align: center;
    color: #ffffff;
}
@media (min-width: 1113px) {
    .footer-request .container .inside .all .parent .child {
        flex: 1 1 50%;
        flex-basis: calc(50% - 20px);
        max-width: calc(50% - 20px);
        width: 100%;
        text-align: left;
    }
    .footer-request .container .inside .all .parent .child-text {
        padding-top: 8vmin;
    }
}
.footer-request .container .inside .all .parent .child.child-text {
    padding-right: calc((24px * 0.5));
    padding-left: calc((24px * 0.5));
}
.footer-request .container .inside .all .parent .child.child-text .content .text {
    margin-bottom: 15px;
}
.footer-request .container .inside .all .parent .child.child-text .content .text .sub-title {
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1.1px;
    margin-bottom: 0.3em;
}
@media (min-width: 1113px) {
    .footer-request .container .inside .all .parent .child.child-text .content .text .sub-title {
        font-size: 1.1rem;
    }
}
.footer-request .container .inside .all .parent .child.child-text .content .text .main-h {
    background: linear-gradient(131.8deg, #04e4ff 0, #009cff 100%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #04e4ff;
    color: transparent;
    text-shadow: 0 0 10px rgba(4, 228, 255, .5);
    margin-bottom: 15px;
    font-size: clamp(22px, calc(2.5vw + 1.5rem), 1.7rem);
    font-weight: 700;
    line-height: 1.2;
}
@media (max-width: 574px) {
    .footer-request .container .inside .all .parent .child.child-text .content .text .main-h {
        font-size: 22px;
        max-width: 300px;
        margin: 0 auto;
    }
}
.footer-request .container .inside .all .parent .child.child-text .content .follow-us {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 50px;
}
@media (min-width: 1113px) {
    .footer-request .container .inside .all .parent .child.child-text .content .follow-us {
        margin-top: 8.5vmin;
    }
}
@media (max-width: 1112px) {
    .footer-request .container .inside .all .parent .child.child-text .content .follow-us {
        display: none;
    }
}
.footer-request .container .inside .all .parent .child.child-text .content .follow-us .follow {
    position: relative;
    margin-bottom: 0.3em;
}
.footer-request .container .inside .all .parent .child.child-text .content .follow-us .follow::before {
    content: " ";
    width: 45px;
    height: 1px;
    margin-right: 25px;
    margin-bottom: 6px;
    background-color: #01AFE9;
    display: inline-block;
}
.footer-request .container .inside .all .parent .child.child-text .content .follow-us .follow span {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
}
@media (min-width: 1113px) {
    .footer-request .container .inside .all .parent .child.child-text .content .follow-us .follow span {
        font-size: 1rem;
    }
}
.footer-request .container .inside .all .parent .child.child-text .content .follow-us ul.social-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, 46px);
    grid-auto-flow: column;
    gap: 1vw;
    margin-left: 35px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.footer-request .container .inside .all .parent .child.child-text .content .follow-us ul.social-list li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
}
.footer-request .container .inside .all .parent .child.child-text .content .follow-us ul.social-list li a:hover {
    color: #ffffff;
    background-color: #01AFE9;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}
.footer-request .container .inside .all .parent .child.child-form {
    margin-top: 50px;
    padding: 0;
    padding-right: calc((24px * 0.5));
    padding-left: calc((24px * 0.5));
}
@media (min-width: 1113px) {
    .footer-request .container .inside .all .parent .child.child-form {
        display: flex;
        flex-direction: column;
        margin-left: auto;
        margin-top: 0;
    }
}
.footer-request .container .inside .all .parent .child.child-form .form-box {
    background-color: transparent;
    border: none;
    padding: 0;
}
.footer-request .container .inside .all .parent .child.child-form .form-box .top h3 {
    color: #ffffff;
    font-size: clamp(22px, calc(2.5vw + 1.5rem), 1.5rem);
}
@media (min-width: 1113px) {
    .footer-request .container .inside .all .parent .child.child-form .form-box .top.top-mobile {
        display: none;
    }
}
.footer-request .container .inside .all .parent .child.child-form .form-box .top.top-mobile .follow-us {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}
@media (min-width: 1113px) {
    .footer-request .container .inside .all .parent .child.child-form .form-box .top.top-mobile .follow-us {
        margin-top: 8.5vmin;
    }
}
.footer-request .container .inside .all .parent .child.child-form .form-box .top.top-mobile .follow-us .follow {
    position: relative;
    margin-bottom: 0.3em;
}
.footer-request .container .inside .all .parent .child.child-form .form-box .top.top-mobile .follow-us .follow::before {
    content: " ";
    width: 45px;
    height: 1px;
    margin-right: 25px;
    margin-bottom: 6px;
    background-color: #01AFE9;
    display: inline-block;
}
.footer-request .container .inside .all .parent .child.child-form .form-box .top.top-mobile .follow-us .follow span {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
}
@media (min-width: 1113px) {
    .footer-request .container .inside .all .parent .child.child-form .form-box .top.top-mobile .follow-us .follow span {
        font-size: 1rem;
    }
}
.footer-request .container .inside .all .parent .child.child-form .form-box .top.top-mobile .follow-us ul.social-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, 46px);
    grid-auto-flow: column;
    gap: 1vw;
    margin-left: 35px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.footer-request .container .inside .all .parent .child.child-form .form-box .top.top-mobile .follow-us ul.social-list li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
}
.footer-request .container .inside .all .parent .child.child-form .form-box .top.top-mobile .follow-us ul.social-list li a:hover {
    color: #ffffff;
    background-color: #01AFE9;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}
/* Footer */
footer {
    background: linear-gradient(89deg, #0570B8 0%, #009CFF 100%);
    background-repeat: no-repeat;
    color: #ffffff;
    padding: 1.2em 0;
}
footer .container{
    padding-top: 20px;
}
@media (min-width: 1113px) {
    footer .container {
        padding-top: 5vmin;
    }
}
footer .container .inside .footer-break {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
footer .container .inside .footer-break a img {
    width: 233px;
}
footer .container .inside .footer-break::after {
    content: "";
    width: calc(100% - 245px);
    height: 1px;
    background-color: #30afff;
    pointer-events: none;
}
footer .container .inside .office {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #30afff;
    padding-bottom: 6vmin;
}
@media (max-width: 1112px) {
    footer .container .inside .office {
        align-items: flex-start;
    }
}
@media (min-width: 576px) {
    footer .container .inside .office {
        gap: 15px;
    }
}
@media (max-width: 575px) {
    footer .container .inside .office {
        flex-wrap: wrap;
    }
}
footer .container .inside .office .office-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
@media (min-width: 1113px) {
    footer .container .inside .office .office-item {
        flex-direction: row;
        align-items: center;
    }
}
@media (max-width: 575px) {
    footer .container .inside .office .office-item {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        margin-bottom: 20px;
    }
}
footer .container .inside .office .office-item .city-abbreviation {
    font-size: 4.1rem;
    line-height: 1;
    font-weight: 900;
    opacity: .15;
    padding-right: 12px;
    letter-spacing: -2px;
}
@media (max-width: 767px) {
    footer .container .inside .office .office-item .city-abbreviation {
        font-size: 5.5rem;
        padding-right: 2px;
        text-indent: -5px;
        flex-basis: 68px;
    }
}
footer .container .inside .office .office-item .details {
    padding-top: 5px;
}
@media (min-width: 321px) {
    footer .container .inside .office .office-item .details {
        padding-top: 8px;
    }
}
footer .container .inside .office .office-item .details .city {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.6;
}
footer .container .inside .office .office-item .details a {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #ffffff;
}
footer .container .inside .copy-privacy {
    font-size: 14px;
    padding-top: 40px;
    position: relative;
    gap: 6vmin;
    padding-bottom: 20px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
footer .container .inside .copy-privacy {
    p {
        color: #ffffff;
    }
    a {
        color: #ffffff;
        transition: all 0.3s ease-in-out;
        text-decoration: none;
    }
    a:hover {
        text-decoration: underline;
    }
}
@media (max-width: 1112px) {
    footer .container .inside .copy-privacy {
        flex-direction: column;
        justify-content: flex-start;
        align-items: start;
        a {
            text-decoration: underline;
        }
    }
}
/* Full Web */
.full-web.component {
    background-color: #00042A;
    position: relative;
    overflow: hidden;
}
.full-web.component .bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.full-web.component .bg::after {
    content: "";
    position: absolute;
    right: -10%;
    left: 30%;
    top: -70%;
    bottom: -40%;
    background: radial-gradient(ellipse at center, #9536e5 0, rgba(149, 54, 229, 0) 74%, rgba(149, 54, 229, 0) 100%);
    opacity: .45;
    z-index: 0;
}
.full-web.component .bg::before {
    content: "";
    position: absolute;
    left: -10%;
    right: 30%;
    top: -30%;
    bottom: -30%;
    background: radial-gradient(ellipse at center, #00b9ff 0, rgba(0, 185, 255, 0) 70%, rgba(0, 185, 255, 0) 100%);
    opacity: .45;
    z-index: 1;
}
.full-web.component .container {
    position: relative;
    z-index: 2;
}
.full-web.component .container .inside .top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: calc(4vmin + 20px);
}
@media (min-width: 1113px) {
    .full-web.component .container .inside .top {
        gap: 9vmin;
    }
}
.full-web.component .container .inside .top .txt {
    margin-bottom: 15px;
    color: #fff;
    text-align: center;
}
.full-web.component .container .inside .top .txt .sub-title {
    line-height: 1.4;
    letter-spacing: 1.1px;
    margin-bottom: 0.3em;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 20px;
}
@media (max-width: 1113px) {
    .full-web.component .container .inside .top .txt .sub-title {
        font-size: 15px;
    }
}
.full-web.component .container .inside .top .txt .h {
    line-height: 1.2;
    letter-spacing: 1.1px;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 2.3rem;
}
@media (max-width: 1660px) {
    .full-web.component .container .inside .top .txt .h {
        font-size: 1.7rem;
    }
}
@media (max-width: 1112px) {
    .full-web.component .container .inside .top .txt .h {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .full-web.component .container .inside .top .txt .h {
        font-size: calc((4.5vw + 1.5rem) / 2);
    }
}
@media (max-width: 551px) {
    .full-web.component .container .inside .top .txt .h {
        font-size: 19px;
        text-align: center;
    }
}
.full-web.component .container .inside .top .txt .p {
    line-height: 1.4;
    margin: 0.3em 0;
    font-weight: 400;
    font-size: 20px;
}
.full-web.component .container .inside .top .txt .p .bold-b {
    font-size: 20px;
}
@media (min-width: 1113px) {
    .full-web.component .container .inside .top .txt .p {
        font-size: 1.3rem;
    }
}
@media (min-width: 1113px) {
    .full-web.component .container .inside .top .txt .p .bold-b {
        font-size: 1.7rem;
    }
}
.full-web.component .parent {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.full-web.component .parent .child {
    display: flex;
    gap: 4rem;
}
.full-web.component .parent .child {
    animation: scroll 60s linear infinite;
}
.full-web.component .parent .child.bottom {
    animation-direction: reverse;
}
.full-web.component .parent .child .items {
    display: flex;
    gap: 4rem;
}
@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(calc(-100% - 5rem));
        transform: translateX(calc(-100% - 5rem));
    }
}
.full-web.component .parent .child .items .item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 40vw;
    max-width: 300px;
    text-align: center;
    padding: 15px;
    position: relative;
}
.full-web.component .parent .child .items .item::before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: 1px solid rgba(255, 255, 255, .1);
    background-color: rgba(255, 255, 255, .05);
    mask-image: linear-gradient(135deg, #000 0, #000 22%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(135deg, #000 0, #000 22%, rgba(0, 0, 0, 0) 100%);
}
.full-web.component .parent .child .items .item .img {
    width: 50%;
    margin: 0 auto;
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 30%;
}
@media (max-width: 768px) {
    .full-web.component .parent .child .items .item .img {
        margin-bottom: 6px;
    }
}
.full-web.component .parent .child .items .item .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}
.full-web.component .parent .child .items .item .brand-name {
    font-size: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.551);
}
/* Discover */
.discover.component {
    background-color: #00042A;
    position: relative;
    overflow-x: clip;
}
.discover.component::before {
    content: "";
    position: absolute;
    width: 50vw;
    height: 50vw;
    bottom: 60%;
    left: -20%;
    border-radius: 100%;
    background: radial-gradient(ellipse at center, rgba(4, 228, 255, .8) 0, rgba(4, 228, 255, 0) 70%);
    opacity: .2;
}
.discover.component .container::before {
    content: "";
    position: absolute;
    width: 70vw;
    height: 70vw;
    top: 25%;
    left: 24%;
    border-radius: 100%;
    background: radial-gradient(ellipse at center, rgba(136, 66, 220, .9) 0, rgba(136, 66, 220, 0) 70%);
    opacity: .5;
}
.discover.component .container::after {
    content: "";
    position: absolute;
    width: 50vw;
    height: 80vw;
    border-radius: 100%;
    top: 10%;
    right: -35%;
    background: radial-gradient(ellipse at center, rgba(4, 228, 255, .8) 0, rgba(4, 228, 255, 0) 60%);
    opacity: .3;
}
.discover.component .container .inside .parent {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}
.discover.component .container .inside .parent .sticky-child {
    width: 100%;
}
@media (min-width: 767px) {
    .discover.component .container .inside .parent .sticky-child {
        position: sticky;
        top: 100px;
        max-width: 41%;
        padding-right: 30px;
    }
}
.discover.component .container .inside .parent .sticky-child .content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    color: #fff;
}
@media (min-width: 1113px) {
    .discover.component .container .inside .parent .sticky-child .content {
        gap: 30px;
    }
}
.discover.component .container .inside .parent .sticky-child .content .top-txt {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}
.discover.component .container .inside .parent .sticky-child .content .top-txt .subtitle {
    color: #00B9FF;
    margin-bottom: 0.3em;
    line-height: 1.2;
    letter-spacing: 1.1px;
    font-weight: 700;
    font-size: 1.4rem;
    text-transform: uppercase;
}
@media (max-width: 1113px) {
    .discover.component .container .inside .parent .sticky-child .content .top-txt .subtitle {
        font-size: 15px;
    }
    .discover.component .container .inside .parent .sticky-child .content .top-txt {
        margin-bottom: 0;
    }
}
.discover.component .container .inside .parent .sticky-child .content .top-txt .h {
    line-height: 1.2;
    letter-spacing: 1.1px;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 2.4rem;
}
@media (max-width: 1660px) {
    .discover.component .container .inside .parent .sticky-child .content .top-txt .h {
        font-size: 1.8rem;
    }
}
@media (max-width: 1112px) {
    .discover.component .container .inside .parent .sticky-child .content .top-txt .h {
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    .discover.component .container .inside .parent .sticky-child .content .top-txt .h {
        font-size: calc((4.5vw + 1.5rem) / 1.8);
    }
}
@media (max-width: 551px) {
    .discover.component .container .inside .parent .sticky-child .content .top-txt .h {
        font-size: 19px;
        margin-bottom: 0;
    }
}
.discover.component .container .inside .parent .sticky-child .content .bottom-txt .p {
    margin-bottom: 1.5em;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
}
@media (max-width: 1660px) {
    .discover.component .container .inside .parent .sticky-child .content .bottom-txt .p {
        font-size: 1rem;
    }
}
.discover.component .container .inside .parent .sticky-child .content .image {
    width: 100%;
    margin-left: -10%;
}
.discover.component .container .inside .parent .sticky-child .content .image img {
    height: auto;
}
@media (max-width: 768px) {
    .discover.component .container .inside .parent .sticky-child .content .image {
        margin-left: 0;
    }
}
.discover.component .container .inside .parent .relative-child {
    width: 100%;
}
@media (min-width: 767px) {
    .discover.component .container .inside .parent .relative-child {
        max-width: calc(58% - 30px);
    }
}
.discover.component .container .inside .parent .relative-child .items {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.discover.component .container .inside .parent .relative-child .items .item {
    position: relative;
    color: #fff;
    border: 1px solid rgba(255,255,255,.1);
    background: linear-gradient(118deg,rgba(255,255,255,.05) 32.88%,rgba(255,255,255,0) 100%);
    padding: 30px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
@media (min-width: 767px) {
    .discover.component .container .inside .parent .relative-child .items .item {
        padding: 66px 40px 40px 40px;
    }
}
.discover.component .container .inside .parent .relative-child .items .item::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    background-color: #fff;
    z-index: 0;
    width: 100%;
    opacity: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
}
@media (max-width: 768px) {
    .discover.component .container .inside .parent .relative-child .items .item::before {
        display: none;
    }
}
.discover.component .container .inside .parent .relative-child .items .item:hover::before {
    opacity: 1;
    width: 150%;
}
.discover.component .container .inside .parent .relative-child .items .item .expander {
    position: absolute;
    inset: 0 auto 0 0;
    z-index: 1;
    width: 100%;
    opacity: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
}
@media (max-width: 768px) {
    .discover.component .container .inside .parent .relative-child .items .item .expander {
        display: none;
    }
}
.discover.component .container .inside .parent .relative-child .items .item .expander img {
    position: absolute;
    bottom: 0;
    right: 0;
}
.discover.component .container .inside .parent .relative-child .items .item:hover .expander {
    opacity: 1;
    width: 150%;
}
.discover.component .container .inside .parent .relative-child .items .item > * {
    position: relative;
    z-index: 2;
    width: 100%;
}
.discover.component .container .inside .parent .relative-child .items .item .c-icon img {
    width: 90px;
}
.discover.component .container .inside .parent .relative-child .items .item .c-h {
    font-weight: 700;
    font-size: 1.6rem;
}
.discover.component .container .inside .parent .relative-child .items .item .c-p {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
}
@media (max-width: 1660px) {
    .discover.component .container .inside .parent .relative-child .items .item .c-p {
        font-size: 1.1rem;
    }
}
.discover.component .container .inside .parent .relative-child .items .item .c-image {
    position: absolute;
    inset: 0 10px auto 50%;
    width: auto;
    opacity: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
    z-index: 0;
}
@media (max-width: 768px) {
    .discover.component .container .inside .parent .relative-child .items .item .c-image {
        display: none;
    }
}
.discover.component .container .inside .parent .relative-child .items .item .c-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
}
.discover.component .container .inside .parent .relative-child .items .item:hover .c-image {
    opacity: 1;
    transform: translateX(50px);
}
@media (max-width: 1113px) {
    .discover.component .container .inside .parent .relative-child .items .item .c-h {
        font-size: 28px;
    }
    .discover.component .container .inside .parent .relative-child .items .item:hover .c-image {
        opacity: 1;
        transform: translateX(30px);
    }
    .discover.component .container .inside .parent .relative-child .items .item:hover::before {
        opacity: 1;
        width: 150%;
    }
    .discover.component .container .inside .parent .relative-child .items .item:hover .expander {
        opacity: 1;
        width: 150%;
    }
}
@media (max-width: 768px) {
    .discover.component .container .inside .parent .relative-child .items .item .c-h {
        font-size: 24px;
    }
    .discover.component .container .inside .parent .relative-child .items .item .c-p {
        font-size: 1.1rem;
    }
}
@media (max-width: 551px) {
    .discover.component .container .inside .parent .relative-child .items .item .c-h {
        font-size: 22px;
    }
}
/* FAQs */
section.scope.component {
    position: relative;
    background-color: #00042A;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
}
@media (max-width: 1112px) {
    section.scope.component {
        background-image: radial-gradient(circle at right 20%, rgba(0, 185, 255, 0.5215686275) -6%, rgba(177, 0, 254, 0.4784313725) 32%, #00031f 97%), radial-gradient(circle at left top, rgba(186, 0, 133, 0.5098039216) -6%, rgba(177, 0, 254, 0.3098039216) 32%, rgba(1, 147, 240, 0.1803921569) 97%), radial-gradient(circle at center top, rgba(186, 0, 133, 0.5098039216) -6%, rgba(177, 0, 254, 0.3098039216) 22%, rgba(2, 157, 255, 0.5215686275) 57%);
        padding: 60px 20px;
    }
}
@media (max-width: 768px) {
    section.scope.component {
        background-image: none;
    }
}
section.scope.component .bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    margin-bottom: 0;
    opacity: 0.8;
}
@media (max-width: 1112px) {
    section.scope.component .bg {
        display: none;
    }
}
section.scope.component .bg .img {
    width: 350vmin;
    height: 350vmin;
    transform: translate(-25%, -38%);
}
@media (min-width: 1113px) {
    section.scope.component .bg .img {
        position: absolute;
        width: 100%;
        height: 100%;
        max-height: 150vh;
        transform: translate(-15%, -8%);
        animation: rotation 16s infinite linear;
        transform-origin: center;
    }
}
@keyframes rotation {
    0% {
        transform: rotate(359deg);
    }
    100% {
        transform: rotate(0deg);
    }
}
@media (min-width: 1113px) {
    section.scope.component .bg .img img {
        width: 100%;
        max-width: 100%;
        height: auto;
        transform: scale(2.5) translate3d(0px, 0px, 0px);
        filter: blur(5px);
        pointer-events: none;
    }
}
section.scope.component .container {
    position: relative;
    z-index: 2;
}
section.scope.component .container .inside .top {
    color: #ffffff;
    text-align: center;
}
section.scope.component .container .inside .top .c-head {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
section.scope.component .container .inside .top .c-head .subtitle {
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 15px;
}
@media (min-width: 1113px) {
    section.scope.component .container .inside .top .c-head .subtitle {
        font-size: 1.1rem;
    }
}
section.scope.component .container .inside .top .c-head .main-h {
    margin-bottom: 21px;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
}
@media (min-width: 1113px) {
    section.scope.component .container .inside .top .c-head .main-h {
        font-size: 1.45rem;
    }
}
@media (min-width: 768px) {
    section.scope.component .container .inside .top .c-head .main-h {
        font-size: 1.25rem;
    }
}
@media (min-width: 552px) {
    section.scope.component .container .inside .top .c-head .main-h {
        font-size: 1.25rem;
    }
}
section.scope.component .container .inside .top .text {
    margin: 0 auto 7vmin;
    width: 100%;
    max-width: 100%;
}
section.scope.component .container .inside .top .text .p p {
    line-height: 1.6;
    margin-bottom: 1em;
    font-size: 18px;
}
@media (min-width: 1112px) {
    section.scope.component .container .inside .top .text {
        max-width: 45vw;
    }
}
section.scope.component .parent-accordion {
    position: relative;
    z-index: 2;
}
@media (min-width: 1113px) {
    section.scope.component .parent-accordion {
        margin: 0 auto;
        max-width: clamp(550px, 76%, 100%);
    }
}
section.scope.component .parent-accordion .inside-according {
    max-width: clamp(500px, 66%, 100%);
    margin: 0 auto;
}
section.scope.component .parent-accordion .inside-according .items {
    display: flex;
    flex-direction: column;
}
section.scope.component .parent-accordion .inside-according .items .item {
    display: flex;
    flex-direction: column;
}
section.scope.component .parent-accordion .inside-according .items .item .title {
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 0.5em;
}
section.scope.component .parent-accordion .inside-according .items .item .title button {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 20px 25px 20px 20px;
    padding-right: 50px;
    font-weight: 700;
    cursor: pointer;
    background-color: transparent;
    border: none;
}
@media (max-width: 766px) {
    section.scope.component .parent-accordion .inside-according .items .item .title button {
        padding: 20px 10px 10px;
    }
}
section.scope.component .parent-accordion .inside-according .items .item .title button .number {
    font-size: 18px;
    color: #04E4FF;
    font-weight: 400;
    margin-right: 10px;
}
@media (min-width: 576px) {
    section.scope.component .parent-accordion .inside-according .items .item .title button .number {
        font-size: 1.5rem;
    }
}
section.scope.component .parent-accordion .inside-according .items .item .title button .h4 {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    color: #ffffff;
}
@media (min-width: 576px) {
    section.scope.component .parent-accordion .inside-according .items .item .title button .h4 {
        font-size: 1.5rem;
    }
}
section.scope.component .parent-accordion .inside-according .items .item .title button .arrow {
    position: absolute;
    right: 20px;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}
section.scope.component .parent-accordion .inside-according .items .item .title button .arrow.active {
    transform: rotate(180deg);
}
section.scope.component .parent-accordion .inside-according .items .item .title button .arrow svg {
    color: #04e4ff;
    width: 20px;
}
section.scope.component .parent-accordion .inside-according .items .item .item-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
section.scope.component .parent-accordion .inside-according .items .item .item-content.active {
    max-height: 1000px;
}
section.scope.component .parent-accordion .inside-according .items .item .item-content .box {
    padding: 20px 20px 20px 65px;
}
@media (max-width: 766px) {
    section.scope.component .parent-accordion .inside-according .items .item .item-content .box {
        padding-left: 10px;
    }
}
section.scope.component .parent-accordion .inside-according .items .item .item-content .box .image {
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: clamp(20px, 1.9rem, 30px);
    aspect-ratio: 16 / 8;
}
section.scope.component .parent-accordion .inside-according .items .item .item-content .box .txt .p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}
section.scope.component {
    padding-left: 0;
    padding-right: 0;
}
section.scope.component .parent-accordion.container .inside-according {
    max-width: 100%;
}
@media (min-width: 1113px) {
    section.scope.component .parent-accordion.container .inside-according {
        margin: 0 auto;
        max-width: clamp(550px, 86%, 100%);
    }
}
section.scope.component .parent-accordion .inside-according .items .item .title button .h4 {
    text-align: left;
}
section.scope.component .parent-accordion .inside-according .items .item .title button {
    align-items: flex-start;
}
section.scope.component .parent-accordion .inside-according .items .item .item-content .box .txt .p p {
    margin-bottom: 1.5em;
    line-height: 1.6;
}
section.scope.component .parent-accordion .inside-according .items .item .item-content .box .txt .p p a {
    color: #04E4FF;
    text-decoration: none;
    line-height: 1.6;
}
section.scope.component .parent-accordion .inside-according .items .item .item-content .box .txt .p p a:hover {
    text-decoration: underline;
}
section.scope.component .parent-accordion .inside-according .items .item .item-content .box .txt ul {
    margin-bottom: 1.5em;
}
section.scope.component .parent-accordion .inside-according .items .item .item-content .box .txt ul li {
    padding-inline-start: 25px;
    background-image: url(../../media/images/icons/ul-list.svg);
    background-size: 13px;
    background-position: 0 .2em;
    background-repeat: no-repeat;
    font-size: 16px;
    line-height: 1.6;
}
/* Professional */
.professional.component {
    background-color: #ffffff;
    background-color: #f1f5fe;
}
.professional.component .container .inside {
    position: relative;
}
.professional.component .container .inside .c-image {
    position: absolute;
    top: 0;
}
@media (min-width: 768px) {
    .professional.component .container .inside .c-image {
        position: absolute;
        right: 0;
        max-width: 45%;
    }
}
@media (max-width: 1112px) {
    .professional.component .container .inside .c-image {
        position: relative;
        max-width: 100%;
    }
}
.professional.component .container .inside .top .text .main-h {
    max-width: none;
    margin-top: 40px;
    line-height: 1.2;
    font-weight: 700;
    font-size: clamp(26px, calc(2.5vw + 1.5rem), 1.5rem);
}
@media (min-width: 1113px) {
    .professional.component .container .inside .top .text .main-h {
        max-width: 50%;
    }
}
@media (min-width: 768px) {
    .professional.component .container .inside .top .text .main-h {
        max-width: 50%;
        margin-bottom: 40px;
    }
}
@media (max-width: 575px) {
    .professional.component .container .inside .top .text .main-h {
        font-size: 20px;
    }
}
.professional.component .container .inside .top .text .main-h h2 {
    margin-bottom: 15px;
}
.professional.component .container .inside .top .text .main-h h2 span {
    background: linear-gradient(131.8deg, #009cff 0, #9536e5 100%);
    background-clip: border-box;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    padding-right: 8px;
}
.professional.component .container .inside .parent .boxes {
    display: grid;
    gap: 0;
    counter-reset: section;
}
@media (min-width: 768px) {
    .professional.component .container .inside .parent .boxes {
        grid-template-columns: 1fr 1fr;
    }
}
.professional.component .container .inside .parent .boxes .box {
    position: relative;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    padding: 50px 20px 60px 40px;
}
@media (min-width: 768px) {
    .professional.component .container .inside .parent .boxes .box {
        padding: 50px 50px 80px 50px;
    }
}
.professional.component .container .inside .parent .boxes .box:nth-child(odd)::after {
    background: linear-gradient(to right, #009cff 0, #625eee 100%);
}
.professional.component .container .inside .parent .boxes .box:nth-child(even)::after {
    background: linear-gradient(to right, #625eee 0, #9536e5 100%);
}
@media (min-width: 768px) {
    .professional.component .container .inside .parent .boxes .box:nth-child(7)::after {
        background: none;
    }
}
.professional.component .container .inside .parent .boxes .box:nth-child(8)::after {
    background: none;
}
.professional.component .container .inside .parent .boxes .box::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 2px;
    width: 100%;
}
.professional.component .container .inside .parent .boxes .box .box-h {
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: clamp(22px, calc(2.5vw + 1.5rem), 1.5rem);
    color: #1b2c5c;
}
.professional.component .container .inside .parent .boxes .box .box-h h3 {
    position: relative;
}
.professional.component .container .inside .parent .boxes .box .box-h h3::before {
    counter-increment: section;
    content: "0" counter(section);
    position: absolute;
    top: 0;
    left: -50px;
    font-size: inherit;
    font-style: normal;
    font-weight: 700;
    line-height: inherit;
    background: linear-gradient(94deg, #009cff -2.26%, #9536e5 63.14%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.professional.component .container .inside .parent .boxes .box .box-p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #1B2C5C;
}
/* Digital Marketing Process */
.web-process.component {
    background: #00031F;
    position: relative;
    overflow: hidden;
    padding-bottom: 0;
}
.web-process.component::before {
    content: "";
    position: absolute;
    left: -10%;
    right: 30%;
    top: -30%;
    bottom: -30%;
    background: radial-gradient(ellipse at center, rgb(0, 185, 255) 0%, rgba(0, 185, 255, 0) 70%, rgba(0, 185, 255, 0) 100%);
    opacity: 0.45;
    /* z-index: 1; */
}
.web-process.component::after {
    content: "";
    position: absolute;
    right: -10%;
    left: 30%;
    top: -70%;
    bottom: -40%;
    background: radial-gradient(ellipse at center, rgb(149, 54, 229) 0%, rgba(149, 54, 229, 0) 74%, rgba(149, 54, 229, 0) 100%);
    opacity: 0.45;
    /* z-index: 0; */
}
.web-process.component .container {
    position: relative;
    z-index: 2;
}
.web-process.component .container .inside .top {
    text-align: center;
    color: #ffffff;
}
.web-process.component .container .inside .top .main-h h2 {
    margin-bottom: 15px;
    font-size: clamp(30px, calc(2.5vw + 1.5rem), 2.7rem);
    line-height: 1.2;
    font-weight: 700;
}
.web-process.component .container .inside .top .p p {
    line-height: 1.4;
    font-weight: 400;
    font-size: 20px;
}
@media (min-width: 1113px) {
    .web-process.component .container .inside .top .p p {
        font-size: 1.3rem;
    }
}
.web-process.component .m-slider {
    position: relative;
    z-index: 2;
}
.web-process.component .m-slider .scroller {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
}
.web-process.component .m-slider .scroller .boxes {
    width: 100%;
    height: max-content;
    display: flex;
    gap: 5vw;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-behavior: smooth;    
    margin-left: 20px;
    margin-right: 20px;
}
@media (min-width: 1280px) {
    .web-process.component .m-slider .scroller .boxes {
        margin-left: calc((100vw - 1120px) / 4);
        margin-right: calc((100vw - 1120px) / 4);
    }
}
@media (min-width: 1113px) {
    .web-process.component .m-slider {
        padding-top: 5vmin;
    }
}
.web-process.component .m-slider .scroller .boxes .box {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 40%;
    color: #fff;
    padding-bottom: 30px;
}
@media (max-width: 1439px) {
    .web-process.component .m-slider .scroller .boxes .box {
        min-width: 60%;
    }
}
@media (max-width: 766px) {
    .web-process.component .m-slider .scroller .boxes .box {
        min-width: 80%;
    }
}
.web-process.component .m-slider .scroller .boxes .box .c-image {
    position: relative;
    margin-bottom: 43px;
}
.web-process.component .m-slider .scroller .boxes .box .c-image img {
    width: 210px;
    height: 149px;
}
.web-process.component .m-slider .scroller .boxes .box .text .box-h {
    margin-bottom: 0.5em;
}
.web-process.component .m-slider .scroller .boxes .box .text .box-h h4 {
    background: linear-gradient(100deg, #04E4FF 1.4%, #009CFF 67.99%, #009CFF 98.26%);
    background-clip: border-box;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;

    line-height: 1.2;
    font-weight: 700;
    font-size: clamp(28px, calc(2.0vw + 1.5rem), 1.95rem);
}
.web-process.component .m-slider .scroller .boxes .box .text .box-p {
    margin-bottom: 1.5em;
}
.web-process.component .m-slider .scroller .boxes .box .text .box-p p {
    line-height: 1.6;
    font-size: 1.1rem;
    font-weight: 400;
}
.web-process.component .m-slider .scroller .boxes .box .text .ul-h {
    margin-bottom: 1.5em;
}
.web-process.component .m-slider .scroller .boxes .box .text .ul-h h5 {
    line-height: 1.6;
    font-size: 1.1rem;
    font-weight: 400;
}
.web-process.component .m-slider .scroller .boxes .box .text ul {
    margin-bottom: 1.5em;
    list-style-type: none;
}
.web-process.component .m-slider .scroller .boxes .box .text ul li {
    margin-bottom: 1em;
    display: flex;
    gap: 5px;
    align-items: center;
}
.web-process.component .m-slider .scroller .boxes .box .text ul li svg {
    width: 20px;
    height: 20px;
    color: #01afe9;
}
.web-process.component .m-slider .scroller .boxes .box .text ul li p {
    line-height: 1.6;
    font-size: 1.1rem;
    font-weight: 400;
}
.web-process.component .m-slider .scroller .boxes .box .number {
    padding-top: 20px;
    color: rgba(255, 255, 255, 0.05);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.2);
    font-size: clamp(70px, 9vw, 180px);
    font-style: normal;
    font-weight: 900;
    line-height: 110%;
}
.web-process.component .m-slider .button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto 50px;
}
/* One page Blog */
/* Best Agency */
.best-agency.component {
    background: linear-gradient(180deg, #f1f5fe 0, #fff 100%);
    background-size: 100%;
    background-repeat: no-repeat;
}
.best-agency.component .container .inside .top {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
    margin-inline: auto;
    color: #3B7BCE;
}
.best-agency.component .container .inside .top .sub-title {
    font-size: 18px;
    margin-bottom: 5px;
    line-height: 1.2;
    letter-spacing: 1.1px;
    font-weight: 700;
    font-weight: 700;
    text-transform: uppercase;
}
@media (min-width: 1113px) {
    .best-agency.component .container .inside .top .sub-title {
        font-size: 20px;
        letter-spacing: 1.5px;
    }
}
.best-agency.component .container .inside .top .main-h {
    margin-bottom: 15px;
    font-size: clamp(30px, calc(2.0vw + 1.5rem), 1.3rem);
}
.best-agency.component .container .inside .c-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0 30px;
    flex-wrap: wrap;
}
/* .best-agency.component .container .inside .c-flex .c-child {
    padding: 30px;
} */
@media (min-width: 1112px) {
    .best-agency.component .container .inside .c-flex .c-child {
        padding: 30px;
    }
}
.best-agency.component .container .inside .c-flex .c-child .left {
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    color: #3B7BCE;
}
@media (min-width: 1113px) {
    .best-agency.component .container .inside .c-flex .c-child {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}
@media (max-width: 1112px) {
    .best-agency.component .container .inside .c-flex .c-child {
        flex: 1 1 auto;
        width: 100%;
    }
}
.best-agency.component .container .inside .c-flex .c-child .right p {
    margin-bottom: 1.8em;
    font-size: 1.1rem;
    color: #5F6568;
    font-weight: 400;
    line-height: 1.4;
}
.best-agency.component .blog {
    position: relative;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    padding-bottom: 10vmin;
    padding-block: 7vmin;
    font-size: clamp(18px, 1.1rem, 20px);
}
@media (min-width: 1113px) and (max-width: 1439px) {
    .best-agency.component .blog {
        max-width: 600px;
    }
}
@media (max-width: 1112px) {
    .best-agency.component .blog {
        padding-inline: 20px;
    }
}
.best-agency.component .blog .inner-blog .direction-box {
    background-color: #ffffff;
    margin-bottom: 3em;
    box-shadow: 0px 15px 30px rgba(27, 44, 92, 0.1);
    border-radius: 5px;
    border: none !important;
    width: 100%;
    transition: all 0.3s;
    overflow: hidden;
    display: table;
}
.best-agency.component .blog .inner-blog .direction-box .title-content {
    padding: 10px 22px;
    cursor: pointer;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    position: relative;
    min-height: 43px;
    color: #1B2C5C;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.45;
    text-align: left;
}
.best-agency.component .blog .inner-blog .direction-box .nav ul {
    padding: 0 1em 1em;
}
.best-agency.component .blog .inner-blog .direction-box .nav ul li {
    line-height: 1.6;
    border-top: 1px solid rgba(1,175,233, 0.3);
}
.best-agency.component .blog .inner-blog .direction-box .nav ul li a {
    position: relative;
    display: block;
    padding: 10px 0 10px 25px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #1B2C5C;
    transition: all 0.3s ease-in-out;
    line-height: 1.6;
}
.best-agency.component .blog .inner-blog .direction-box .nav ul li a:hover {
    color: #1B2C5C;
}
.best-agency.component .blog .inner-blog .direction-box .nav ul li a::before {
    content: " ";
    position: absolute;
    left: 0;
    top: 10px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(media/images/icons/list.svg);
    width: 20px;
    height: 15px;
    transform: translateY(20%);
}
.best-agency.component .blog .inner-blog .direction-box .nav ul li a::after {
    content: " ";
    position: absolute;
    inset: 0;
    background: linear-gradient(93.63deg, rgba(4, 228, 255, 0.2) 1.61%, rgba(149, 54, 229, 0.2) 98.62%);
    width: 0;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    transition: width 0.3s ease-in-out;
}
.best-agency.component .blog .inner-blog .direction-box .nav ul li a:hover::after {
    width: 100%;
}
.best-agency.component .blog .inner-blog .article {
    color: #1b2c5c;
}
.best-agency.component .blog .inner-blog .article p {
    margin-bottom: 1.8em;
    margin-top: 0;
    font-size: clamp(18px, 1.1rem, 20px);
    line-height: 1.6;
}
.best-agency.component .blog .inner-blog .article h2 {
    margin-block: 1.2em 1em;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
}
@media (min-width: 1113px) {
    .best-agency.component .blog .inner-blog .article h2 {
        font-size: 36px;
    }
}
.best-agency.component .blog .inner-blog .article h2 span {
    margin-top: -120px;
    display: inline-block;
    position: absolute;
    top: 0;
}
.best-agency.component .blog .inner-blog .article h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-block: 1.2em 1em;
    position: relative;
}
@media (min-width: 1113px) {
    .best-agency.component .blog .inner-blog .article h2 {
        font-size: 36px;
    }
}
.best-agency.component .blog .inner-blog .article h2 span {
    margin-top: -120px;
    display: inline-block;
    position: absolute;
    top: 0;
}
.best-agency.component .blog .inner-blog .article a {
    color: #1B2C5C;
    font-weight: 600;
    z-index: 2;
    border-bottom: 4px solid #8842dc;
}
.best-agency.component .blog .inner-blog .article ul,
.best-agency.component .blog .inner-blog .article ol {
    padding-left: 25px;
    margin-bottom: 2.5rem;
}
.best-agency.component .blog .inner-blog .article ul li,
.best-agency.component .blog .inner-blog .article ol li {
    position: relative;
    margin-bottom: 7px;
    font-size: clamp(18px, 1.1rem, 20px);
    line-height: 1.6;
}
.best-agency.component .blog .inner-blog .article ul li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: -20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 0 4px 7px;
    border-color: transparent transparent transparent #008bde;
}
/* Diffrence */
section.experience.component {
    background-color: #f2fbff;
    padding-bottom: 0;
}
section.experience.component .first-container {
    border-bottom: 2px solid rgba(0, 185, 255, 0.2);
}
section.experience.component .second-container {
    background-color: #fff;
    padding-bottom: 20px;
    padding-top: 40px;
}
@media (min-width: 1113px) {
    section.experience.component .second-container {
        padding-top: 40px;
        padding-bottom: 8vmin;
    }
}
section.experience.component .container .inside .top {
    display: flex;
    flex-direction: column;
    align-items: center;
}
section.experience.component .container .inside .top .txt {
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media (min-width: 1113px) {
    section.experience.component .container .inside .top .txt {
        margin-bottom: 2rem;
    }
}
section.experience.component .container .inside .top .txt .subtitle {
    text-transform: uppercase;
    font-weight: 700;
    color: #009CFF;
    line-height: 1.2;
    margin-bottom: 20px;
    font-size: 15px;
}
@media (min-width: 1113px) {
    section.experience.component .container .inside .top .txt .subtitle {
        font-size: 1.1rem;
    }
}
section.experience.component .container .inside .top .txt .h2 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.2em;
    text-align: center;
    color: #1B2C5C;
    font-size: 1.4rem;
}
@media (max-width: 551px) {
    section.experience.component .container .inside .top .txt .h2 {
        font-size: calc(1.06vw + 1.0rem);
    }
}
section.experience.component .container .inside .top .txt .light-p {
    font-weight: 400;
    text-align: center;
    font-size: 18px;
    color: #1b2c5c;
}
section.experience.component .container .inside .top .txt .light-p p {
    line-height: 1.6;
    margin-bottom: 1em;
}
section.experience.component .container .inside .top .buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
}
section.experience.component .container .inside .top .buttons .button {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    cursor: pointer;
    transition: all 0.3s ease-in;
    padding: 10px 1.75rem 15px;
    display: flex;
    text-align: center;
    color: #1B2C5C;
    background-color: transparent;
}
section.experience.component .container .inside .top .buttons .button::after {
    content: "";
    position: absolute;
    inset: 0 0 -25px;
    background: #fff;
    box-shadow: 0px 0px 33px rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    opacity: 0;
}
@media (max-width: 1112px) {
    section.experience.component .container .inside .top .buttons .button {
        padding: 7px 1.0rem 10px;
    }
    section.experience.component .container .inside .top .buttons .button::after {
        inset: 0 0 -15px;
    }
}
@media (max-width: 767px) {
    section.experience.component .container .inside .top .buttons .button {
        padding: 5px 0.8rem 5px;
    }
    section.experience.component .container .inside .top .buttons .button::after {
        inset: 0 0 -5px;
    }
}
section.experience.component .container .inside .top .buttons .button.selected::after {
    opacity: 1;
}
section.experience.component .container .inside .top .buttons .button.selected {
    background-color: #ffffff;
}
section.experience.component .container .inside .top .buttons .button .main-icon {
    z-index: 1;
    padding: 10px;
    padding-bottom: 0;
    margin-bottom: 15px;
    height: 2.75rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 1112px) {
    section.experience.component .container .inside .top .buttons .button .main-icon {
        z-index: 1;
        padding: 7px;
        padding-bottom: 0;
        margin-bottom: 15px;
        height: 1.9rem;
    }
}
@media (max-width: 767px) {
    section.experience.component .container .inside .top .buttons .button .main-icon {
        z-index: 1;
        padding: 7px;
        margin-bottom: 10px;
        width: 40px;
    }
}
section.experience.component .container .inside .top .buttons .button.selected .main-icon svg {
    filter: hue-rotate(13deg) brightness(2);
}
section.experience.component .container .inside .top .buttons .button .button-txt {
    text-shadow: none;
    position: relative;
    z-index: 2;
    white-space: normal;
    line-height: 1.3;
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
}
@media (max-width: 1112px) {
    section.experience.component .container .inside .top .buttons .button .button-txt {
        line-height: 1.2;
        font-size: 1.0rem;
    }
}
@media (max-width: 767px) {
    section.experience.component .container .inside .top .buttons .button .button-txt {
        font-size: 0.85rem;
    }
}
section.experience.component .container .inside .top .buttons .button:hover .button-txt {
    color: #4d68f2;
}
section.experience.component .container .inside .top .buttons .button .arrow-icon {
    transform: translateY(10px);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    opacity: 0;
}
section.experience.component .container .inside .top .buttons .button.selected .arrow-icon {
    opacity: 1;
}
section.experience.component .container .inside .top .buttons .button .arrow-icon svg {
    width: 10px;
    height: 17px;
    transform: rotate(90deg);
}
section.experience.component .container .inside .top .buttons .button.selected .arrow-icon svg {
    color: #4d68f2;
}
section.experience.component .container .inside .top .buttons .button.selected .button-txt {
    background: linear-gradient(131.8deg, #009CFF 0%, #9536E5 100%)#fff;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
@media (max-width: 767px) {
    section.experience.component .container .inside .top .buttons .button {
        padding: 1rem;
    }
    section.experience.component .container .inside .top .buttons .button .button-txt {
        display: none;
    }
    section.experience.component .container .inside .top .buttons .button .main-icon {
        margin: 0;
        padding: 0;
    }
}
section.experience.component .second-container .container .inside .parent {
    width: 100%;
    height: 100%;
    padding-bottom: 0;
}
@media (min-width: 576px) {
    section.experience.component .second-container .container .inside .parent {
        padding: 20px;
    }
}
section.experience.component .second-container .container .inside .parent .child {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
/* section.experience.component .second-container .container .inside .parent .child.reverse {
    flex-direction: row-reverse;
} */
section.experience.component .second-container .container .inside .parent .child:nth-child(even) {
    flex-direction: row-reverse;
}
section.experience.component .second-container .container .inside .parent .child.is-active {
    display: flex;
    animation: fade-appear 0.6s linear 1 forwards;
}
@keyframes fade-appear {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@media (max-width: 1112px) {
    section.experience.component .second-container .container .inside .parent .child {
        gap: 20px;
    }
}
@media (max-width: 767px) {
    section.experience.component .second-container .container .inside .parent .child {
        flex-wrap: wrap;
        flex-direction: column-reverse;
        gap: 30px;
    }
    section.experience.component .second-container .container .inside .parent .child.reverse {
        flex-direction: column-reverse;
    }
}
@media (min-width: 1112px) {
    section.experience.component .second-container .container .inside .parent .child .text {
        padding: 30px;
    }
}
section.experience.component .second-container .container .inside .parent .child .text {
    flex: 1 1 auto;
}
section.experience.component .second-container .container .inside .parent .child .text .h h4 {
    margin-bottom: 15px;
    font-weight: 400;
    line-height: 1.2;
    font-size: 1.9rem;
    color: #1B2C5C;
}
section.experience.component .second-container .container .inside .parent .child .text .p p {
    font-weight: 400;
    line-height: 1.6;
    font-size: 19px;
    color: #1B2C5C;
}
section.experience.component .second-container .container .inside .parent .child .img {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
    position: relative;
}
@media (max-width: 1112px) {
    section.experience.component .second-container .container .inside .parent .child .img {
        flex: 0 0 calc(40% - 15px);
        max-width: calc(40% - 15px);
        margin-bottom: 30px;
    }
}
@media (max-width: 767px) {
    section.experience.component .second-container .container .inside .parent .child .img {
        flex: 1;
        max-width: 100%;
        margin-bottom: 0;
    }
}
section.experience.component .second-container .container .inside .parent .child .img::after {
    content: " ";
    background: linear-gradient(311deg, #9536E5 2.32%, #04E4FF 56.99%, #04E4FF 100%);
    top: 10px;
    right: -15px;
    width: 100%;
    max-width: 689px;
    height: 100%;
    position: absolute;
    z-index: 0;
}
section.experience.component .second-container .container .inside .parent .child .img .c-img {
    z-index: 1;
    position: relative;
}
/* Recommendations */
section.recommendations.component {
    background-color: #ffffff;
    color: #5F6568;
}
section.recommendations.component .container .inside .top {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
section.recommendations.component .container .inside .top .subtitle {
    color: #3B7BCE;
    line-height: 1.2;
    letter-spacing: 1.1px;
    margin-bottom: .3em;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}
@media (min-width: 1113px) {
    section.recommendations.component .container .inside .top .subtitle {
        font-size: 1.2rem;
    }
}
section.recommendations.component .container .inside .top .h {
    line-height: 1.2;
    font-weight: 700;
    color: #3B7BCE;
    margin-bottom: 15px;
    font-size: 1.8rem;
    text-align: center;
}
@media (max-width: 768px) {
    section.recommendations.component .container .inside .top .h {
        font-size: calc(1vw + 1.37rem);
    }
}
@media (max-width: 551px) {
    section.recommendations.component .container .inside .top .h {
        font-size: calc(1vw + 1rem);
    }
}
section.recommendations.component .container .inside .top .h h2 {
    line-height: 1.2;
}
section.recommendations.component .container .inside .top .p {
    margin: 0.3em 0;
    line-height: 1.2;
    font-weight: 400;
    font-size: 20px;
    text-align: center;
}
@media (min-width: 1113px) {
    section.recommendations.component .container .inside .top .p {
        font-size: 1.3rem;
    }
}
section.recommendations.component .container .inside .all {
    position: relative;
}
section.recommendations.component .container .inside .all .scroll-bar {
    margin: 3.8vmin 0 8vmin;
}
@media (max-width: 1112px) {
    section.recommendations.component .container .inside .all .scroll-bar {
        display: none;
    }
}
section.recommendations.component .container .inside .all .scroll-bar .selections {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 3px solid rgba(141, 141, 141, 0.2);
}
section.recommendations.component .container .inside .all .scroll-bar .selections .underline {
    display: block;
    position: absolute;
    z-index: 0;
    bottom: -3px;
    left: 0;
    height: 3px;
    width: calc((100% / 3) + 10px);
    line-height: 0;
    background: #01AFE9;
    pointer-events: none;
    transition: all 0.5s ease-in-out;
}
section.recommendations.component .container .inside .all .scroll-bar .selections .underline::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0px;
    height: 0px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #01AFE9;
    transform: translate(-50%, -50%);
}
section.recommendations.component .container .inside .all .scroll-bar .selections .select {
    width: calc(100% / 3);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    padding: 10px 20px;
    text-transform: uppercase;
    cursor: pointer;
}
section.recommendations.component .container .inside .all .scroll-bar .selections .select:last-child {
    margin-right: 0;
}
section.recommendations.component .container .inside .all .scroll-bar .selections .select.selected {
    color: #01AFE9;
}
section.recommendations.component .container .inside .all .scroll-bar .selections .select:hover {
    color: #fff;
    text-shadow: -2px 0px 5px rgba(24, 151, 227, 0.98), 2px 3px 5px #1baaff, 3px 0px 5px #1baaff, -3px -2px 5px #1baaff;
}
section.recommendations.component .container .inside .all .scroll-bar .selections .select .in-select {
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    white-space: pre-line;
    min-height: 56px;
    line-height: 1.6;
}
section.recommendations.component .container .inside .all .parent-boxes {
    position: relative;
}
@media (max-width: 1113px) {
    section.recommendations.component .container .inside .all .parent-boxes {
        padding-bottom: 50px;
    }
}
section.recommendations.component .container .inside .all .parent-boxes .boxes {
    display: flex;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    cursor: default;
}
@media (max-width: 1113px) {
    section.recommendations.component .container .inside .all .parent-boxes .boxes {
        z-index: 2;
        position: relative;
    }
}
section.recommendations.component .container .inside .all .parent-boxes .boxes.grabbing {
    cursor: grabbing;
}
section.recommendations.component .container .inside .all .parent-boxes .boxes .box {
    min-width: 100%;
    width: 100%;
    margin-right: 20px;
}
@media (min-width: 1112px) {
    section.recommendations.component .container .inside .all .parent-boxes .boxes .box {
        margin: 0 auto;
    }
}
@media (max-width: 1113px) {
    section.recommendations.component .container .inside .all .parent-boxes .boxes .box  {
        width: 100%;
    }
}
section.recommendations.component .container .inside .all .parent-boxes .boxes .box .inbox {
    padding: 0 80px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
@media (max-width: 1112px) {
    section.recommendations.component .container .inside .all .parent-boxes .boxes .box .inbox {
        padding: 0 20px;
    }
}
@media (max-width: 1112px) {
    section.recommendations.component .container .inside .all .parent-boxes .boxes .box .inbox {
        max-width: 430px;
        min-width: auto;
        margin: auto;
        margin: 30px auto 0;
        gap: 0;
        padding: 0;
    }
}
@media (max-width: 768px) {
    section.recommendations.component .container .inside .all .parent-boxes .boxes .box .inbox {
        flex-direction: column-reverse;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 80px;
    }
}
section.recommendations.component .container .inside .all .parent-boxes .boxes .box .inbox .text {
    padding: 15px;
}
@media (min-width: 1112px) {
    section.recommendations.component .container .inside .all .parent-boxes .boxes .box .inbox .text {
        flex: 3;
    }
}
@media (max-width: 1113px) {
    section.recommendations.component .container .inside .all .parent-boxes .boxes .box .inbox .text {
        padding: 0;
    }
}
section.recommendations.component .container .inside .all .parent-boxes .boxes .box .inbox .text .c-h {
    line-height: 1;
    font-weight: 700;
    margin-bottom: 21px;
    color: #01afe9;
    font-size: clamp(30px, calc(2.275vw + 0.75rem), 2.1rem);
}
section.recommendations.component .container .inside .all .parent-boxes .boxes .box .inbox .text .c-p {
    line-height: 1.6;
    font-weight: 400;
    font-size: clamp(16px, calc(1.275vw + 0.75rem), 1.2rem);
}
@media (max-width: 1113px) {
    section.recommendations.component .container .inside .all .parent-boxes .boxes .box .inbox .text .c-h {
        font-size: 28px;
    }
    section.recommendations.component .container .inside .all .parent-boxes .boxes .box .inbox .text .c-p {
        font-size: 18px;
    }
}
section.recommendations.component .container .inside .all .parent-boxes .arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
    z-index: 1;
}
@media (max-width: 1113px) {
    section.recommendations.component .container .inside .all .parent-boxes .arrows {
        bottom: 0;
        top: auto;
        transform: translateY(0);
        justify-content: center;
        gap: 10px;
    }
}
section.recommendations.component .container .inside .all .parent-boxes .arrows .arrow {
    width: 35px;
    height: 35px;
    color: #01AFE9;
    cursor: pointer;
    opacity: 0.3;
}
section.recommendations.component .container .inside .all .parent-boxes .arrows .arrow.active {
    opacity: 1;
}
section.recommendations.component .container .inside .all .parent-boxes .arrows .arrow svg {
    width: 35px;
    height: 35px;
}
section.recommendations.component .container .inside .all .parent-boxes .arrows .arrow.left {
    rotate: 180deg;
    /* margin-top: -5px; */
}
section.recommendations.component .container .inside .all .parent-boxes .boxes .box .inbox .image {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 4 / 3;
}
@media (min-width: 1112px) {
    section.recommendations.component .container .inside .all .parent-boxes .boxes .box .inbox .image {
        flex: 2;
        max-width: calc(50% - 15px);
    }
}
section.recommendations.component .container .inside .all .parent-boxes .boxes .box .inbox .image img {
    width: 100%;
    object-fit: fill;
}
/* Services */
section.services.component {
    background-color: #f1f5fe;
}
section.services.component .container .inside .parent {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
section.services.component .container .inside .parent .child {
    flex-basis: 100%;
}
@media (min-width: 1113px) {
    section.services.component .container .inside .parent .child {
        flex-basis: calc(50% - 15px);
        max-width: 50%;
    }
}
section.services.component .container .inside .parent .child-text {
    display: flex;
    flex-direction: column;
}
section.services.component .container .inside .parent .child-text .top {
    margin-bottom: 60px;
    max-width: 710px;
}
section.services.component .container .inside .parent .child-text .top .main-h {
    color: #3B7BCE;
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
}
@media (max-width: 768px) {
    section.services.component .container .inside .parent .child-text .top .main-h {
        font-size: 4.2vw;
    }
}
section.services.component .container .inside .parent .child-text .top .main-p {
    margin-bottom: 0.3em 0;
    color: #5F6568;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 1;
}
section.services.component .container .inside .parent .child-text .items {
    display: flex;
    flex-direction: column;
    gap: 0;
}
section.services.component .container .inside .parent .child-text .items .item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-left: 3px solid #dde0e7;
    padding-left: 45px;
    cursor: pointer;
}
section.services.component .container .inside .parent .child-text .items .item::before {
    content: "";
    left: -3px;
    top: 40%;
    bottom: 40%;
    width: 3px;
    position: absolute;
    display: block;
    background-color: #01AFE9;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    opacity: 0;
}
section.services.component .container .inside .parent .child-text .items .item.is-active::before {
    top: 0;
    bottom: 0;
    opacity: 1;
}
section.services.component .container .inside .parent .child-text .items .item::after {
    left: 0;
    top: 50%;
    border: 0 solid rgba(1, 175, 233, 0);
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-left-color: #01afe9;
    margin-top: -6px;
    -webkit-transition: all .4s;
    transition: all .4s;
}
section.services.component .container .inside .parent .child-text .items .item.is-active::after {
    border-width: 6px;
}
section.services.component .container .inside .parent .child-text .items .item .item-h {
    line-height: 1.3;
    font-size: 24px;
}
section.services.component .container .inside .parent .child-text .items .item .item-h h3 {
    color: #01AFE9;
    padding: 10px 0;
}
section.services.component .container .inside .parent .child-text .items .item .paragraphs {
    padding-bottom: 5vmin;
    max-height: 0;
    overflow: hidden;
    transition: all .5s ease-in-out;
}
section.services.component .container .inside .parent .child-text .items .item.is-active .paragraphs {
    max-height: 500px;
}
section.services.component .container .inside .parent .child-text .items .item .paragraphs .p {
    font-size: 1rem;
    margin-bottom: 1em;
    color: #1B2C5C;
    max-height: 0;
    overflow: hidden;
}
section.services.component .container .inside .parent .child-text .items .item.is-active .paragraphs .p {
    max-height: max-content;
}
section.services.component .container .inside .parent .child-text .items .item .paragraphs .p p {
    line-height: 1.6;
}
section.services.component .container .inside .parent .child-form {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
section.services.component .container .inside .parent .child-form .form-box {
    border: 0;
    border-radius: 6px;
    -webkit-box-shadow: 0 14px 24px 0 rgba(0, 0, 0, .05);
    box-shadow: 0 14px 24px 0 rgba(0, 0, 0, .05);
    max-width: 100%;
    width: 100%;
}
@media (min-width: 1113px) {
    section.services.component .container .inside .parent .child-form .form-box {
        width: 88%;
    }
}
@media (max-width: 766px) {
    section.services.component .container .inside .parent .child-form .form-box {
        margin-bottom: 40px;
        padding: 1.5rem 25px;
    }
}
.child-form.component .form-box .top p {
    font-size: 1.5rem;
    font-weight: 500;
}
@media (max-width: 766px) {
    .child-form.component .form-box .top p {
        font-size: 1.2rem;
        font-weight: 500;
    }
}
section.services.component .container .inside .parent .child-form .form-box input {
    color: #1b398f;
}
section.services.component .container .inside .parent .child-form .form-box .submit button {
    background-color: transparent;
}
/* Stay On Top Of Digital Trends */
section.trends.component {
    background-image: url(../../media/images/bg/sign-up-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    background-color: #0a0d34;
    overflow: hidden;
    position: relative;
    padding-top: 13vmin;
    padding-bottom: 13vmin;
}
@media (max-width: 1112px) {
    section.trends.component {
        background-size: 128%;
        padding-top: 13vmin;
        padding-bottom: 13vmin;
    }
}
@media (max-width: 766px) {
    section.trends.component {
        background-image: none !important;
        padding-block: 40px 20px;
    }
}
section.trends.component::before {
    content: "";
    position: absolute;
    left: -60%;
    right: 70%;
    top: -30%;
    bottom: -30%;
    background: radial-gradient(ellipse at center, #009CFF 0%, rgba(0, 185, 255, 0) 70%, rgba(0, 185, 255, 0) 100%);
    opacity: 0.45;
    z-index: 1;
}
section.trends.component .container .inside .parent {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}
@media (max-width: 1112px) {
    section.trends.component .container .inside .parent {
        flex-wrap: wrap;
    }
}
section.trends.component .container .inside .parent .child {
    padding: 0 calc(24px * 0.5);
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
    box-sizing: border-box;
}
@media (max-width: 1112px) {
    section.trends.component .container .inside .parent .child {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex-basis: 100%;
        text-align: center;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    section.trends.component .container .inside .parent .child.text {
        margin-bottom: 35px;
    }
}
section.trends.component .container .inside .parent .child.text .txt {
    display: flex;
    flex-direction: column;
    color: #ffffff;
}
section.trends.component .container .inside .parent .child.text .txt .h {
    margin-bottom: 0.1em;
    font-size: 1.65rem;
}
@media (max-width: 1112px) {
    section.trends.component .container .inside .parent .child.text .txt .h {
        font-size: 1.54rem;
    }
}
@media (max-width: 551px) {
    section.trends.component .container .inside .parent .child.text .txt .h {
        font-size: 1.3rem;
    }
}
section.trends.component .container .inside .parent .child.text .txt .h h2 {
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 0.1em;
}
section.trends.component .container .inside .parent .child.text .txt .p {
    line-height: 1.6;
    font-weight: 400;
    font-size: 19px;
}
@media (max-width: 1112px) {
    section.trends.component .container .inside .parent .child.text .txt .p {
        font-size: 18px;
    }
}
@media (max-width: 1112px) {
    section.trends.component .container .inside .parent .child.form {
        max-width: 334px;
        margin: 0 auto;
        text-align: center;
    }
}
section.trends.component .container .inside .parent .child.form form {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
}
@media (max-width: 1112px) {
    section.trends.component .container .inside .parent .child.form form {
        flex-wrap: wrap;
        border: none;
        margin-bottom: 30%;
    }
}
section.trends.component .container .inside .parent .child.form form::after {
    top: -16px;
    left: -1px;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(1, 175, 233, 0);
    border-bottom-color: #01AFE9;
    border-width: 16px;
    transform: rotate(-45deg);
    transform-origin: bottom;
}
section.trends.component .container .inside .parent .child.form form .input {
    margin-bottom: 0;
    flex: 0 0 100%;
}
section.trends.component .container .inside .parent .child.form form .input input {
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 100%;
    color: #ffffff;
    background-color: transparent;
    font-size: 0.9rem;
    font-weight: 400;
    padding: 17px 25px !important;
    line-height: 1.6;
}
@media (min-width: 1113px) {
    section.trends.component .container .inside .parent .child.form form .input {
        flex: 1 1 50%;
        border: none;
        text-align: left;
        border: 0;
    }
    section.trends.component .container .inside .parent .child.form form .input input {
        border: none;
    }
}
section.trends.component .container .inside .parent .child.form form .input input:focus {
    outline: none;
}
section.trends.component .container .inside .parent .child.form form .input input::placeholder {
    color: #ffffff;
    font-weight: 400;
    font-size: 16px !important;
}
@media (min-width: 1113px) {
    section.trends.component .container .inside .parent .child.form form .input input {
        font-size: 0.9rem;
        padding: 25px;
        text-align: left;
    }
}
section.trends.component .container .inside .parent .child.form form .sign-up {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 200px;
    width: 100%;
    margin: 0;
    padding: 3px;
    flex: 1 0 auto;
    cursor: pointer;
}
@media (max-width: 1112px) {
    section.trends.component .container .inside .parent .child.form form .sign-up {
        max-width: 100%;
        padding: 0;
        margin-top: 4px;
    }
}
section.trends.component .container .inside .parent .child.form form .sign-up input {
    font-size: 1rem;
    font-weight: 500;
    padding: 15px 40px;
    line-height: 1.6;
    height: 100%;
    width: 100%;
    text-align: center;
    justify-content: center;
    display: flex;
    cursor: pointer;
    text-transform: uppercase;
    background: var(--forms-CTA, linear-gradient(231deg, #03D7FF -16.66%, #0092E2 99.08%));
    color: #ffffff;
    border: none;
    outline: none;
}
section.trends.component .container .inside .parent .child.form form .sign-up input:hover {
    color: #000;
}
/* Result */
.results.component {
    padding-top: 6vmin;
    background-color: #00042A;
}
.results.component .container .inside .top {
    margin-bottom: 2.5rem;
    padding: 0 20px;
    color: #fff;
    text-align: center;
}
.results.component .container .inside .top .top-small-h {
    line-height: 1.2;
    letter-spacing: 1.1px;
    margin-bottom: 0.3em;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 15px;
}
@media (min-width: 1113px) {
    .results.component .container .inside .top .top-small-h {
        font-size: 1.3rem;
    }
}
.results.component .container .inside .top .top-main-h {
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 15px;
}
.results.component .container .inside .top .top-main-h {
    line-height: 1.2;
    letter-spacing: 1.1px;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 2.3rem;
}
@media (max-width: 1660px) {
    .results.component .container .inside .top .top-main-h {
        font-size: 1.7rem;
    }
}
@media (max-width: 1112px) {
    .results.component .container .inside .top .top-main-h {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .results.component .container .inside .top .top-main-h {
        font-size: calc((4.5vw + 1.5rem) / 2);
    }
}
@media (max-width: 551px) {
    .results.component .container .inside .top .top-main-h {
        font-size: 19px;
        text-align: center;
    }
}
.results.component .container .inside .all {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}
.results.component .container .inside .all .slider-bar {
    position: absolute;
    z-index: 3;
    bottom: 20px;
    right: 50%;
    transform: translateX(50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: #ffffff;
}
.results.component .container .inside .all .slider-bar .arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.results.component .container .inside .all .slider-bar .arrow:hover svg {
    color: #009cff;
}
.results.component .container .inside .all .slider-bar .arrow.leftarrow {
    rotate: 180deg;
}
.results.component .container .inside .all .slider-bar .numbers {
    display: flex;
    align-items: center;
    gap: 20px;
}
.results.component .container .inside .all .slider-bar .numbers .number {
    cursor: pointer;
    opacity: 0.8;
}
.results.component .container .inside .all .slider-bar .numbers .number.active {
    opacity: 1;
}
.results.component .container .inside .all .slider-bar .numbers .number span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: #d9d9d9;
    color: #000;
    font-weight: 600;
    font-size: 18px;
}
.results.component .container .inside .all .slider-bar .numbers .number.active span {
    background: linear-gradient(98deg,#04e4ff 1.78%,#4992f3 48.83%);
    color: #fff;
    font-size: 22px;
}
.results.component .container .inside .all .parent {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    transition: transform 0.8s ease-in-out;
}
.results.component .container .inside .all .parent .child {
    display: block;
    position: relative;
    min-width: 100%;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease;
}
.results.component .container .inside .all .parent .child .bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.results.component .container .inside .all .parent .child .bg::before {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    background: linear-gradient(267deg, rgba(0, 3, 31, 0) 38.29%, #00031f 108.06%), linear-gradient(102deg, rgba(30, 48, 117, .2) 17.51%, rgba(54, 146, 255, .2) 195.81%);
    inset: 0;
    z-index: 2;
}
.results.component .container .inside .all .parent .child .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
}
.results.component .container .inside .all .parent .child .content {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
}
.results.component .container .inside .all .parent .child .content .container {
    display: flex;
    flex-direction: column;
}
.results.component .container .inside .all .parent .child .content .container .brand-logo img {
    max-width: 320px;
    display: inline-block;
    margin-bottom: 2rem;
    max-height: 70px;
    -o-object-position: left;
    object-position: left;
    -o-object-fit: contain;
    object-fit: contain;
}
.results.component .container .inside .all .parent .child .content .container .text .p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}
@media (min-width: 768px) {
    .results.component .container .inside .all .parent .child .content .container .text .p {
        max-width: 583px;
    }
}
.results.component .container .inside .all .parent .child .content .container .text .ul ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
}
.results.component .container .inside .all .parent .child .content .container .text .ul ul li svg {
    width: 16px;
    height: 26px;
}
.results.component .container .inside .all .parent .child .content .container .text .ul ul li span {
    padding: 2px 8px;
    background: linear-gradient(98deg, #4992f3 1.78%, #9536e5 100%);
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
}
.results.component .container .inside .all .parent .child .content .container .text .ul ul li p {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
}
.results.component .container .inside .all .parent .child .content .container .text .main-button {
    margin-top: 3rem;
}
/* Our Work */
.our-work.component {
    background: linear-gradient(345deg,#005b95 0,#000636 36%,#000636 53%,#004a83 90%);
}
.our-work.component .container .inside .top {
    max-width: 1400px;
    margin-inline: auto;
    margin-bottom: 15px;
    text-align: center;
    color: #ffffff;
}
.our-work.component .container .inside .top .sub-title {
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    margin-bottom: 0.3em;
    font-weight: 700;
}
@media (min-width: 1113px) {
    .our-work.component .container .inside .top .sub-title {
        font-size: 1.1rem;
    }
}
.our-work.component .container .inside .top .main-h h2 {
    margin-bottom: 15px;
    font-size: clamp(30px, calc(2.5vw + 1.5rem), 2.7rem);
}
.our-work.component .container .inside .top .p p {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    margin: 0.3em 0;
}
@media (min-width: 1113px) {
    .our-work.component .container .inside .top .p p {
        font-size: 1.2rem;
    }
}
@media (min-width: 1113px) {
    .our-work.component .container .inside .cards {
        padding-top: 5vmin;
    }
}
.our-work.component .container .inside .cards .card {
    margin-bottom: 70px;
}
.our-work.component .container .inside .cards .card .parent {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 30px;
}
.our-work.component .container .inside .cards .card:nth-child(even) .parent {
    flex-direction: row-reverse;
}
.our-work.component .container .inside .cards .card .parent .child {
    -webkit-box-flex: 0;
    flex: 0 0 1;
    max-width: 100%;
    color: #ffffff;
}
@media (min-width: 1113px) {
    .our-work.component .container .inside .cards .card .parent .child {
        -webkit-box-flex: 0;
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
    .our-work.component .container .inside .cards .card .parent {
        flex-wrap: nowrap;
    }
}
.our-work.component .container .inside .cards .card .parent .child.images-child .images {
    position: relative;
}
@media (max-width: 1112px) {
    .our-work.component .container .inside .cards .card .parent {
        gap: 0;
    }
    .our-work.component .container .inside .cards .card .parent .child {
        margin-bottom: 30px;
    }
}
.our-work.component .container .inside .cards .card .parent .child.images-child .images::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    opacity: .5;
    background: linear-gradient(236deg, #03d7ff 8.89%, #01a5ff 99.34%);
}
.our-work.component .container .inside .cards .card .parent .child.images-child .images {
    text-align: center;
    .img-1 {
        line-height: 0;
    }
    .img-1 img {
        width: 100%;
        max-width: 100%;
        height: 100%;
        object-position: center;
    }
    .img-2 img {
        position: absolute;
        z-index: 4;
        bottom: 20px;
        left: 20px;
        max-width: 220px;
    }
    .img-3 {
        position: absolute;
        width: 80%;
        left: 50%;
        transform: translateX(-40%);
        top: 12px;
        bottom: 12px;
        z-index: 2;
    }
    .img-3 img {
            position: absolute;
        height: auto;
        max-height: 100%;
        -o-object-fit: contain;
        object-fit: contain;
        inset: 0;
        z-index: 2;
    }
}
.our-work.component .container .inside .cards .card:nth-child(even) .parent .child.images-child .images .img-2 img {
    left: auto;
    right: 20px;
}
@media (max-width: 1111px) {
    .our-work.component .container .inside .cards .card:nth-child(even) .parent .child.images-child .images .img-2 img {
        right: 10px;
    }
}
@media (min-width: 575px) {
    .our-work.component .container .inside .cards .card .parent .child.images-child .images {
        .img-1 img {
            max-width: 100%;
        }
    }
}
@media (max-width: 1112px) {
    .our-work.component .container .inside .cards .card .parent .child.images-child .images .img-2 img {
        left: 10px;
        bottom: 10px;
        max-width: 35%;
    }
}
.our-work.component .container .inside .cards .card .parent .child.text-child .content .text {
    .h h3 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 0.5em;
        font-weight: 700;
        color: transparent;
        background: linear-gradient(100deg,#04e4ff 1.4%,#009cff 67.99%,#009cff 98.26%);
        background-clip: text;
    }
    .p p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5em;
        font-weight: 400;
    }
    .actions {
        display: flex;
        align-items: center;
        gap: 3vw;
    }
    .actions .action a {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        color: #ffffff;
        width: max-content;
    }
    .actions .action a:hover svg {
        transform: translateX(7px);
    }
    .actions .action.launch a {
        color: #04E4FF;
    }
    .actions .action a span {
        text-transform: uppercase;
        font-weight: 700;
        font-size: 18px;
    }
}
@media (max-width: 575px) {
    .our-work.component .container .inside .cards .card .parent .child.text-child .content .text .actions {
        flex-direction: column;
        /* justify-content: flex-start; */
        align-items: flex-start;
        gap: 20px;
    }
}
/* Industry */
.industry.component {
    background-color: #00042a;
}
.industry.component .inside .main-top {
    display: none;
}
@media (min-width: 1113px) {
    .industry.component {
        padding-top: 0;
        padding-bottom: 0;
        background-color: #ffffff;
    }
}
@media (max-width: 1113px) {
    .industry.component .inside .main-top {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}
.industry.component .inside .main-top .sub-title p {
    color: #00B9FF;
    line-height: 1.2;
    letter-spacing: 1.1px;
    margin-bottom: 0.3em;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 15px;
}
.industry.component .inside .main-top .main-h h2 {
    color: #ffffff;
    font-size: clamp(30px, calc(2.5vw + 1.5rem), 2.9rem);
}
.industry.component .inside .parent {
    display: flex;
    justify-content: center;
}
.industry.component .inside .parent .child {
    position: relative;
    flex-basis: 50%;
    max-width: 50%;
    display: flex;
    flex-direction: column;
}
.industry.component .inside .parent .child.left-child {
    background: linear-gradient(0deg, rgba(0, 156, 255, .15) 0, rgba(255, 255, 255, 0) 100%);
    justify-content: flex-end;
    padding-top: 28vmin;
    padding-bottom: 3.5rem;
    padding-left: 50px;
    display: none;
}
@media (min-width: 1113px) {
    .industry.component .inside .parent .child.left-child {
        padding-right: 5px;
        display: flex;
    }
}
.industry.component .inside .parent .child.left-child .content .text .top {
    text-align: center;
    width: 100%;
    top: 5rem;
    position: absolute;
    z-index: 4;
    margin-top: 0;
    letter-spacing: 0;
    line-height: 1.2;
}
@media (min-width: 1113px) {
    .industry.component .inside .parent .child.left-child .content .text .top {
        margin-bottom: clamp(40px, 8vmin, 80px);
        transform: translateX(40%);
    }
}
.industry.component .inside .parent .child.left-child .content .text .top .sub-title p {
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    margin-bottom: 0.3em;
    font-weight: 700;
}
@media (min-width: 1113px) {
    .industry.component .inside .parent .child.left-child .content .text .top .sub-title p {
        font-size: 1.1rem;
        background: linear-gradient(90deg, #1B2C5C 53%, #ffffff 53%);
        color: transparent;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        mix-blend-mode: normal;
    }
}
.industry.component .inside .parent .child.left-child .content .text .top .main-h h2 {
    margin-bottom: 15px;
    line-height: 1.2;
    font-size: clamp(30px, calc(2.5vw + 1.5rem), 2.5rem);
}
@media (min-width: 1113px) {
    .industry.component .inside .parent .child.left-child .content .text .top .main-h h2 {
        background: linear-gradient(90deg, #1B2C5C 53%, #ffffff 53%);
        color: transparent;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        mix-blend-mode: normal;
    }
}
.industry.component .inside .parent .child.left-child .content .text .inner-content .types {
    height: 321px;
    padding-right: 8px;
    overflow-y: auto;
}
.industry.component .inside .parent .child.left-child .content .text .inner-content .types::-webkit-scrollbar {
    width: 10px;
    height: 8px;
}
.industry.component .inside .parent .child.left-child .content .text .inner-content .types::-webkit-scrollbar-track {
    background: #a7b9cf;
    border-radius: 10px;
}
.industry.component .inside .parent .child.left-child .content .text .inner-content .types::-webkit-scrollbar-thumb {
    background: #1b2c5c;
    border-radius: 10px;
}
.industry.component .inside .parent .child.left-child .content .text .inner-content .types .type {
    position: relative;
    cursor: pointer;
    text-align: left;
    border: 0;
    font-size: 1.7rem;
    font-weight: 900;
    line-height: 120%;
    max-width: 736px;
    width: 100%;
    min-height: 64px;
    text-transform: none;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 3rem 1rem 0;
}
.industry.component .inside .parent .child.left-child .content .text .inner-content .types .type::after {
    content: " ";
    position: absolute;
    bottom: -4px;
    left: 0;
    z-index: 1;
    width: 0;
    height: 4px;
    border-radius: 8px;
    background: linear-gradient(90deg, #4992f3 0, #1f175b 100%);
    -webkit-transition: width .3s, opacity .3s;
    transition: width .3s, opacity .3s;
}
.industry.component .inside .parent .child.left-child .content .text .inner-content .types .type.active::after {
    width: 100%;
}
.industry.component .inside .parent .child.left-child .content .text .inner-content .types .type .number span {
    transform: scaleX(1.05);
    letter-spacing: -1px;
    font-size: 2.5rem;
    font-weight: bolder;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #000;
    color: transparent;
}
.industry.component .inside .parent .child.left-child .content .text .inner-content .types .type .title span {
    background: 0 0;
    color: #1B2C5C;
}
.industry.component .inside .parent .child.left-child .content .text .inner-content .types .type.active span {
    background: linear-gradient(98deg, #4992f3 1.78%, #9536e5 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: unset;
    -webkit-text-stroke-color: unset;
}
.industry.component .inside .parent .child.right-child .boxes {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    height: 100%;
}
@media (min-width: 1112px) {
    .industry.component .inside .parent .child.right-child .boxes {
        min-height: clamp(630px, 82vh, 880px);
        padding: 3.5rem;
        padding-top: 28vmin;
    }
}
.industry.component .inside .parent .child.right-child .boxes::after {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    background: rgba(31, 23, 90, .8);
    z-index: 1;
}
.industry.component .inside .parent .child.right-child .boxes .box {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}
@media (min-width: 1112px) {
    .industry.component .inside .parent .child.right-child .boxes .box {
        display: none;
    }
    .industry.component .inside .parent .child.right-child .boxes .box.active {
        display: flex;
    }
}
.industry.component .inside .parent .child.right-child .boxes .box .inbox .box-content .inner-content {
    color: #ffffff;
    .h {
       display: none;
    }
    .bg img {
        position: absolute;
        inset: 0;
        -o-object-fit: cover;
        object-fit: cover;
        display: block;
        width: 100%;
        height: 100%;
        -o-object-position: center;
        object-position: center;
    }
    .text {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        width: 100%;
        max-width: 736px;
        color: #ffffff;
    }
    .text .text-box {
        display: flex;
        flex-direction: column;
        gap: 1em;
    }
    .text .text-box .p p {
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.6;
    }
}
@media (min-width: 1113px) {
    .industry.component .inside .parent .child.right-child .boxes .box .inbox .box-content .inner-content {
        .text {
            max-width: 632px;
            margin-right: auto;
        }
    }
}
@media (max-width: 1113px) {
    .industry.component .inside .parent .child {
        max-width: 100%;
        flex-basis: 100%;
    }
    .industry.component .inside .parent .child.right-child .boxes::after {
        opacity: 0;
        display: none;
    }
    .industry.component .inside .parent .child.right-child .boxes .box {
        justify-content: center;
        width: 100%;
        padding: 2.5rem;
        height: auto;
        text-align: center;
    }
    .industry.component .inside .parent .child.right-child .boxes .box .inbox {
        width: 100%;
    }
    .industry.component .inside .parent .child.right-child .boxes .box .inbox .box-content .inner-content {
        .bg {
            display: none;
        }
        .h {
            display: flex;
            justify-self: center;
            align-items: center;
            gap: 10px;
            margin-bottom: 1em;
        }
        .h span,
        .h h3 {
            font-size: 1.8rem;
            line-height: 1.2;
            font-weight: 700;
            color: #ffffff; 
        }
        .text {
            width: 100%;
            max-width: 100%;
        }
        .text .text-box .p p {
            font-size: 1.18rem;
        }
        .text .action-button {
            margin: 0 auto;
        }
    }
}
/* Case Studies */
.case.component {
    padding: 0;
}
.case.component .container {
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 100%;
}
.case.component .container .inside .parent {
    display: flex;
}
.case.component .container .inside .parent .left-child {
    position: relative;
    z-index: 1;
    width: 35%;
    padding: 12vmin 0 17vmin 15px;
    background-color: #fff;
}
@media (max-width: 1112px) {
    .case.component .container .inside .parent .left-child {
        display: none;
    }
}
.case.component .container .inside .parent .left-child .bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.case.component .container .inside .parent .left-child .bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 17, 64, 0.6), rgba(0, 17, 64, 0.6));
}
.case.component .container .inside .parent .left-child .bg img {
    display: none;
}
.case.component .container .inside .parent .left-child .bg img.active {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.case.component .container .inside .parent .left-child .heading-title {
    width: 100%;
    text-align: center;
    color: #1B2C5C;
    color: #fff;
    position: relative;
}
.case.component .container .inside .parent .left-child .heading-title h2 {
    position: relative;
    z-index: 1;
    font-size: 3.5rem;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #ffffff 50%, #1B2C5C 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    mix-blend-mode: normal;
}
@media (min-width: 1113px) {
    .case.component .container .inside .parent .left-child .heading-title {
        margin-bottom: clamp(40px, 8vmin, 80px);
        letter-spacing: -0.03em;
        text-align: left;
        transform: translateX(94%);
        width: 70%;
        margin-top: -10px;
    }
}
.case.component .container .inside .parent .left-child .tab-list {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
    gap: 0;
}
.case.component .container .inside .parent .left-child .tab-list .tab {
    margin: 20px 0;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    transition: all .3s ease-in-out;
}
.case.component .container .inside .parent .left-child .tab-list .tab .brand-logo {
    width: 100%;
}
.case.component .container .inside .parent .left-child .tab-list .tab .brand-logo img {
    width: 60%;
    max-width: 100%;
}
.case.component .container .inside .parent .left-child .tab-list .tab .border-bottom {
    width: 100%;
    height: 1px;
    background-color: #fff;
    transition: 0.3s all ease-in-out;
}
.case.component .container .inside .parent .left-child .tab-list .tab.active .border-bottom {
    width: 130%;
    height: 3px;
    background-color: #04E4FF;
}
.case.component .container .inside .parent .left-child .tab-list .tab:hover .border-bottom {
    width: clamp(130%, 150%, 18vw);
    height: 3px;
    background-color: #04E4FF;
}
.case.component .container .inside .parent .right-child {
    position: relative;
    width: 100%;
    padding-top: 12vmin;
    padding-bottom: 8vmin;
    background-color: #dcf1ff;
}
@media (min-width: 1112px) {
    .case.component .container .inside .parent .right-child {
        width: 65%;
        padding-right: 5%;
        padding-left: 5%;
    }
}
.case.component .container .inside .parent .right-child .case-list {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.case.component .container .inside .parent .right-child .case-list .top {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: end;
}
.case.component .container .inside .parent .right-child .case-list .top .text {
    width: 100%;
    margin-bottom: 15px;
}
@media (min-width: 1112px) {
    .case.component .container .inside .parent .right-child .case-list .top .text {
        width: 85%;
    }
}
.case.component .container .inside .parent .right-child .case-list .top .text p {
    color: #1B2C5C;
    font-size: 4vmin;
    font-weight: 400;
}
@media (min-width: 1113px) and (max-width: 1660px) {
    .case.component .container .inside .parent .right-child .case-list .top .text p {
        margin-bottom: 5px;
    }
}
.case.component .container .inside .parent .right-child .case-list .top .text .media-title {
    display: none;
}
@media (max-width: 1113px) {
    .case.component .container .inside .parent .right-child .case-list .top {
        text-align: center;
        align-items: center;
    }
    .case.component .container .inside .parent .right-child .case-list .top .text {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .case.component .container .inside .parent .right-child .case-list .top .text p {
        font-size: 18px;
    }
    .case.component .container .inside .parent .right-child .case-list .top .text .media-title {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
.case.component .container .inside .parent .right-child .case-list .top .text .media-title h2 {
    font-size: 2.5rem;
    color: #1B2C5C;
    padding-bottom: 10px;
}
@media (max-width: 575px) {
    .case.component .container .inside .parent .right-child .case-list .top .text .media-title h2 {
        font-size: 2.0rem;
    }
}
.case.component .container .inside .parent .right-child .case-list .cases {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}
.case.component .container .inside .parent .right-child .case-list .cases .case-item {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}
.case.component .container .inside .parent .right-child .case-list .cases .case-item.active {
    opacity: 1;
    pointer-events: all;
    position: relative;
    z-index: 1;
    transform: translateY(0);
}
.case.component .container .inside .parent .right-child .case-list .cases .case-item .media {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 210px;
    max-width: 430px;
    margin: 0 auto;
    cursor: pointer;
}
@media (max-width: 1113px) {
    .case.component .container .inside .parent .right-child .case-list {
        max-width: 550px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .case.component .container .inside .parent .right-child .case-list .cases {
        gap: 0;
    }
    .case.component .container .inside .parent .right-child .case-list .cases .case-item {
        position: relative;
        opacity: 1;
        pointer-events: all;
        position: relative;
        z-index: 1;
        transform: translateY(0);
        min-height: 210px;
    }
    .case.component .container .inside .parent .right-child .case-list .cases .case-item .media {
        display: block;
    }
    .case.component .container .inside .parent .right-child .case-list .cases .case-item.active .media {
        display: block;
        margin-bottom: 20px;
    }
}
.case.component .container .inside .parent .right-child .case-list .cases .case-item .media .bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #ebf7ff;
    /* z-index: -1; */
}
.case.component .container .inside .parent .right-child .case-list .cases .case-item .media .bg .img {
    width: 100%;
    height: 100%;
}
.case.component .container .inside .parent .right-child .case-list .cases .case-item .media img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.case.component .container .inside .parent .right-child .case-list .cases .case-item .media .toggle-case {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 17, 64, 0.6), rgba(0, 17, 64, 0.6));
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
    align-items: center;
}
.case.component .container .inside .parent .right-child .case-list .cases .case-item .media .toggle-case .brand-logo {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.case.component .container .inside .parent .right-child .case-list .cases .case-item .media .toggle-case .brand-logo img {
    width: 200px;
}
.case.component .container .inside .parent .right-child .case-list .cases .case-item .media .toggle-case .c-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #fff;
    cursor: pointer;
}
.case.component .container .inside .parent .right-child .case-list .cases .case-item .media .toggle-case .c-toggle .open-case,
.case.component .container .inside .parent .right-child .case-list .cases .case-item .media .toggle-case .c-toggle .close-case {
    font-size: 18px;
    font-weight: 500;
}
.case.component .container .inside .parent .right-child .case-list .cases .case-item .media:hover .open-case,
.case.component .container .inside .parent .right-child .case-list .cases .case-item .media:hover .close-case {
    text-shadow: -2px 0px 5px rgba(24, 151, 227, 0.98), 2px 3px 5px #1baaff, 3px 0px 5px #1baaff, -3px -2px 5px #1baaff;
}
.case.component .container .inside .parent .right-child .case-list .cases .case-item .media .toggle-case .c-toggle .open-case {
    display: flex;
    justify-content: center;
    align-items: center;
}
.case.component .container .inside .parent .right-child .case-list .cases .case-item.active .media .toggle-case .c-toggle .open-case {
    display: none;
}
.case.component .container .inside .parent .right-child .case-list .cases .case-item .media .toggle-case .c-toggle .close-case {
    display: none;
}
.case.component .container .inside .parent .right-child .case-list .cases .case-item.active .media .toggle-case .c-toggle .close-case {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.case.component .container .inside .parent .right-child .case-list .cases .case-item.active .media .toggle-case .c-toggle .close-case::before,
.case.component .container .inside .parent .right-child .case-list .cases .case-item.active .media .toggle-case .c-toggle .close-case::after {
    content: " ";
    position: absolute;
    background-color: #fff;
    height: 2px;
    width: 40px;
    top: 50%;
    transform: translateY(-50%);
}
.case.component .container .inside .parent .right-child .case-list .cases .case-item.active .media .toggle-case .c-toggle .close-case::before {
    left: -80px;
}
.case.component .container .inside .parent .right-child .case-list .cases .case-item.active .media .toggle-case .c-toggle .close-case::after {
    right: -80px;
}
.case.component .container .inside .parent .right-child .case-list .cases .case-item.active .media .toggle-case .c-toggle .arrow-toggle-case {
    display: flex;
    justify-content: center;
    align-items: center;
}
.case.component .container .inside .parent .right-child .case-list .cases .case-item .media .toggle-case .c-toggle .arrow-toggle-case svg {
    width: 10px;
    rotate: 90deg;
}
.case.component .container .inside .parent .right-child .case-list .cases .case-item.active .media .toggle-case .c-toggle .arrow-toggle-case svg {
    rotate: -90deg;
}
@media (max-width: 1113px) {
    .case.component .container .inside .parent .right-child .case-list .cases .case-item .case-body {
        display: none;
    }
    .case.component .container .inside .parent .right-child .case-list .cases .case-item.active .case-body {
        display: block;
    }
}
.case.component .container .inside .parent .right-child .case-list .cases .case-item .case-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media (min-width: 1112px) {
    .case.component .container .inside .parent .right-child .case-list .cases .case-item .case-top {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}
.case.component .container .inside .parent .right-child .case-list .cases .case-item .case-top .brand-logo {
    transform: translateX(-20px);
    opacity: 0;
    transition: all .5s ease-in-out;
}
.case.component .container .inside .parent .right-child .case-list .cases .case-item.active .case-top .brand-logo {
    transform: translateX(-0px);
    opacity: 1;
}
.case.component .container .inside .parent .right-child .case-list .cases .case-item .case-top .brand-logo img {
    filter: invert(1);
    width: 100%;
    max-width: 200px;
}
.case.component .container .inside .parent .right-child .case-list .cases .case-item .case-top .separator {
    width: 20px;
    height: 2px;
    background-color: #1B2C5C;
    margin: 1.5em;
    flex: 1 0 20%;
    display: block;
    align-self: center;
    width: 15%;
    background-color: #04E4FF;
    transition: all 0.5s ease-in-out;
    opacity: 0;
    transform: translateY(20px);
}
@media (max-width: 1113px) {
    .case.component .container .inside .parent .right-child .case-list .cases .case-item .case-top .brand-logo {
        display: none;
    }
    .case.component .container .inside .parent .right-child .case-list .cases .case-item.active .case-top .separator {
        display: none;
    }
}
.case.component .container .inside .parent .right-child .case-list .cases .case-item.active .case-top .separator {
    opacity: 1;
    transform: translateY(0);
}
.case.component .container .inside .parent .right-child .case-list .cases .case-item .case-top .p {
    font-size: 18px;
    transform: translateX(20px);
    opacity: 0;
    color: #1B2C5C;
    transition: all .5s ease-in-out;
}
@media (max-width: 1113px) {
    .case.component .container .inside .parent .right-child .case-list .cases .case-item .case-top {
        justify-content: center;
    }
    .case.component .container .inside .parent .right-child .case-list .cases .case-item .case-top .p {
        text-align: center;
    }
}
.case.component .container .inside .parent .right-child .case-list .cases .case-item.active .case-top .p {
    transform: translateX(0);
    opacity: 1;
}
@media (min-width: 1113px) and (max-width: 1660px) {
    .case.component .container .inside .parent .right-child .case-list .cases .case-item .case-top .p {
        font-size: 17px;
    }
}
@media (min-width: 1113px) {
    .case.component .container .inside .parent .right-child .case-list .cases .case-item .case-top .p {
        max-width: 45%;
        margin-bottom: 0;
        align-self: end;
    }
}
.case.component .container .inside .parent .right-child .case-list .cases .case-item .case-numbers .both {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 32px;
}
@media (min-width: 575px) {
    .case.component .container .inside .parent .right-child .case-list .cases .case-item .case-numbers .both {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin-bottom: 2.5rem;
        width: 95%;
        gap: 5%;
    }
}
.case.component .container .inside .parent .right-child .case-list .cases .case-item .case-numbers .both .c-number {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.case.component .container .inside .parent .right-child .case-list .cases .case-item .case-numbers .both .c-number:first-child {
    transform: translateX(-20px);
    transition: 0.5s all ease-in-out;
}
.case.component .container .inside .parent .right-child .case-list .cases .case-item .case-numbers .both .c-number:last-child {
    transform: translateX(20px);
    transition: 0.5s all ease-in-out;
}
.case.component .container .inside .parent .right-child .case-list .cases .case-item.active .case-numbers .both .c-number:last-child,
.case.component .container .inside .parent .right-child .case-list .cases .case-item.active .case-numbers .both .c-number:first-child {
    transform: translateX(0);
}
.case.component .container .inside .parent .right-child .case-list .cases .case-item .case-numbers .both .c-number p:first-child {
    font-size: 8.5rem;
    line-height: 1;
    font-weight: 500;
    white-space: nowrap;
    background: linear-gradient(#04E4FF 0%, #009CFF 100%);
    text-shadow: none;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    mix-blend-mode: normal;
    line-height: 1.2;
}
@media (min-width: 576px) and (max-width: 1660px) {
    .case.component .container .inside .parent .right-child .case-list .cases .case-item .case-numbers .both .c-number p:first-child {
        font-size: 9rem;
    }
}
.case.component .container .inside .parent .right-child .case-list .cases .case-item .case-numbers .both .c-number p:first-child span {
    font-size: 0.46em;
    display: inline-block;
    width: 0.46em;
    text-indent: -30px;
}
@media (min-width: 576px) and (max-width: 1660px) {
    .case.component .container .inside .parent .right-child .case-list .cases .case-item .case-numbers .both .c-number p:first-child span {
        text-indent: -35px;
    }
}
.case.component .container .inside .parent .right-child .case-list .cases .case-item .case-numbers .both .c-number p:last-child {
    width: 45%;
    margin: 0 auto;
    font-size: clamp(20px, 1.1rem, 22px);
    text-align: center;
    font-weight: bold;
}
@media (min-width: 576px) {
    .case.component .container .inside .parent .right-child .case-list .cases .case-item .case-numbers .both .c-number p:last-child {
        width: 78%;
    }
}
@media (max-width: 575px) {
    .case.component .container .inside .parent .right-child .case-list .cases .case-item .case-numbers .both .c-number {
        width: 100%;
    }
    .case.component .container .inside .parent .right-child .case-list .cases .case-item .case-numbers .both .c-number p:first-child {
        width: 100%;
        text-align: center;
    }
    .case.component .container .inside .parent .right-child .case-list .cases .case-item .case-numbers .both .c-number p:first-child span {
        text-indent: -30px;
    }
    .case.component .container .inside .parent .right-child .case-list .cases .case-item .case-numbers .both .c-number p:last-child {
        width: 75%;
        text-align: center;
        margin: 0 auto;
    }
}
@media (max-width: 1113px) {
    .case.component .container .inside .parent .right-child .case-list .custom-plan {
        margin: 0 auto;
        margin-top: 50px;
    }
}
/* CMS */
.cms.component {
    padding: 0;
    margin: 0;
    background: linear-gradient(180deg, rgba(65, 181, 255, 0.37) 0%, rgba(65, 181, 255, 0) 68.46%), #FFF;
    overflow: hidden;
}
.cms.component .container .inside .parent {
    display: flex;
    justify-content: center;
}
.cms.component .container .inside .parent .child {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    flex: 1 1 auto;
}
@media (min-width: 1113px) {
    .cms.component .container .inside .parent .child {
        max-width: 50%;
    }
    .cms.component .container .inside .parent .child.left-child {
        padding: 30px;
        padding-bottom: 0;
    }
}
@media (max-width: 1112px) {
    .cms.component .container .inside .parent {
        flex-direction: column;
        padding-top: 20px;
    }
}
.cms.component .container .inside .parent .child.left-child .main {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
}
@media (min-width: 1113px) {
    .cms.component .container .inside .parent .child.left-child .main {
        padding-top: 5vmin;
    }
}
.cms.component .container .inside .parent .child.left-child .main .main-h {
    margin-bottom: 15px;
    display: flex;
    justify-content: flex-start;
}
.cms.component .container .inside .parent .child.left-child .main .main-h h3 {
    line-height: 1.2;
    font-weight: 700;
    font-size: clamp(30px, calc(2.2vw + 1.5rem), 2.9rem);
    margin-bottom: 15px;
    color: #1B2C5C;
}
.cms.component .container .inside .parent .child.left-child .main .p {
    margin-bottom: 1.5em;
}
.cms.component .container .inside .parent .child.left-child .main .p p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #1B2C5C;
}
@media (max-width: 1112px) {
    .cms.component .container .inside .parent .child.left-child .main .p p {
        font-size: 18px;
    }
}
.cms.component .container .inside .parent .child.right-child .web-types .types .type {
    position: relative;
    border-left: 7px solid;
    padding: 50px 0px 50px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 12px;
}
@media (min-width: 768px) {
    .cms.component .container .inside .parent .child.right-child .web-types .types .type {
        gap: 42px;
        padding: 50px 30px 50px 0;
    }
}
@media (max-width: 767px) {
    .cms.component .container .inside .parent .child.right-child .web-types .types .type {
        margin-left: -15px;
    }
}
@media (max-width: 575px) {
    .cms.component .container .inside .parent .child.right-child .web-types .types .type {
        align-items: flex-start;
    }
}
.cms.component .container .inside .parent .child.right-child .web-types .types .type.wordpress {
    border-color: #3B7BCE;
}
.cms.component .container .inside .parent .child.right-child .web-types .types .type.shopify {
    border-color: #95BF47;
}
.cms.component .container .inside .parent .child.right-child .web-types .types .type.magento {
    border-color: #F26322;
}
.cms.component .container .inside .parent .child.right-child .web-types .types .type::after {
    content: "";
    inset: 0 auto 0 0;
    width: 100%;
    opacity: 0;
    transition: all 0.3s;
    position: absolute;
    z-index: 0;
}
@media (min-width: 1113px) {
    .cms.component .container .inside .parent .child.right-child .web-types .types .type:hover::after {
        opacity: 1;
        width: 55vw;
    }
}
.cms.component .container .inside .parent .child.right-child .web-types .types .type.wordpress::after {
    background: linear-gradient(270deg, #3B7BCE 0%, #a1caff 87.41%);
}
.cms.component .container .inside .parent .child.right-child .web-types .types .type.shopify::after {
    background: linear-gradient(270deg, #95BF47 0%, #DBFF8D 87.41%);
}
.cms.component .container .inside .parent .child.right-child .web-types .types .type.magento::after {
    background: linear-gradient(270deg, #F26322 0%, #ffb593 87.41%);
}
.cms.component .container .inside .parent .child.right-child .web-types .types .type .image {
    min-width: 32px;
    position: relative;
    z-index: 1;
    width: 100%;
}
@media (min-width: 576px) {
    .cms.component .container .inside .parent .child.right-child .web-types .types .type .image {
        max-width: 20%;
        max-width: 122px;
    }
}
@media (max-width: 575px) {
    .cms.component .container .inside .parent .child.right-child .web-types .types .type .image {
        max-width: 38px;
        transform: translateY(-15px);
        max-height: fit-content;
    }
    .cms.component .container .inside .parent .child.right-child .web-types .types .type .image img {
        max-height: fit-content;
    }
}
.cms.component .container .inside .parent .child.right-child .web-types .types .type .type-body {
    position: relative;
    z-index: 1
}
.cms.component .container .inside .parent .child.right-child .web-types .types .type .type-body .text .h h4 {
    margin-bottom: 0.5em;
    line-height: 1.2;
    font-weight: 700;
    font-size: clamp(28px, calc(2.2vw + 1.5rem), 1.7rem);
    color: #1B2C5C;
}
.cms.component .container .inside .parent .child.right-child .web-types .types .type .type-body .text .p p {
    line-height: 1.6;
    font-weight: 400;
    font-size: 16px;
    color: #1B2C5C;
}
@media (max-width: 1112px) {
    .cms.component .container .inside .parent .child.right-child .web-types .types .type .type-body .text .p p {
        font-size: 18px;
    }
}
@media (max-width: 575px) {
    .cms.component .container .inside .parent .child.right-child .web-types .types .type .type-body .text .p p {
        margin-top: 30px;
        margin-left: -32px;
    }
}
.cms.component .container .inside .parent .child.right-child .web-types .types .type .type-body .development {
    margin-top: 1em;
}
@media (min-width: 1113px) {
    .cms.component .container .inside .parent .child.right-child .web-types .types .type .type-body .development {
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s;
    }
    .cms.component .container .inside .parent .child.right-child .web-types .types .type:hover .development {
        max-height: 100px;
        opacity: 1;
    }
}
@media (max-width: 575px) {
    .cms.component .container .inside .parent .child.right-child .web-types .types .type .development {
        margin-left: -32px;
        width: max-content;
        overflow: hidden;
    }
}
.cms.component .container .inside .parent .child.right-child .web-types .types .type .development .button {
    width: max-content;
    border: 3px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(7deg, rgb(0, 156, 255) 50%, rgb(82, 46, 244) 65%, #9537E3 80%);
}
/* Featured Website Design Projects */
.featured.component {
    background: linear-gradient(114deg, #1e3075 69.45%, #131848 211.6%);
}
.featured.component .container .inside .top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: calc(4vmin + 20px);
}
@media (min-width: 1113px) {
    .featured.component .container .inside .top {
        gap: 9vmin;
    }
}
.featured.component .container .inside .top .txt {
    margin-bottom: 15px;
    color: #fff;
    text-align: center;
}
.featured.component .container .inside .top .txt .sub-title {
    line-height: 1.4;
    letter-spacing: 1.1px;
    margin-bottom: 0.3em;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 22px;
}
.featured.component .container .inside .top .txt .h {
    line-height: 1.2;
    letter-spacing: 1.1px;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 2.3rem;
}
@media (max-width: 1660px) {
    .featured.component .container .inside .top .txt .h {
        font-size: 1.7rem;
    }
}
@media (max-width: 1112px) {
    .featured.component .container .inside .top .txt .h {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .featured.component .container .inside .top .txt .h {
        font-size: calc((4.5vw + 1.5rem) / 2);
    }
}
@media (max-width: 551px) {
    .featured.component .container .inside .top .txt .h {
        font-size: 19px;
        text-align: center;
    }
}
.featured.component .container .inside .top .txt .p {
    line-height: 1.4;
    margin: 0.3em 0;
    font-weight: 400;
    font-size: 20px;
}
@media (min-width: 1113px) {
    .featured.component .container .inside .top .txt .p {
        font-size: 1.4rem;
    }
}
.featured.component .container .inside .top .filters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-bottom: 20px;
    margin-bottom: 50px;
}
.featured.component .container .inside .top .filters .filter-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 10px 20px;
    background-color: transparent;
    border: 1px solid transparent;
    color: #fff;
    cursor: pointer;
    min-height: 130px;
    min-width: 130px;
    border-radius: 12px;
}
@media (max-width: 768px) {
    .featured.component .container .inside .top .filters {
        gap: 5px;
        padding-bottom: 20px;
        margin-bottom: 10px;
    }
    .featured.component .container .inside .top .filters .filter-button {
        gap: 15px;
        padding: 5px 10px;
        min-height: 100px;
        min-width: 100px;
    }
}
@media (max-width: 551px) {
    .featured.component .container .inside .top .filters {
        gap: 5px;
        padding-bottom: 30px;
    }
    .featured.component .container .inside .top .filters .filter-button {
        gap: 20px;
        padding: 5px 5px;
        min-height: 80px;
        min-width: 80px;
    }
}
.featured.component .container .inside .top .filters .filter-button.checked {
    background-color: #fff;
    box-shadow: 0 0 33px rgba(0,0,0,.2);
}
.featured.component .container .inside .top .filters .filter-button p {
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
}
@media (max-width: 768px) {
    .featured.component .container .inside .top .filters .filter-button p {
        font-size: 0.9rem;
    }
}
.featured.component .container .inside .top .filters .filter-button.checked p {
    color: #1B2C5C;
}
.featured.component .container .inside .top .filters .filter-button:hover p {
    color: var(--secondary-color3);
}
.featured.component .container .inside .top .filters .filter-button.checked:hover p {
    color: #1B2C5C;
}
.featured.component .container .inside .top .filters .filter-button img {
    opacity: 0;
    width: 10px;
    rotate: 90deg;
}
.featured.component .container .inside .top .filters .filter-button.checked img {
    opacity: 1;
}
.featured.component .container .inside .parent {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}
.featured.component .container .inside .parent .child {
    flex-basis: calc(50% - 12.5px);
}
@media (max-width: 768px) {
    .featured.component .container .inside .parent .child {
        flex-basis: 90%;
        margin: 0 auto;
    }
}
.featured.component .container .inside .main-button {
    margin: 0 auto;
    margin-top: 40px;
}
.featured.component .container .inside .main-button::before {
    content: "";
    position: absolute;
    inset: -1px;
    background: linear-gradient(94deg, #009cff -2.26%, #9536e5 63.14%);
    -webkit-filter: blur(9px);
    filter: blur(9px);
    z-index: -1;
    pointer-events: none;
}
/* Featured & Our Work */
.featured.component.featured-our-work {
    background: linear-gradient(114deg, #1e3075 69.45%, #131848 211.6%);
}
.featured.component.featured-our-work .container .inside .top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: calc(4vmin + 20px);
}
@media (min-width: 1113px) {
    .featured.component.featured-our-work .container .inside .top {
        gap: 9vmin;
    }
}
.featured.component.featured-our-work .container .inside .top .txt {
    margin-bottom: 15px;
    color: #fff;
    text-align: center;
}
.featured.component.featured-our-work .container .inside .top .txt .sub-title {
    line-height: 1.4;
    letter-spacing: 1.1px;
    margin-bottom: 0.3em;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 22px;
}
.featured.component.featured-our-work .container .inside .top .txt .h {
    line-height: 1.2;
    letter-spacing: 1.1px;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 2.3rem;
}
@media (max-width: 1660px) {
    .featured.component.featured-our-work .container .inside .top .txt .h {
        font-size: 1.7rem;
    }
}
@media (max-width: 1112px) {
    .featured.component.featured-our-work .container .inside .top .txt .h {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .featured.component.featured-our-work .container .inside .top .txt .h {
        font-size: calc((4.5vw + 1.5rem) / 2);
    }
}
@media (max-width: 551px) {
    .featured.component.featured-our-work .container .inside .top .txt .h {
        font-size: 19px;
        text-align: center;
    }
}
.featured.component.featured-our-work .container .inside .top .txt .p {
    line-height: 1.4;
    margin: 0.3em 0;
    font-weight: 400;
    font-size: 20px;
}
@media (min-width: 1113px) {
    .featured.component.featured-our-work .container .inside .top .txt .p {
        font-size: 1.4rem;
    }
}
.featured.component.featured-our-work .container .inside .top .filters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-bottom: 20px;
    margin-bottom: 50px;
}
.featured.component.featured-our-work .container .inside .top .filters .filter-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 10px 20px;
    background-color: transparent;
    border: 1px solid transparent;
    color: #fff;
    cursor: pointer;
    min-height: 130px;
    min-width: 130px;
    border-radius: 12px;
}
@media (max-width: 768px) {
    .featured.component.featured-our-work .container .inside .top .filters {
        gap: 5px;
        padding-bottom: 20px;
        margin-bottom: 10px;
    }
    .featured.component.featured-our-work .container .inside .top .filters .filter-button {
        gap: 15px;
        padding: 5px 10px;
        min-height: 100px;
        min-width: 100px;
    }
}
@media (max-width: 551px) {
    .featured.component.featured-our-work .container .inside .top .filters {
        gap: 5px;
        padding-bottom: 30px;
    }
    .featured.component.featured-our-work .container .inside .top .filters .filter-button {
        gap: 20px;
        padding: 5px 5px;
        min-height: 80px;
        min-width: 80px;
    }
}
.featured.component.featured-our-work .container .inside .top .filters .filter-button.checked {
    background-color: #fff;
    box-shadow: 0 0 33px rgba(0,0,0,.2);
}
.featured.component.featured-our-work .container .inside .top .filters .filter-button p {
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
}
@media (max-width: 768px) {
    .featured.component.featured-our-work .container .inside .top .filters .filter-button p {
        font-size: 0.9rem;
    }
}
.featured.component.featured-our-work .container .inside .top .filters .filter-button.checked p {
    color: #1B2C5C;
}
.featured.component.featured-our-work .container .inside .top .filters .filter-button:hover p {
    color: var(--secondary-color3);
}
.featured.component.featured-our-work .container .inside .top .filters .filter-button.checked:hover p {
    color: #1B2C5C;
}
.featured.component.featured-our-work .container .inside .top .filters .filter-button img {
    opacity: 0;
    width: 10px;
    rotate: 90deg;
}
.featured.component.featured-our-work .container .inside .top .filters .filter-button.checked img {
    opacity: 1;
}
.featured.component.featured-our-work .container .inside .parent {
    display: flex;
    flex-direction: column;
    /* flex-wrap: wrap; */
    gap: 25px;
}
.featured.component.featured-our-work .container .inside .parent .child {
    margin-bottom: 70px;
}
.featured.component.featured-our-work .container .inside .parent .child .in-card {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 30px;
}
.featured.component.featured-our-work .container .inside .parent .child:nth-child(even) .in-card {
    flex-direction: row-reverse;
}
.featured.component.featured-our-work .container .inside .parent .child {
    -webkit-box-flex: 0;
    flex: 0 0 1;
    max-width: 100%;
    color: #ffffff;
}
@media (min-width: 1113px) {
    .featured.component.featured-our-work .container .inside .parent .child .in-card .bar {
        -webkit-box-flex: 0;
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
    .featured.component.featured-our-work .container .inside .parent .child .in-card {
        flex-wrap: nowrap;
    }
}
.featured.component.featured-our-work .container .inside .parent .child .in-card .bar.images-bar .images {
    position: relative;
}
@media (max-width: 1112px) {
    .featured.component.featured-our-work .container .inside .parent .child .in-card {
        gap: 0;
    }
    .featured.component.featured-our-work .container .inside .parent .child .in-card .bar {
        margin-bottom: 30px;
    }
}
.featured.component.featured-our-work .container .inside .parent .child .in-card .bar.images-bar .images::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    opacity: .5;
    background: linear-gradient(236deg, #03d7ff 8.89%, #01a5ff 99.34%);
}
.featured.component.featured-our-work .container .inside .parent .child .in-card .bar.images-bar .images {
    text-align: center;
    .img-1 {
        line-height: 0;
    }
    .img-1 img {
        width: 100%;
        max-width: 100%;
        height: 100%;
        object-position: center;
    }
    .img-2 img {
        position: absolute;
        z-index: 4;
        bottom: 20px;
        left: 20px;
        max-width: 220px;
    }
    .img-3 {
        position: absolute;
        width: 80%;
        left: 50%;
        transform: translateX(-40%);
        top: 12px;
        bottom: 12px;
        z-index: 2;
    }
    .img-3 img {
            position: absolute;
        height: auto;
        max-height: 100%;
        -o-object-fit: contain;
        object-fit: contain;
        inset: 0;
        z-index: 2;
    }
}
.featured.component.featured-our-work .container .inside .parent .child:nth-child(even) .in-card .bar.images-bar .images .img-2 img {
    left: auto;
    right: 20px;
}
@media (max-width: 1111px) {
    .featured.component.featured-our-work .container .inside .parent .child:nth-child(even) .in-card .bar.images-bar .images .img-2 img {
        right: 10px;
    }
}
@media (min-width: 575px) {
    .featured.component.featured-our-work .container .inside .parent .child .in-card .bar.images-bar .images {
        .img-1 img {
            max-width: 100%;
        }
    }
}
@media (max-width: 1112px) {
    .featured.component.featured-our-work .container .inside .parent .child .in-card .bar.images-bar .images .img-2 img {
        left: 10px;
        bottom: 10px;
        max-width: 35%;
    }
}
.featured.component.featured-our-work .container .inside .parent .child .in-card .bar.text-bar .content .text {
    .h h3 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 0.5em;
        font-weight: 700;
        color: transparent;
        background: linear-gradient(100deg,#04e4ff 1.4%,#009cff 67.99%,#009cff 98.26%);
        background-clip: text;
    }
    .p p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5em;
        font-weight: 400;
    }
    .actions {
        display: flex;
        align-items: center;
        gap: 3vw;
    }
    .actions .action a {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        color: #ffffff;
        width: max-content;
    }
    .actions .action a:hover svg {
        transform: translateX(7px);
    }
    .actions .action.launch a {
        color: #04E4FF;
    }
    .actions .action a span {
        text-transform: uppercase;
        font-weight: 700;
        font-size: 18px;
    }
}
@media (max-width: 575px) {
    .featured.component.featured-our-work .container .inside .parent .child .in-card .bar.text-bar .content .text .actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}
/* Stay Ahead */
.stay-ahead.component {
    background: linear-gradient(282deg, #154485 .6%, #20074c 53.72%, #552293 123.97%);
    position: relative;
    padding-top: 4vmin;
    padding-bottom: 0;
    overflow: hidden;
}
.stay-ahead.component::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 1px;
    box-shadow: 0 0 400px 100px rgba(4, 228, 255, .81);
    background-color: rgba(4, 228, 255, .31);
    right: 26.4%;
    top: 24.6vw;
    opacity: 1;
}
.stay-ahead.component .container .inside .parent {
    display: flex;
    align-items: center;
    flex-direction: column-reverse;
    gap: 0 30px;
    flex-wrap: wrap;
}
.stay-ahead.component .container .inside .parent .child {
    flex: 1 1 auto;
    position: relative;
    z-index: 1;
}
.stay-ahead.component .container .inside .parent .child .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}
@media (min-width: 1113px) {
    .stay-ahead.component .container .inside .parent {
        flex-direction: row;
    }
    .stay-ahead.component .container .inside .parent .child {
        padding: 0;
        flex-basis: calc(50% - 15px);
        max-width: 50%;
    }
    .stay-ahead.component .container .inside .parent .child .content {
        justify-content: flex-end;
        padding-left: 20px;
    }
}
.stay-ahead.component .container .inside .parent .child .content .text {
    width: 100%;
}
.stay-ahead.component .container .inside .parent .child .content .text .h {
    margin-bottom: 15px;
}
.stay-ahead.component .container .inside .parent .child .content .text .h h3 {
    font-size: clamp(30px, calc(2vw + 1.5rem), 2.5rem);
}
.stay-ahead.component .container .inside .parent .child .content .text .p {
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0.3em 0;
}
@media (max-width: 1112px) {
    .stay-ahead.component .container .inside .parent .child .content .text {
        text-align: center;
    }
    .stay-ahead.component .container .inside .parent .child .content .text .p {
        font-size: 1.2rem;
    }
}
.stay-ahead.component .container .inside .parent .child .content .text .p span {
    background: linear-gradient(97deg, #04e4ff 1.77%, #23bef9 23.7%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    padding-right: 4px;
}
@media (min-width: 1113px) {
    .stay-ahead.component .container .inside .parent .child .content .form {
        margin: 5.6vmin 0 0;
    }
}
.stay-ahead.component .container .inside .parent .child .content .form {
    margin: 5.6vmin auto;
    max-width: 650px;
    width: 100%;
}
.stay-ahead.component .container .inside .parent .child .content .form form {
    position: relative;
    display: flex;
    /* align-items: center; */
    border: 1px solid rgba(255,255,255, .3);
    background-color: transparent;
    padding: 2px;
}
@media (max-width: 575px) {
    .stay-ahead.component .container .inside .parent .child .content .form form {
        flex-direction: column;
        text-align: center;
        border: none;
    }
}
.stay-ahead.component .container .inside .parent .child .content .form form label {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 0;
    height: 0;
    border-top: 20px solid #01afe9;
    border-right: 20px solid transparent;
    background: none;
    z-index: 2;
}
.stay-ahead.component .container .inside .parent .child .content .form form .input {
    flex: 1 0 auto;
    width: auto;
    max-width: 100%;
}
@media (max-width: 575px) {
    .stay-ahead.component .container .inside .parent .child .content .form form .input {
        border: 1px solid #01AFE9;
    }
}
.stay-ahead.component .container .inside .parent .child .content .form form .input input {
    flex: 1 0 auto;
    width: auto;
    width: 100%;
    max-width: 100%;
    border: none;
    padding: 15px 15px 13px;
    height: 60px;
    background-color: transparent;
    color: #fff;
}
@media (min-width: 1113px) {
    .stay-ahead.component .container .inside .parent .child .content .form form .input input {
        padding: 10px 15px 10px 25px;
        height: 70px;
    }
}
.stay-ahead.component .container .inside .parent .child .content .form form .input input:focus {
    outline: none;
}
.stay-ahead.component .container .inside .parent .child .content .form form .input input::placeholder {
    color: rgb(255, 255, 255, .7);
}
.stay-ahead.component .container .inside .parent .child .content .form form .submit button {
    display: inline-block;
    height: 100%;
    border: 0;
    padding: 10px 50px;
    font-size: 19px;
    font-weight: 500;
    cursor: pointer;
    background: linear-gradient(231deg, #03d7ff -16.66%, #0092e2 99.08%);
    color: #ffffff;
    transition: 0.3s all ease-in-out;
}
@media (max-width: 575px) {
    .stay-ahead.component .container .inside .parent .child .content .form form .submit {
        margin-top: 10px;
    }
    .stay-ahead.component .container .inside .parent .child .content .form form .submit button {
        width: 100%;
        padding: 15px 15px 13px;
        height: 60px;
    }
}
.stay-ahead.component .container .inside .parent .child .content .form form .submit button:hover {
    color: #423193;
}
/* One Page Blog */
.one-page-blog.component {
    background: linear-gradient(180deg, #f1f5fe 0, #fff 100%);
    background-size: 100%;
    background-repeat: no-repeat;
}
.one-page-blog.component .container .inside .top {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
    margin-inline: auto;
    color: #3B7BCE;
}
.one-page-blog.component .container .inside .top .sub-title {
    font-size: 18px;
    margin-bottom: 5px;
    line-height: 1.2;
    letter-spacing: 1.1px;
    font-weight: 700;
    font-weight: 700;
    text-transform: uppercase;
}
@media (min-width: 1113px) {
    .one-page-blog.component .container .inside .top .sub-title {
        font-size: 20px;
        letter-spacing: 1.5px;
    }
}
.one-page-blog.component .container .inside .top .main-h {
    margin-bottom: 15px;
    font-size: clamp(30px, calc(2.0vw + 1.5rem), 1.3rem);
}
.one-page-blog.component .container .inside .c-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0 30px;
    flex-wrap: wrap;
}
@media (min-width: 1112px) {
    .one-page-blog.component .container .inside .c-flex .c-child {
        padding: 30px;
    }
}
.one-page-blog.component .container .inside .c-flex .c-child .left {
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    color: #3B7BCE;
}
@media (min-width: 1113px) {
    .one-page-blog.component .container .inside .c-flex .c-child {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}
@media (max-width: 1112px) {
    .one-page-blog.component .container .inside .c-flex .c-child {
        flex: 1 1 auto;
        width: 100%;
    }
}
.one-page-blog.component .container .inside .c-flex .c-child .right p {
    margin-bottom: 1.8em;
    font-size: 1rem;
    color: #5F6568;
    font-weight: 400;
    line-height: 1.4;
}
.one-page-blog.component .blog {
    position: relative;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    padding-bottom: 10vmin;
    padding-block: 7vmin;
    font-size: clamp(18px, 1.1rem, 20px);
}
@media (min-width: 1113px) and (max-width: 1439px) {
    .one-page-blog.component .blog {
        max-width: 600px;
    }
}
@media (max-width: 1112px) {
    .one-page-blog.component .blog {
        padding-inline: 20px;
    }
}
.one-page-blog.component .blog .inner-blog .direction-box {
    background-color: #ffffff;
    margin-bottom: 3em;
    box-shadow: 0px 15px 30px rgba(27, 44, 92, 0.1);
    border-radius: 5px;
    border: none !important;
    width: 100%;
    transition: all 0.3s;
    overflow: hidden;
    display: table;
}
.one-page-blog.component .blog .inner-blog .direction-box .title-content {
    padding: 10px 22px;
    cursor: pointer;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    position: relative;
    min-height: 43px;
    color: #1B2C5C;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.45;
    text-align: left;
}
.one-page-blog.component .blog .inner-blog .direction-box .nav ul {
    padding: 0 1em 1em;
}
.one-page-blog.component .blog .inner-blog .direction-box .nav ul li {
    line-height: 1.6;
    border-top: 1px solid rgba(1,175,233, 0.3);
}
.one-page-blog.component .blog .inner-blog .direction-box .nav ul li a {
    position: relative;
    display: block;
    padding: 10px 0 10px 25px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #1B2C5C;
    transition: all 0.3s ease-in-out;
    line-height: 1.6;
}
.one-page-blog.component .blog .inner-blog .direction-box .nav ul li a:hover {
    color: #1B2C5C;
}
.one-page-blog.component .blog .inner-blog .direction-box .nav ul li a::before {
    content: " ";
    position: absolute;
    left: 0;
    top: 10px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(media/images/icons/list.svg);
    width: 20px;
    height: 15px;
    transform: translateY(20%);
}
.one-page-blog.component .blog .inner-blog .direction-box .nav ul li a::after {
    content: " ";
    position: absolute;
    inset: 0;
    background: linear-gradient(93.63deg, rgba(4, 228, 255, 0.2) 1.61%, rgba(149, 54, 229, 0.2) 98.62%);
    width: 0;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    transition: width 0.3s ease-in-out;
}
.one-page-blog.component .blog .inner-blog .direction-box .nav ul li a:hover::after {
    width: 100%;
}
.one-page-blog.component .blog .inner-blog .article {
    color: #1b2c5c;
}
.one-page-blog.component .blog .inner-blog .article p {
    margin-bottom: 1.8em;
    margin-top: 0;
    font-size: clamp(18px, 1.1rem, 20px);
    line-height: 1.6;
}
.one-page-blog.component .blog .inner-blog .article h2 {
    margin-block: 1.2em 1em;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
}
@media (min-width: 1113px) {
    .one-page-blog.component .blog .inner-blog .article h2 {
        font-size: 36px;
    }
}
.one-page-blog.component .blog .inner-blog .article h2 span {
    margin-top: -120px;
    display: inline-block;
    position: absolute;
    top: 0;
}
.one-page-blog.component .blog .inner-blog .article h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-block: 1.2em 1em;
    position: relative;
}
@media (min-width: 1113px) {
    .one-page-blog.component .blog .inner-blog .article h2 {
        font-size: 36px;
    }
}
.one-page-blog.component .blog .inner-blog .article h2 span {
    margin-top: -120px;
    display: inline-block;
    position: absolute;
    top: 0;
}
.one-page-blog.component .blog .inner-blog .article a {
    color: #1B2C5C;
    font-weight: 600;
    z-index: 2;
    border-bottom: 4px solid #8842dc;
}
.one-page-blog.component .blog .inner-blog .article ul,
.one-page-blog.component .blog .inner-blog .article ol {
    padding-left: 25px;
    margin-bottom: 2.5rem;
}
.one-page-blog.component .blog .inner-blog .article ul li,
.one-page-blog.component .blog .inner-blog .article ol li {
    position: relative;
    margin-bottom: 7px;
    font-size: clamp(18px, 1.1rem, 20px);
    line-height: 1.6;
}
.one-page-blog.component .blog .inner-blog .article ul li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: -20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 0 4px 7px;
    border-color: transparent transparent transparent #008bde;
}
/* Web Agency */
.web-agency.component {
    background-color: #00042A;
    overflow: hidden;
}
.web-agency.component .container .inside .parent {
    display: flex;
    gap: 20px;
}
.web-agency.component .container .inside .parent .child {
    flex-basis: 50%;
    max-width: 50%;
}
.web-agency.component .container .inside .parent .child-text .content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    color: #fff;
}
.web-agency.component .container .inside .parent .child-text .content .h2 {
    margin-bottom: 15px;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
}
.web-agency.component .container .inside .parent .child-text .content ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.web-agency.component .container .inside .parent .child-text .content ul li {
    display: flex;
    gap: 15px;
    align-items: center;
}
.web-agency.component .container .inside .parent .child-text .content ul li img {
    width: 22px;
}
.web-agency.component .container .inside .parent .child-text .content ul li p {
    font-size: 24px;
}
@media (max-width: 1600px) {
    .web-agency.component .container .inside .parent .child-text .content ul li p {
        font-size: 1.5vw;
    }
}
@media (max-width: 1350px) {
    .web-agency.component .container .inside .parent .child-text .content ul li p {
        font-size: 20px;
    }
}
@media (max-width: 768px) {
    .web-agency.component .container .inside .parent .child-text .content ul li p {
        font-size: calc(2.25rem / 2);
    }
}
.web-agency.component .container .inside .parent .child-text .content ul li p span {
    font-weight: bold;
    color: #04E4FF;
}
.web-agency.component .container .inside .parent .child-text .content .paragraph {
    display: flex;
    align-items: flex-end;
    gap: 0;
}
.web-agency.component .container .inside .parent .child-text .content .p {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
}
.web-agency.component .container .inside .parent .child-text .content .p a {
    color: #fff;
}
.web-agency.component .container .inside .parent .child-text .content .read-more {
    display: none;
    margin-top: 8px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0;
    font-size: 2rem;
    min-width: max-content;
}
@media (max-width: 1660px) {
    .web-agency.component .container .inside .parent .child-text .content .h2 {
        font-size: 1.8rem;
    }
    .web-agency.component .container .inside .parent .child-text .content .p {
        font-size: 1rem;
    }
}
@media (max-width: 768px) {
    .web-agency.component .container .inside .parent {
        flex-direction: column;
    }
    .web-agency.component .container .inside .parent .child {
        flex-basis: 100%;
        max-width: 100%;
    }
    .web-agency.component .container .inside .parent .child-text .content .h2 {
        font-size: calc((4.5vw + 1.5rem) / 2);
        text-align: center;
    }
    .web-agency.component .container .inside .parent .child-text .content .p {
        position: relative;
        font-size: 1.1rem;
    }
    .web-agency.component .container .inside .parent .child-text .content .p p {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        transition: all 0.3s ease;
    }
    .web-agency.component .container .inside .parent .child-text .content .paragraph:active p,
    .web-agency.component .container .inside .parent .child-text .content .paragraph:focus p,
    .web-agency.component .container .inside .parent .child-text .content .paragraph:hover p
     {
        -webkit-line-clamp: unset;
        overflow: visible;
    }
}
@media (max-width: 551px) {
    .web-agency.component .container .inside .parent .child-text .content {
        gap: 30px;
    }
    .web-agency.component .container .inside .parent .child-text .content .h2 {
        text-align: center;
    }
}
.web-agency.component .container .inside .parent .child-media {
    display: flex;
    justify-content: center;
    align-items: center;
}
.web-agency.component .container .inside .parent .child-media .img {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.web-agency.component .container .inside .parent .child-media .img img {
    position: absolute;
    max-width: 100% !important;
    width: 200px;
}
.web-agency.component .container .inside .parent .child-media .img img.one {
    width: 60%;
    transform: translateX(-25%) translateY(-50%) rotateY(0) rotateX(0);
}
.web-agency.component .container .inside .parent .child-media .img img.two {
    width: 60%;
    transform: translateX(30%) translateY(-20%) rotateY(0) rotateX(0);
}
.web-agency.component .container .inside .parent .child-media .img img.three {
    width: 40%;
    transform: translateX(-10%) translateY(20%) rotateY(333deg) rotateX(-40deg);
}
.web-agency.component .container .inside .parent .child-media .img img.four {
    width: 25%;
    transform: translateX(80%) translateY(25%) rotateY(27deg) rotateX(-40deg);
}
.web-agency.component .tip-line {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}
.web-agency.component .tip-line::after {
        content: "";
        position: absolute;
        top: 15%;
        left: 30px;
        bottom: 15%;
        width: 100vw;
        background: -webkit-gradient(linear, left top, right top, color-stop(25%, #791bce), color-stop(48%, rgba(143, 53, 225, .51)), to(rgba(143, 53, 225, 0)));
        background: linear-gradient(90deg, #791bce 25%, rgba(143, 53, 225, .51) 48%, rgba(143, 53, 225, 0) 100%);
        z-index: 0;
        -webkit-transition: all .2s;
        transition: all .2s;
}   
@media (max-width: 767px) {
    .web-agency.component .tip-line::after {
        top: -100%;
        left: -5%;
        bottom: 0;
        right: 0;
        background: -webkit-gradient(linear, left bottom, left top, color-stop(25%, #791bce), color-stop(48%, rgba(143, 53, 225, .51)), to(rgba(143, 53, 225, 0)));
        background: linear-gradient(0deg, #791bce 25%, rgba(143, 53, 225, .51) 48%, rgba(143, 53, 225, 0) 100%);
    }
    .web-agency.component .tip-line {
        padding-bottom: 40px;
        padding-top: 40px;
    }
}
.web-agency.component .tip-line .pic {
    width: 13rem;
    height: 8.5rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}
.web-agency.component .tip-line .pic img {
    width: 200px;
    object-fit: cover;
}
@media (max-width: 767px) {
    .web-agency.component .tip-line .pic {
        width: 9rem;
        height: 5rem;
    }
    .web-agency.component .tip-line .pic img {
        height: 100%;
    }
}
.web-agency.component .tip-line .txt {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #ffffff;
    z-index: 1;
}
.web-agency.component .tip-line .txt div {
    line-height: 1.2;
}
.web-agency.component .tip-line .txt .top-txt {
    font-weight: 500;
    text-transform: capitalize;
    font-size: 18px;
}
.web-agency.component .tip-line .txt .bottom-txt {
    font-weight: 400;
    text-transform: uppercase;
    font-size: 14px;
}
.web-agency.component .tip-line .txt p {
    line-height: 1.2;
}
/* Clients */
.client-slider.component {
    width: 100%;
    height: 100px;
    overflow: hidden;
    background: #03042a;
    direction: ltr;
}
.client-slider.component .slide-track {
    display: flex;
    align-items: center;
    gap: 20px;
    width: max-content;
    animation: scrollSlider 60s linear infinite;
    height: 100%;
}
@media (max-width: 768px) {
    .client-slider.component {
        height: 10dvh;
    }
    .client-slider.component .slide-track {
        animation: scrollSlider 60s linear infinite;
    }
}
@media (max-width: 551px) {
    .client-slider.component .slide-track {
        animation: scrollSlider 60s linear infinite;
    }
}
.client-slider.component .slide-track .row {
    display: flex;
    align-items: center;
}
.client-slider.component .slide-track .row img {
    width: 200px;
    height: 80px;
    margin: 0 20px;
    user-select: none;
    pointer-events: none;
    fill: #ffffff;
    color: #ffffff;
}
@media (max-width: 768px) {
    .client-slider.component .slide-track .row img {
        width: 90px;
        height: 30px;
        margin: 0 15px;
    }
}
@keyframes scrollSlider {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
}
/* Action Section */
.action-sec.component {
    background: #00042b;
    position: relative;
}
.action-sec.component::after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
    background: linear-gradient(130deg, rgba(3, 154, 254, .5) 0, rgba(150, 54, 229, .5) 100%);
}
.action-sec.component .container {
    position: relative;
    z-index: 1;
}
.action-sec.component .container .inside .content {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}
.action-sec.component .container .inside .content .text {
    max-width: 85vw;
    margin: 0 auto;
}
.action-sec.component .container .inside .content .text .h {
    margin-inline: auto;
    text-align: center;
    max-width: 1400px;
    h2 {
        line-height: 1.2;
        margin-bottom: 20px;
        font-weight: 700;
        font-size: clamp(30px, calc(2.5vw + 1.5rem), 3.5rem);
    }
}
.action-sec.component .container .inside .content .text .p {
    margin: 0 auto clamp(40px, 7vmin, 70px);
    text-align: center;
    margin-bottom: clamp(30px, 4.5vmin, 40px);
    p {
        line-height: 1.6;
        font-size: 18px;
    }
}
@media (min-width: 1112px) {
    .action-sec.component .container .inside .content .text .p {
        max-width: 45vw;
    }
}
.action-sec.component .img-bg-logo {
    position: absolute;
    bottom: -6%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    max-width: 1500px;
    width: 95%;
    z-index: 1;
    overflow: visible;
    min-height: 20%;
}
/* Discover */
.why-us-experts.component {
    background-color: #ffffff;
    position: relative;
    overflow-x: clip;
}
.why-us-experts.component .container .inside .parent {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}
.why-us-experts.component .container .inside .parent .sticky-child {
    width: 100%;
    margin-bottom: 40px;
}
@media (min-width: 1112px) {
    .why-us-experts.component .container .inside .parent .child {
        padding: 30px;
    }
}
@media (min-width: 767px) {
    .why-us-experts.component .container .inside .parent .sticky-child {
        position: sticky;
        top: 100px;
        max-width: calc(50% - 15px);
    }
}
.why-us-experts.component .container .inside .parent .sticky-child .content {
    display: flex;
    flex-direction: column;
    color: #1B2C5C;
}
.why-us-experts.component .container .inside .parent .sticky-child .content .top-txt {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}
.why-us-experts.component .container .inside .parent .sticky-child .content .top-txt .subtitle {
    color: #00B9FF;
    margin-bottom: 0.3em;
    line-height: 1.2;
    letter-spacing: 1.1px;
    font-weight: 700;
    font-size: 1.4rem;
    text-transform: uppercase;
}
@media (max-width: 1113px) {
    .why-us-experts.component .container .inside .parent .sticky-child .content .top-txt .subtitle {
        font-size: 15px;
    }
    .why-us-experts.component .container .inside .parent .sticky-child .content .top-txt {
        margin-bottom: 0;
    }
}
.why-us-experts.component .container .inside .parent .sticky-child .content .top-txt .h {
    line-height: 1.2;
    letter-spacing: 1.1px;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 2.4rem;
}
@media (max-width: 1660px) {
    .why-us-experts.component .container .inside .parent .sticky-child .content .top-txt .h {
        font-size: 1.8rem;
    }
}
@media (max-width: 1112px) {
    .why-us-experts.component .container .inside .parent .sticky-child .content .top-txt .h {
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    .why-us-experts.component .container .inside .parent .sticky-child .content .top-txt .h {
        font-size: calc((4.5vw + 1.5rem) / 1.8);
    }
}
@media (max-width: 551px) {
    .why-us-experts.component .container .inside .parent .sticky-child .content .top-txt .h {
        font-size: 19px;
        margin-bottom: 0;
    }
}
.why-us-experts.component .container .inside .parent .sticky-child .content .bottom-txt .p {
    margin-bottom: 1.5em;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
}
@media (max-width: 1660px) {
    .why-us-experts.component .container .inside .parent .sticky-child .content .bottom-txt .p {
        font-size: 1rem;
    }
}
.why-us-experts.component .container .inside .parent .sticky-child .content .image {
    width: 100%;
    margin-left: -10%;
}
.why-us-experts.component .container .inside .parent .sticky-child .content .image img {
    height: auto;
}
@media (max-width: 768px) {
    .why-us-experts.component .container .inside .parent .sticky-child .content .image {
        margin-left: 0;
    }
}
.why-us-experts.component .container .inside .parent .relative-child {
    width: 100%;
}
@media (min-width: 767px) {
    .why-us-experts.component .container .inside .parent .relative-child {
        max-width: calc(50% - 15px);
    }
}
.why-us-experts.component .container .inside .parent .relative-child .items {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.why-us-experts.component .container .inside .parent .relative-child .items .item {
    position: relative;
    color: #1B2C5C;
    display: flex;
    flex-direction: column;
    margin-bottom: clamp(60px, 5vw, 90px);
}
.why-us-experts.component .container .inside .parent .relative-child .items .item .c-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    margin-bottom: 25px;
    border-radius: 50%;
}
.why-us-experts.component .container .inside .parent .relative-child .items .item .c-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(7deg, #009cff 50%, #522ef4 65%, #9537e3 80%);
}
.why-us-experts.component .container .inside .parent .relative-child .items .item .c-image .c-icon {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 95px;
    height: 95px;
    border-radius: 50%;
}
.why-us-experts.component .container .inside .parent .relative-child .items .item .c-image .c-icon img {
    width: 90%;
    scale: 1.9;
    position: absolute;
    top: 100%;
    left: 20%;
    transform: translate(0%, -25%);
    z-index: 1;
}
.why-us-experts.component .container .inside .parent .relative-child .items .item .c-h {
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 0.5em;
}
.why-us-experts.component .container .inside .parent .relative-child .items .item .c-p {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
}
.why-us-experts.component .container .inside .parent .relative-child .items .item .c-p blockquote {
    font-size: 17px;
    font-style: normal;
    border-left: 5px solid #333;
    font-weight: 400;
    margin-top: 8px;
    padding: 0 0 0 20px;
    -o-border-image: linear-gradient(#009cff,#9536e5) 10;
    border-image: -webkit-gradient(linear, left top, left bottom, from(#009cff), to(#9536e5)) 10;
    border-image: linear-gradient(#009cff, #9536e5) 10;
    border-width: 2px;
}
.why-us-experts.component .container .inside .parent .relative-child .items .item .c-p p {
    margin-bottom: 1.5em;
}
.why-us-experts.component .container .inside .parent .relative-child .items .item .c-p p:last-of-type {
    margin-bottom: 0;
}
@media (max-width: 1660px) {
    .why-us-experts.component .container .inside .parent .relative-child .items .item .c-p {
        font-size: 1.1rem;
    }
}
@media (max-width: 1113px) {
    .why-us-experts.component .container .inside .parent .relative-child .items .item .c-h {
        font-size: 28px;
    }
}
@media (max-width: 768px) {
    .why-us-experts.component .container .inside .parent .relative-child .items .item .c-h {
        font-size: 24px;
    }
    .why-us-experts.component .container .inside .parent .relative-child .items .item .c-p {
        font-size: 1.1rem;
    }
}
@media (max-width: 551px) {
    .why-us-experts.component .container .inside .parent .relative-child .items .item .c-h {
        font-size: 22px;
    }
}