/* ========================== */
/* ================ HOME PAGE */
/* ========================== */





.index-body > section {
    width: 100%;
    height: auto;
}



/* ================================== */
/* ================ HOME PAGE - INTRO */
/* ================================== */



.index-body > section > div.intro {
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    padding: 5% 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background-color: var(--primary-color);
}

@media (max-width:1443px) {
    .index-body > section > div.intro {
        padding: 5%;
    }
}

@media (max-width:1025px) {
    .index-body > section > div.intro {
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }
}

@media (min-width:880px) and (max-width:1025px) {
    .index-body > section > div.intro {
        gap: 0px;
    }
}

.index-body > section > div.intro > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: .5;
    filter: blur(10px);
}

.index-body > section > div.intro > .dets {
    width: 80%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 4;
}

@media (max-width:1025px) {
    .index-body > section > div.intro > .dets {
        justify-content: center;
        align-items: center;
    }
}

.index-body > section > div.intro > .dets > h1 {
    width: 100%;
    color: var(--trinary-color);
    font-size: var(--enormous-font-size);
    font-family: secondary_font;
    text-align: center;
}

@media (max-width:1025px) {
    .index-body > section > div.intro > .dets > h1 {
        text-align: center;
    }
}

.index-body > section > div.intro > .dets > h1 > span {
    color: var(--secondary-color);
    font-size: var(--enormous-font-size);
    font-family: secondary_font;
    text-align: center;
}

.index-body > section > div.intro > .dets > p {
    width: 60%;
    opacity: .9;
    text-align: center;
}

@media (max-width:1443px) {
    .index-body > section > div.intro > .dets > p {
        widows: 70%;
    }
}

@media (max-width:1025px) {
    .index-body > section > div.intro > .dets > p {
        width: 80%;
        text-align: center;
    }
}

@media (max-width:768px) {
    .index-body > section > div.intro > .dets > p {
        width: 90%;
    }
}

@media (max-width:500px) {
    .index-body > section > div.intro > .dets > p {
        width: 100%;
    }
}

.index-body > section > div.intro > .dets > div {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.index-body > section > div.intro > .dets > div > a {
    width: auto;
    height: auto;
    padding: 20px;
    text-decoration: none;
    border-radius: 26px;
    transition: var(--transition);
    margin-top: 5px;
    text-align: center;
}

.index-body > section > div.intro > .dets > div > a.demo {
    background-color: #6747c76b;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    border: 1px solid rgba(255, 255, 255, 0.089);
}

.index-body > section > div.intro > .dets > div > a.demo:hover {
    transform: translateY(-5px);
    box-shadow: 0px 20px 50px 0px var(--secondary-color-shadow);
}

.index-body > section > div.intro > .dets > div > a.projects {
    border: 1px solid rgba(255, 255, 255, 0.082);
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.062);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
}

.index-body > section > div.intro > .dets > div > a.projects:hover {
    transform: translateY(-5px);
    box-shadow: 0px 20px 50px 0px rgba(255, 255, 255, 0.062);
}

.index-body > section > div.intro > .scroll-arrow {
    width: 35px;
    height: 35px;
    position: absolute;
    left: 50%;
    bottom: 4%;
    z-index: 4;
    transform: translateX(-50%);
    animation: introArrow 2s ease-in-out infinite;
}

.index-body > section > div.intro > .scroll-arrow path {
    stroke: var(--trinary-color);
    opacity: .7;
}

@keyframes introArrow {

    0%,
    100% {
        transform: translate(-50%, 0);
        opacity: .4;
    }

    50% {
        transform: translate(-50%, 10px);
        opacity: 1;
    }

}



/* ============================================= */
/* ================ HOME PAGE - SERVICES MARQUEE */
/* ============================================= */



.index-body > section > div.services-marque {
    width: 100%;
    padding: 70px 0;
    background-color: var(--primary-color-shade);
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
}

.index-body > section > div.services-marque > .marquee-inner {
    display: flex;
    width: max-content;
    animation: services-marquee 45s linear infinite;
    will-change: transform;
}

.index-body > section > div.services-marque > .marquee-inner > .marquee-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.index-body > section > div.services-marque > .marquee-inner > .marquee-group > .marquee-item {
    display: flex;
    align-items: center;
    gap: clamp(50px, 6vw, 100px);
    padding-right: clamp(50px, 6vw, 100px);
    flex-shrink: 0;
}

.index-body > section > div.services-marque > .marquee-inner > .marquee-group > .marquee-item > span {
    color: rgba(243, 240, 250, 0.65);
    font-family: "Comfortaa", sans-serif;
    font-size: var(--small-font-size);
    text-transform: uppercase;
    white-space: nowrap;
}

.index-body > section > div.services-marque > .marquee-inner > .marquee-group > .marquee-item > .marquee-separator {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.index-body > section > div.services-marque > .marquee-inner > .marquee-group > .marquee-item > .marquee-separator path:not(.marquee-separator-center) {
    stroke: var(--secondary-color);
    stroke-width: 1.4;
    stroke-linecap: round;
}

.index-body > section > div.services-marque > .marquee-inner > .marquee-group > .marquee-item > .marquee-separator > .marquee-separator-center {
    fill: var(--secondary-color);
}

@keyframes services-marquee {

    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }

}

@media (prefers-reduced-motion: reduce) {

    .index-body > section > div.services-marque > .marquee-inner {
        animation: none;
    }

    .index-body > section > div.services-marque > .marquee-inner > .marquee-group[aria-hidden="true"] {
        display: none;
    }

}



/* ============================================= */
/* ================ HOME PAGE - CAPABILITIES CON */
/* ============================================= */



.index-body > section > div.capabilities-con {
    width: 100%;
    height: auto;
    padding: 5% 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 3;
}

@media (max-width:1443px) {
    .index-body > section > div.capabilities-con {
        padding: 50px 5%;
    }
}

@media (max-width:1025px) {
    .index-body > section > div.capabilities-con {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

.index-body.ar > section > div.capabilities-con {
    direction: rtl;
}

.index-body > section > div.capabilities-con::after {
    content: '';
    width: 100%;
    height: 200px;
    background-image: linear-gradient(0deg,transparent,#0e0e0e,transparent);
    position: absolute;
    bottom: calc(0% - 100px);
    left: 0;
}

.index-body > section > div.capabilities-con > .header {
    width: 45%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
}

@media (max-width:1025px) {
    .index-body > section > div.capabilities-con > .header {
        width: 100%;
        justify-content: center;
        align-items: center;
    }
}

.index-body > section > div.capabilities-con > .header > strong {
    width: auto;
    height: auto;
    padding: 20px;
    background-color: #6747c76b;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    text-decoration: none;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.089);
    transition: var(--transition);
    margin-top: 5px;
}

.index-body > section > div.capabilities-con > .header > h2 {
    width: 100%;
    font-size: var(--big-font-size);
}

@media (min-width:1025px) and (max-width:1443px) {
    .index-body > section > div.capabilities-con > .header > h2 {
        font-size: var(--huge-font-size);
    }
}

@media (max-width:1025px) {
    .index-body > section > div.capabilities-con > .header > h2 {
        text-align: center;
    }
}

.index-body > section > div.capabilities-con > .header > p {
    width: 100%;
    opacity: .9;
}

@media (max-width:1025px) {
    .index-body > section > div.capabilities-con > .header > p {
        text-align: center;
    }
}

.index-body > section > div.capabilities-con > .header > a {
    width: auto;
    height: auto;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 26px;
    color: var(--trinary-color);
    font-size: var(--small-font-size);
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.index-body > section > div.capabilities-con > .header > a:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px var(--secondary-color-shadow);
}

.index-body > section > div.capabilities-con > .grid {
    width: 55%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

@media (max-width:1025px) {
    .index-body > section > div.capabilities-con > .grid {
        width: 100%;
    }
}

@media (max-width:768px) {
    .index-body > section > div.capabilities-con > .grid {
        grid-template-columns: repeat(1,1fr);
    }
}

.index-body > section > div.capabilities-con > .grid > div {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
    background-color: var(--primary-color-shade);
    border: 1px solid rgba(243, 240, 250, 0.1);
    padding: 40px 30px;
    border-radius: 32px;
    transition: var(--transition);
    cursor: pointer;
}

@media (max-width:1025px) {
    .index-body > section > div.capabilities-con > .grid > div {
        justify-content: center;
        align-items: center;
    }
}

.index-body > section > div.capabilities-con > .grid > div:nth-child(2),
.index-body > section > div.capabilities-con > .grid > div:nth-child(4) {
    transform: translateY(30px);
}

@media (max-width:768px) {
    .index-body > section > div.capabilities-con > .grid > div:nth-child(2),
    .index-body > section > div.capabilities-con > .grid > div:nth-child(4) {
        transform: unset;
    }
}

.index-body > section > div.capabilities-con > .grid > div:hover {
    transform: translateY(-5px);
    box-shadow: 0px 0px 10px 0px var(--secondary-color-shadow);
}

.index-body > section > div.capabilities-con > .grid > div:nth-child(2):hover,
.index-body > section > div.capabilities-con > .grid > div:nth-child(4):hover {
    transform: translateY(25px);
}

@media (max-width:768px) {
    .index-body > section > div.capabilities-con > .grid > div:nth-child(2):hover,
    .index-body > section > div.capabilities-con > .grid > div:nth-child(4):hover {
        transform: translateY(-5px);
    }
}

.index-body > section > div.capabilities-con > .grid > div > svg {
    width: 60px;
    height: 60px;
    fill: var(--secondary-color);
}

.index-body > section > div.capabilities-con > .grid > div > strong {
    width: 100%;
    font-weight: bold;
    font-size: var(--intermediate-font-size)
}

.index-body > section > div.capabilities-con > .grid > div > p {
    width: 100%;
    opacity: .9;
}

@media (max-width:1025px) {
    .index-body > section > div.capabilities-con > .grid > div > strong,
    .index-body > section > div.capabilities-con > .grid > div > p {
        text-align: center;
    }
}



/* ========================================= */
/* ================ HOME PAGE - ROAD MAP CON */
/* ========================================= */



.index-body > section > div.roadmap-con {
    width: 100%;
    min-height: 38vw;
    padding: 300px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    position: relative;
    overflow: hidden;
    color: var(--trinary-color);
    background-color: var(--primary-color-shade);
}

@media (max-width:1443px) {
    .index-body > section > div.roadmap-con {
        padding: 300px 5%;
    }
}

@media (max-width:1025px) {
    .index-body > section > div.roadmap-con {
        padding: 150px 5%;
    }
}

@media (max-width:768px) {
    .index-body > section > div.roadmap-con {
        padding: 100px 5%;
    }
}

.index-body > section > div.roadmap-con::before {
    content: "";
    width: 28vw;
    aspect-ratio: 1;
    position: absolute;
    top: -12vw;
    left: 30%;
    opacity: .18;
    background-color: var(--secondary-color);
    clip-path: polygon(
        50% 0%,
        100% 25%,
        82% 100%,
        15% 78%,
        0% 20%
    );
    transform: rotate(20deg);
    pointer-events: none;
}

@media (max-width:1025px) {
    .index-body > section > div.roadmap-con::before {
        width: 55vw;
    }   
}

@media (max-width:500px) {
    .index-body > section > div.roadmap-con::before {
        width: 70vw;
    }   
}

.index-body > section > div.roadmap-con::after {
    content: "";
    width: 35vw;
    aspect-ratio: 1;
    position: absolute;
    right: 5%;
    bottom: -26vw;
    opacity: .12;
    border: .15vw solid var(--secondary-color);
    border-radius: 50%;
    box-shadow:
        0 0 5vw var(--secondary-color),
        inset 0 0 5vw var(--secondary-color);
    pointer-events: none;
}

@media (max-width:1025px) {
    .index-body > section > div.roadmap-con::after {
        width: 62vw;
        bottom: -36vw;
    }   
}

@media (max-width:500px) {
    .index-body > section > div.roadmap-con::after {
        width: 77vw;
        bottom: -50vw;
    }   
}

.index-body > section > div.roadmap-con .roadmap-heading {
    position: relative;
    z-index: 3;
}

.index-body.ar > section > div.roadmap-con .roadmap-heading {
    direction: rtl;
}

.index-body > section > div.roadmap-con .roadmap-heading h2 {
    margin: 0 0 .5vw;
    color: var(--trinary-color);
    font-size: var(--big-font-size);
    line-height: 1;
}

.index-body > section > div.roadmap-con .roadmap-heading p {
    margin: 0;
    color: var(--trinary-color);
    font-size: var(--small-font-size);
    opacity: .9;
}

.index-body > section > div.roadmap-con .roadmap {
    width: 100%;
    min-height: 15vw;
    margin-top: 5vw;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    position: relative;
    z-index: 3;
}

.index-body > section > div.roadmap-con .roadmap-line {
    height: .1vw;
    position: absolute;
    top: 38%;
    right: calc(100% / 8);
    left: calc(100% / 8);
    z-index: 1;
    background-color: var(--secondary-color-shadow);
}

.index-body > section > div.roadmap-con .roadmap-line-progress {
    width: 0;
    height: 100%;
    display: block;
    position: relative;
    background-color: var(--secondary-color);
    box-shadow:
        0 0 .8vw var(--secondary-color),
        0 0 1.5vw var(--secondary-color-shadow);
}

.index-body > section > div.roadmap-con .roadmap-line-progress::after {
    content: "";
    width: .7vw;
    aspect-ratio: 1;
    position: absolute;
    top: 50%;
    right: 0;
    border-radius: 50%;
    opacity: 0;
    background-color: var(--trinary-color);
    box-shadow:
        0 0 .8vw var(--trinary-color),
        0 0 1.4vw var(--secondary-color);
    transform: translate(50%, -50%);
}

.index-body > section > div.roadmap-con .roadmap-step {
    min-width: 0;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(1.2vw);
}

.index-body > section > div.roadmap-con .roadmap-meta {
    width: 72%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

.index-body > section > div.roadmap-con .roadmap-meta span {
    color: var(--trinary-color);
    line-height: 1;
    opacity: .45;
    text-transform: uppercase;
}

.index-body > section > div.roadmap-con .roadmap-meta strong {
    font-size: var(--big-font-size);
    margin-top: 20px;
    color: var(--secondary-color);
}

.index-body > section > div.roadmap-con .roadmap-marker {
    width: 100%;
    height: 1.2vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.index-body > section > div.roadmap-con .roadmap-point {
    width: .85vw;
    aspect-ratio: 1;
    display: block;
    position: relative;
    border: .18vw solid var(--primary-color);
    border-radius: 50%;
    background-color: var(--trinary-color);
    box-shadow:
        0 0 0 .08vw var(--trinary-color),
        0 0 .8vw var(--trinary-color);
    transition: var(--transition);
}

.index-body > section > div.roadmap-con .roadmap-point::before {
    content: "";
    position: absolute;
    inset: -.7vw;
    border: .1vw solid var(--secondary-color);
    border-radius: 50%;
    opacity: 0;
}

.index-body > section > div.roadmap-con .roadmap-featured-box {
    width: auto;
    height: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .5vw;
    position: absolute;
    top: 0%;
    left: 70%;
    color: var(--trinary-color);
    border: .1vw solid var(--secondary-color);
    background:
        linear-gradient(
            145deg,
            var(--secondary-color-shadow),
            var(--primary-color) 65%
        );
    box-shadow:
        0 0 2vw var(--secondary-color-shadow),
        inset 0 0 1.5vw var(--secondary-color-shadow);
    transform: translate(-50%, -50%);
    transition: var(--transition);
    border-radius: 26px;
}

@media (min-width:1025px) and (max-width:1443px) {
    .index-body > section > div.roadmap-con .roadmap-featured-box {
        top: -50px;
        left: 50%;
    }
}

@media (max-width:1025px) {
    .index-body > section > div.roadmap-con .roadmap-featured-box {
        left: 50%;
    }
}

@media (max-width:500px) {
    .index-body > section > div.roadmap-con .roadmap-featured-box {
        scale: .8;
        left: 35%;
        padding: 20px 10px;
        border-radius: 16px;
    }
}

.index-body > section > div.roadmap-con .roadmap-featured-box svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: var(--secondary-color);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.index-body > section > div.roadmap-con .roadmap-featured-box strong {
    color: var(--trinary-color);
    font-size: var(--tiny-font-size);
    letter-spacing: .08vw;
    text-transform: uppercase;
}

.index-body > section > div.roadmap-con .roadmap-content {
    width: 72%;
    transition: var(--transition);
}

.index-body > section > div.roadmap-con .roadmap-content h3 {
    color: var(--trinary-color);
    font-size: var(--intermediate-font-size);
    text-transform: uppercase;
    margin-top: 20px;
}

.index-body > section > div.roadmap-con .roadmap-content p {
    color: var(--trinary-color);
    font-size: var(--tiny-font-size);
    line-height: unset;
    opacity: .9;
    transition: var(--transition);
    margin-top: 20px;
}

.index-body > section > div.roadmap-con .roadmap-step:hover .roadmap-point {
    background-color: var(--secondary-color);
    box-shadow:
        0 0 0 .1vw var(--secondary-color),
        0 0 1.3vw var(--secondary-color);
    transform: scale(1.35);
}

.index-body > section > div.roadmap-con .roadmap-step:hover .roadmap-point::before {
    animation: roadmap-point-pulse 1.5s ease-out infinite;
}

.index-body > section > div.roadmap-con .roadmap-step:hover .roadmap-content {
    transform: translateY(-.4vw);
}

.index-body > section > div.roadmap-con .roadmap-step:hover .roadmap-content p {
    opacity: .9;
}

.index-body > section > div.roadmap-con .roadmap-step-featured:hover .roadmap-featured-box {
    border-color: var(--trinary-color);
    box-shadow:
        0 0 3vw var(--secondary-color),
        inset 0 0 2vw var(--secondary-color-shadow);
    transform: translate(-50%, -50%) scale(1.06);
}

.index-body > section > div.roadmap-con .roadmap.roadmap-visible .roadmap-line-progress {
    animation: roadmap-line-draw 2s ease-in-out forwards;
}

.index-body > section > div.roadmap-con .roadmap.roadmap-visible .roadmap-line-progress::after {
    animation: roadmap-progress-light 2s ease-in-out forwards;
}

.index-body > section > div.roadmap-con .roadmap.roadmap-visible .roadmap-step {
    animation: roadmap-step-show .7s ease-out forwards;
}

.index-body > section > div.roadmap-con .roadmap.roadmap-visible .roadmap-step:nth-of-type(1) {
    animation-delay: .2s;
}

.index-body > section > div.roadmap-con .roadmap.roadmap-visible .roadmap-step:nth-of-type(2) {
    animation-delay: .5s;
}

.index-body > section > div.roadmap-con .roadmap.roadmap-visible .roadmap-step:nth-of-type(3) {
    animation-delay: .8s;
}

.index-body > section > div.roadmap-con .roadmap.roadmap-visible .roadmap-step:nth-of-type(4) {
    animation-delay: 1.1s;
}

.index-body > section > div.roadmap-con .roadmap.roadmap-visible .roadmap-featured-box {
    animation: roadmap-featured-pulse 3s ease-in-out 2s infinite;
}

@keyframes roadmap-line-draw {

    from {
        width: 0;
    }

    to {
        width: 100%;
    }

}

@keyframes roadmap-progress-light {

    0% {
        opacity: 0;
    }

    15%,
    85% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }

}

@keyframes roadmap-step-show {

    from {
        opacity: 0;
        transform: translateY(1.2vw);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes roadmap-point-pulse {

    from {
        opacity: .8;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(2);
    }

}

@keyframes roadmap-featured-pulse {

    0%,
    100% {
        box-shadow:
            0 0 1.5vw var(--secondary-color-shadow),
            inset 0 0 1vw var(--secondary-color-shadow);
    }

    50% {
        box-shadow:
            0 0 3vw var(--secondary-color),
            inset 0 0 2vw var(--secondary-color-shadow);
    }

}

@media (max-width: 1025px) {

    .index-body > section > div.roadmap-con .roadmap-heading > span {
        margin-bottom: 2vw;
        font-size: max(var(--tiny-font-size), 2.5vw);
        letter-spacing: .5vw;
    }

    .index-body > section > div.roadmap-con .roadmap-heading h2 {
        margin-bottom: 2vw;
        font-size: max(var(--medium-font-size), 6vw);
    }

    .index-body > section > div.roadmap-con .roadmap-heading p {
        font-size: max(var(--small-font-size), 3.2vw);
        line-height: 1.6;
    }

    .index-body > section > div.roadmap-con .roadmap {
        min-height: 0;
        margin-top: 12vw;
        display: flex;
        flex-direction: column;
        gap: 10vw;
    }

    .index-body > section > div.roadmap-con .roadmap-line {
        width: .35vw;
        height: auto;
        top: 4vw;
        right: auto;
        bottom: 4vw;
        left: 4vw;
    }

    .index-body > section > div.roadmap-con .roadmap-line-progress {
        width: 100%;
        height: 0;
    }

    .index-body > section > div.roadmap-con .roadmap-line-progress::after {
        width: 2vw;
        top: auto;
        right: 50%;
        bottom: 0;
        transform: translate(50%, 50%);
    }

    .index-body > section > div.roadmap-con .roadmap-step {
        display: grid;
        grid-template-columns: 8vw minmax(0, 1fr);
        grid-template-areas:
            "marker meta"
            "marker content";
        column-gap: 5vw;
        align-items: flex-start;
    }

    .index-body > section > div.roadmap-con .roadmap-meta {
        grid-area: meta;
        width: 100%;
        height: auto;
        margin: 0;
        padding: 0;
    }

    .index-body > section > div.roadmap-con .roadmap-marker {
        grid-area: marker;
        width: 8vw;
        height: 8vw;
    }

    .index-body > section > div.roadmap-con .roadmap-point {
        width: 2.5vw;
        border-width: .5vw;
    }

    .index-body > section > div.roadmap-con .roadmap-step-featured:hover .roadmap-featured-box {
        transform: scale(1.05);
    }

    .index-body > section > div.roadmap-con .roadmap-content,
    .index-body > section > div.roadmap-con .roadmap-step-featured .roadmap-content {
        grid-area: content;
        width: 100%;
    }

    .index-body > section > div.roadmap-con .roadmap.roadmap-visible .roadmap-line-progress {
        animation: roadmap-line-draw-mobile 2s ease-in-out forwards;
    }

    @keyframes roadmap-line-draw-mobile {

        from {
            height: 0;
        }

        to {
            height: 100%;
        }

    }

}

@media (prefers-reduced-motion: reduce) {

    .index-body > section > div.roadmap-con .roadmap-step {
        opacity: 1;
        transform: none;
    }

    .index-body > section > div.roadmap-con .roadmap-line-progress {
        width: 100%;
        animation: none;
    }

    .index-body > section > div.roadmap-con .roadmap-featured-box {
        animation: none;
    }

}



/* ============================================= */
/* ================ HOME PAGE - SYSTEMS SHOW CON */
/* ============================================= */



.index-body > section > div.systems-show-con {
    width: 100%;
    height: auto;
    padding: 5% 10% 0% 10%;
    position: relative;
    z-index: 3;
}

@media (max-width:1443px) {
    .index-body > section > div.systems-show-con {
        padding: 5%;
    }
}

@media (max-width:1025px) {
    .index-body > section > div.systems-show-con {
        padding: 50px 5%;
    }
}

.index-body.ar > section > div.systems-show-con {
    direction: rtl;
}

.index-body > section > div.systems-show-con::before {
    content: '';
    width: 100%;
    height: 200px;
    background-image: linear-gradient(0deg,transparent,#0e0e0e,transparent);
    position: absolute;
    top: calc(0% - 100px);
    left: 0;
}

.index-body > section > div.systems-show-con > .grid {
    width: auto;
    height: auto;
    padding-top: 5%;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 80px;
}

@media (max-width:1025px) {
    .index-body > section > div.systems-show-con > .grid {
        grid-template-columns: repeat(1,1fr);
        gap: 40px;
    }
}

.index-body > section > div.systems-show-con > .grid > div.web-apps,
.index-body > section > div.systems-show-con > .grid > div.e-commerce {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
    transition: var(--transition);
}

@media (min-width:768px) and (max-width:1025px) {
    .index-body > section > div.systems-show-con > .grid > div.web-apps,
    .index-body > section > div.systems-show-con > .grid > div.e-commerce {
        justify-content: center;
        align-items: center;
        padding: 20px 150px;
    }
}

@media (max-width:768px) {
    .index-body > section > div.systems-show-con > .grid > div.web-apps,
    .index-body > section > div.systems-show-con > .grid > div.e-commerce {
        justify-content: center;
        align-items: center;
        padding: 20px;
    }
}

.index-body > section > div.systems-show-con > .grid > div.web-apps {
    transform: translateY(-100px);
}

@media (max-width:1025px) {
    .index-body > section > div.systems-show-con > .grid > div.web-apps {
        transform: unset;
    }
}

.index-body > section > div.systems-show-con > .grid > div.web-apps:hover {
    transform: translateY(-150px);
}

@media (max-width:1025px) {
    .index-body > section > div.systems-show-con > .grid > div.web-apps:hover {
        transform: translateY(-30px);
    }
}

.index-body > section > div.systems-show-con > .grid > div.e-commerce:hover {
    transform: translateY(-50px);
}

@media (max-width:1025px) {
    .index-body > section > div.systems-show-con > .grid > div.e-commerce:hover {
        transform: translateY(-30px);
    }
}

.index-body > section > div.systems-show-con > .grid > div.web-apps > img,
.index-body > section > div.systems-show-con > .grid > div.e-commerce > img {
    width: 80%;
    height: auto;
    object-fit: cover;
    border-radius: 36px;
    border: 1px solid rgba(243, 240, 250, 0.1);
    transition: var(--transition);
}

@media (max-width:768px) {
    .index-body > section > div.systems-show-con > .grid > div.web-apps > img,
    .index-body > section > div.systems-show-con > .grid > div.e-commerce > img {
        width: 100%;
    }
}

.index-body > section > div.systems-show-con > .grid > div.web-apps:hover > img,
.index-body > section > div.systems-show-con > .grid > div.e-commerce:hover > img {
    box-shadow: 0px 20px 50px 0px var(--secondary-color-shadow);
}

.index-body > section > div.systems-show-con > .grid > div.web-apps > h3,
.index-body > section > div.systems-show-con > .grid > div.e-commerce > h3 {
    width: 100%;
    font-size: var(--medium-font-size);
    margin-top: 20px;
}

.index-body > section > div.systems-show-con > .grid > div.web-apps > p,
.index-body > section > div.systems-show-con > .grid > div.e-commerce > p {
    width: 100%;
    opacity: .9;
}

@media (max-width:1025px) {
    .index-body > section > div.systems-show-con > .grid > div.web-apps > h3,
    .index-body > section > div.systems-show-con > .grid > div.e-commerce > h3,
    .index-body > section > div.systems-show-con > .grid > div.web-apps > p,
    .index-body > section > div.systems-show-con > .grid > div.e-commerce > p {
        text-align: center;
    }
}

.index-body > section > div.systems-show-con > .grid > div.web-apps > a {
    width: auto;
    height: auto;
    padding: 20px;
    border-radius: 26px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.082);
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.062);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
}

.index-body > section > div.systems-show-con > .grid > div.web-apps > a:hover {
    transform: translateY(-5px);
    box-shadow: 0px 20px 50px 0px rgba(255, 255, 255, 0.062);
}

.index-body > section > div.systems-show-con > .grid > div.e-commerce > a {
    width: auto;
    height: auto;
    padding: 20px;
    border-radius: 26px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.082);
    transition: var(--transition);
    background-color: var(--secondary-color);
    color: var(--trinary-color);
}

.index-body > section > div.systems-show-con > .grid > div.e-commerce > a:hover {
    transform: translateY(-5px);
    box-shadow: 0px 20px 50px 0px var(--secondary-color-shadow);
}



/* ===================================== */
/* ================ HOME PAGE - SAAS CON */
/* ===================================== */



.index-body > section > div.saas-con {
    width: 100%;
    height: auto;
    padding: 5% 10%;
    padding-top: 0%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 100px;
    position: relative;
    z-index: 3;
}

@media (max-width:1443px) {
    .index-body > section > div.saas-con {
        padding: 5%;
    }
}

@media (max-width:1025px) {
    .index-body > section > div.saas-con {
        gap: 50px;
    }
}

.index-body.ar > section > div.saas-con {
    direction: rtl;
}

.index-body > section > div.saas-con > .header {
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
}

@media (max-width:1443px) {
    .index-body > section > div.saas-con > .header {
        width: 65%;
    }
}

@media (max-width:1025px) {
    .index-body > section > div.saas-con > .header {
        width: 100%;
        justify-content: center;
        align-items: center;
    }
}

.index-body > section > div.saas-con > .header > strong {
    width: auto;
    height: auto;
    padding: 20px;
    background-color: #6747c76b;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    text-decoration: none;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.089);
    transition: var(--transition);
    margin-top: 5px;
}

.index-body > section > div.saas-con > .header > h2 {
    width: 100%;
    font-size: var(--big-font-size);
}

@media (max-width:1025px) {
    .index-body > section > div.saas-con > .header > h2 {
        text-align: center;
    }
}

.index-body > section > div.saas-con > .header > p {
    width: 100%;
    opacity: .9;
}

@media (max-width:1025px) {
    .index-body > section > div.saas-con > .header > p {
        text-align: center;
    }
}

.index-body > section > div.saas-con > .grid {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 20px;
}

@media (max-width:1025px) {
    .index-body > section > div.saas-con > .grid {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }
}

.index-body > section > div.saas-con > .grid > div {
    padding: 40px;
    background-color: var(--primary-color-shade);
    border-radius: 36px;
    border: 1px solid rgba(255, 255, 255, 0.082);
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
}

@media (max-width:768px) {
    .index-body > section > div.saas-con > .grid > div {
        padding: 20px;
    }
}

.index-body > section > div.saas-con > .grid > div:nth-child(1) {
    grid-column: 1 / 4;
}

.index-body > section > div.saas-con > .grid > div:nth-child(2) {
    grid-column: 4 / 6;
}

@media (max-width:1025px) {
    .index-body > section > div.saas-con > .grid > div:nth-child(1),
    .index-body > section > div.saas-con > .grid > div:nth-child(2),
    .index-body > section > div.saas-con > .grid > div:nth-child(3) {
        width: 100%;
    }
}

.index-body > section > div.saas-con > .grid > div > .svg {
    width: 60px;
    height: 60px;
    padding: 15px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.068);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    border: 1px solid rgba(255, 255, 255, 0.103);
}

.index-body > section > div.saas-con > .grid > div > .svg > svg {
    width: 100%;
    height: 100%;
    fill: var(--trinary-color);
}

.index-body > section > div.saas-con > .grid > div > .svg.stroke > svg {
    fill: none;
    stroke: var(--trinary-color);
}

.index-body > section > div.saas-con > .grid > div > .dets {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
}

.index-body > section > div.saas-con > .grid > div > .dets > h3 {
    font-size: var(--medium-font-size);
}

.index-body > section > div.saas-con > .grid > div > .dets > p {
    opacity: .9;
}

.index-body > section > div.saas-con > .grid > div > .dets > .tags {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: start;
    gap: 20px;
}

.index-body > section > div.saas-con > .grid > div > .dets > .tags > strong {
    width: auto;
    height: auto;
    padding: 20px;
    border-radius: 50px;
    background-color: #1f2020;
    border: 1px solid rgba(255, 255, 255, 0.082);
}

.index-body > section > div.saas-con > .grid > div > .body {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    border: 1px dashed rgba(255, 255, 255, 0.075);
    border-radius: 36px;
    padding: 20px;
    background-color: var(--primary-color);
}

.index-body > section > div.saas-con > .grid > div > .body > div {
    width: 25%;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 20px;
    background-color: #2a2a2a;
    border-radius: 36px;
    padding: 20px;
}

.index-body > section > div.saas-con > .grid > div > .body > div.wide {
    width: 50%;
}

.index-body > section > div.saas-con > .grid > div > .body > div > .header,
.index-body > section > div.saas-con > .grid > div > .body > div > .body {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 10px;
}

.index-body > section > div.saas-con > .grid > div > .body > div > .header > .headline {
    width: 50%;
    height: auto;
    padding: 5px;
    border-radius: 36px;
    background-color: #6b657f;
    margin-bottom: 20px;
}

.index-body > section > div.saas-con > .grid > div > .body > div > .header > .line,
.index-body > section > div.saas-con > .grid > div > .body > div > .body > .line {
    width: 100%;
    height: auto;
    padding: 5px;
    border-radius: 36px;
    background-color: #353535;
}

.index-body > section > div.saas-con > .grid > div > .body > div > .header > .line:nth-child(2) {
    width: 100%;
}

.index-body > section > div.saas-con > .grid > div > .body > div > .header > .line:nth-child(3) {
    width: 70%;
}

.index-body > section > div.saas-con > .grid > div > .body > div > .header > .line:nth-child(4) {
    width: 80%;
}

.index-body > section > div.saas-con > .grid > div > .body > div > .body > .rectangle {
    width: 100%;
    height: auto;
    padding: 40px 30px;
    border-radius: 26px;
    background-color: #353535;
}

@media (max-width:500px) {
    .index-body > section > div.saas-con > .grid > div > .body > div > .body > .rectangle {
        display: none;
    }
}

.index-body > section > div.saas-con > .grid > div > .body > div > .body > .empty-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.212);
    display: flex;
    justify-content: center;
    align-items: center;
}

.index-body > section > div.saas-con > .grid > div > .body > div > .body > .empty-circle > .inner-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: white;
    animation: inner-circle-wave 1s linear infinite;
}

@keyframes inner-circle-wave {
    
    0% {
        scale: 0.6;
        opacity: 0;
    }

    50% {
        scale: 1.1;
        opacity: .9;
    }

    100% {
        scale: 1.1;
        opacity: 0;
    }

}

.index-body > section > div.saas-con > .grid > div:nth-child(2) > .body {
    height: 100%;
    flex-direction: column;
    justify-content: start;
    background-color: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.075);
    position: relative;
    overflow: hidden;
}

@media (max-width:1025px) {
    .index-body > section > div.saas-con > .grid > div:nth-child(2) > .body {
        min-height: 500px;
    }
}

.index-body > section > div.saas-con > .grid > div:nth-child(2) > .body::after {
    content: '';
    width: 30%;
    height: 200px;
    scale: 1.5;
    background-color: var(--secondary-color);
    position: absolute;
    bottom: -30%;
    left: 0%;
    opacity: .4;
    border-radius: 400px 200px 400px 0px;
}

.index-body > section > div.saas-con > .grid > div > .body > .counters {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    background-color: transparent;
    padding: 0px;
}

@media (min-width:1443px) and (max-width:1600px) {
    .index-body > section > div.saas-con > .grid > div > .body > .counters {
        gap: 10px;
    }
}

@media (min-width:1025px) and (max-width:1443px) {
    .index-body > section > div.saas-con > .grid > div > .body > .counters {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width:500px) {
    .index-body > section > div.saas-con > .grid > div > .body > .counters {
        grid-template-columns: repeat(2,1fr);
    }
}

.index-body > section > div.saas-con > .grid > div > .body > .counters > div {
    padding: 20px;
    background-color: #2a2a2a;
    border-radius: 36px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 10px;
}

.index-body > section > div.saas-con > .grid > div > .body > .counters > div > strong {
    opacity: .9;
}

@media (min-width:1025px) and (max-width:1443px) {
    .index-body > section > div.saas-con > .grid > div > .body > .counters > div > strong {
        font-size: var(--tiny-font-size);
    }
}

.index-body > section > div.saas-con > .grid > div > .body > .counters > div > span {
    opacity: .9;
    font-weight: bold;
    font-size: var(--intermediate-font-size);
}

@media (min-width:1025px) and (max-width:1443px) {
    .index-body > section > div.saas-con > .grid > div > .body > .counters > div > span {
        font-size: var(--small-font-size);
    }
}

.index-body > section > div.saas-con > .grid > div > .body > .counters > div:nth-child(2) > span {
    color: var(--secondary-color);
}

.index-body > section > div.saas-con > .grid > div > .body > .comment {
    width: 100%;
    height: auto;
    padding: 20px;
    background-color: #2a2a2a;
    border-radius: 36px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    z-index: 5;
}

.index-body > section > div.saas-con > .grid > div > .body > .comment > .start {
    width: 85%;
    height: auto;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 20px;
}

.index-body > section > div.saas-con > .grid > div > .body > .comment > .start > .circle {
    width: 60px;
    height: 60px;
    background-color: #353535;
    border-radius: 50%;
}

.index-body > section > div.saas-con > .grid > div > .body > .comment > .start > .line {
    width: 40%;
    height: auto;
    padding: 5px;
    border-radius: 36px;
    background-color: #353535;
}

.index-body > section > div.saas-con > .grid > div > .body > .comment:nth-child(3) > .start > .line {
    width: 30%;
}

.index-body > section > div.saas-con > .grid > div > .body > .comment > .sideline {
    width: 15%;
    height: auto;
    padding: 5px;
    border-radius: 36px;
    background-color: #6b657f;
}

.index-body > section > div.saas-con > .grid > div:nth-child(3) {
    grid-column: 1 / 6;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
}

.index-body > section > div.saas-con > .grid > div:nth-child(3) > .dets {
    width: 50%;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
}

.index-body > section > div.saas-con > .grid > div:nth-child(3) > .dets > .svg {
    width: 60px;
    height: 60px;
    padding: 15px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.068);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    border: 1px solid rgba(255, 255, 255, 0.103);
}

.index-body > section > div.saas-con > .grid > div:nth-child(3) > .dets > .svg > svg {
    width: 100%;
    height: 100%;
    fill: var(--trinary-color);
}

.index-body > section > div.saas-con > .grid > div:nth-child(3) > .dets > .svg.stroke > svg {
    fill: none;
    stroke: var(--trinary-color);
}

.index-body > section > div.saas-con > .grid > div:nth-child(3) > .dets > ul {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

.index-body > section > div.saas-con > .grid > div:nth-child(3) > .dets > ul > li {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}

.index-body > section > div.saas-con > .grid > div:nth-child(3) > .dets > ul > li > svg {
    width: 30px;
    height: 30px;
    fill: var(--secondary-color);
}

.index-body > section > div.saas-con > .grid > div:nth-child(3) > .dets > ul > li > span {
    opacity: .9;
}

.index-body > section > div.saas-con > .grid > div:nth-child(3) > .geometric {
    width: 50%;
    min-height: 32vw;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* GEOMETRIC STAGE */

.index-body > section > div.saas-con > .grid > div:nth-child(3) > .geometric > .geometric-stage {
    width: 100%;
    height: 100%;
    min-height: 32vw;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 4vw;
    background:
        radial-gradient(
            circle at 50% 50%,
            var(--secondary-color-shadow),
            transparent 25%
        ),
        var(--primary-color);
}

.index-body > section > div.saas-con > .grid > div:nth-child(3) > .geometric > .geometric-stage::before {
    content: "";
    width: 22vw;
    aspect-ratio: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    border: .1vw solid var(--secondary-color-shadow);
    border-radius: 50%;
    opacity: .25;
    box-shadow:
        0 0 4vw var(--secondary-color-shadow),
        inset 0 0 4vw var(--secondary-color-shadow);
    transform: translate(-50%, -50%);
    animation: geometric-background-pulse 5s ease-in-out infinite;
}

/* CONNECTIONS */

.index-body > section > div.saas-con > .grid > div:nth-child(3) > .geometric > .geometric-stage > .geometric-connections {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.index-body > section > div.saas-con > .grid > div:nth-child(3) > .geometric > .geometric-stage > .geometric-connections > path {
    fill: none;
    stroke: var(--secondary-color-shadow);
    stroke-width: 1.2;
    stroke-linecap: round;
    stroke-dasharray: 5 9;
    animation: geometric-connection-move 4s linear infinite;
}

/* DATA NODES */

.index-body > section > div.saas-con > .grid > div:nth-child(3) > .geometric > .geometric-stage > .geometric-node {
    position: absolute;
    z-index: 3;
    overflow: hidden;
    border: .1vw solid rgba(255, 255, 255, .12);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, .07),
            rgba(255, 255, 255, .02)
        );
    box-shadow:
        inset 0 0 2vw rgba(255, 255, 255, .025),
        0 1vw 3vw rgba(0, 0, 0, .2);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

/* LEFT NODE */

.index-body > section > div.saas-con > .grid > div:nth-child(3) > .geometric > .geometric-stage > .geometric-node-left {
    width: 19%;
    height: 23%;
    top: 9%;
    left: 7%;
    padding: 1.5vw;
    border-radius: 2.5vw;
    animation: geometric-node-left 6s ease-in-out infinite;
}

.index-body > section > div.saas-con > .grid > div:nth-child(3) > .geometric > .geometric-stage > .geometric-node-left > .geometric-node-accent {
    width: 40%;
    height: .25vw;
    display: block;
    border-radius: 2vw;
    background-color: var(--secondary-color);
    box-shadow: 0 0 .7vw var(--secondary-color);
}

.index-body > section > div.saas-con > .grid > div:nth-child(3) > .geometric > .geometric-stage > .geometric-node-left > .geometric-node-data {
    width: 100%;
    margin-top: 2vw;
    display: flex;
    flex-direction: column;
    gap: .6vw;
}

.index-body > section > div.saas-con > .grid > div:nth-child(3) > .geometric > .geometric-stage > .geometric-node-left > .geometric-node-status {
    width: 70%;
    margin-top: 1.2vw;
    display: flex;
    align-items: center;
    gap: .5vw;
}

/* RIGHT NODE */

.index-body > section > div.saas-con > .grid > div:nth-child(3) > .geometric > .geometric-stage > .geometric-node-right {
    width: 25%;
    height: 14%;
    right: 7%;
    bottom: 14%;
    padding: 1.3vw 1.5vw;
    border-radius: 3vw;
    animation: geometric-node-right 6s ease-in-out -3s infinite;
}

.index-body > section > div.saas-con > .grid > div:nth-child(3) > .geometric > .geometric-stage > .geometric-node-right > .geometric-node-data {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: .6vw;
}

.index-body > section > div.saas-con > .grid > div:nth-child(3) > .geometric > .geometric-stage > .geometric-node-right > .geometric-node-progress {
    width: 100%;
    height: .55vw;
    margin-top: 1vw;
    overflow: hidden;
    border-radius: 2vw;
    background-color: rgba(255, 255, 255, .06);
}

/* NODE INNER LINES */

.index-body > section > div.saas-con > .grid > div:nth-child(3) > .geometric .geometric-node-data > span {
    height: .22vw;
    display: block;
    border-radius: 2vw;
    background-color: rgba(255, 255, 255, .28);
}

.index-body > section > div.saas-con > .grid > div:nth-child(3) > .geometric .geometric-node-data > span:first-child {
    width: 62%;
}

.index-body > section > div.saas-con > .grid > div:nth-child(3) > .geometric .geometric-node-data > span:last-child {
    width: 35%;
    opacity: .5;
}

.index-body > section > div.saas-con > .grid > div:nth-child(3) > .geometric .geometric-node-status > i {
    width: .45vw;
    aspect-ratio: 1;
    display: block;
    border-radius: 50%;
    background-color: var(--secondary-color);
    box-shadow: 0 0 .5vw var(--secondary-color);
}

.index-body > section > div.saas-con > .grid > div:nth-child(3) > .geometric .geometric-node-status > span {
    width: 55%;
    height: .22vw;
    display: block;
    border-radius: 2vw;
    background-color: rgba(255, 255, 255, .18);
}

.index-body > section > div.saas-con > .grid > div:nth-child(3) > .geometric .geometric-node-progress > span {
    width: 45%;
    height: 100%;
    display: block;
    border-radius: inherit;
    background-color: var(--secondary-color);
    box-shadow: 0 0 .8vw var(--secondary-color);
    animation: geometric-progress 4s ease-in-out infinite;
}

.index-body > section > div.saas-con > .grid > div:nth-child(3) > .geometric > .geometric-stage > .geometric-core {
    width: 29%;
    aspect-ratio: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 4;
    transform: translate(-50%, -50%);
}

.index-body > section > div.saas-con > .grid > div:nth-child(3) > .geometric .geometric-square {
    position: absolute;
    border-radius: 1.5vw;
    background-color: rgba(255, 255, 255, .012);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.index-body > section > div.saas-con > .grid > div:nth-child(3) > .geometric .geometric-square-outer {
    inset: 0;
    border: .18vw solid rgba(255, 255, 255, .3);
    box-shadow:
        0 0 2vw rgba(255, 255, 255, .05),
        inset 0 0 2vw rgba(255, 255, 255, .025);
    animation: geometric-square-outer 8s ease-in-out infinite;
}

.index-body > section > div.saas-con > .grid > div:nth-child(3) > .geometric .geometric-square-inner {
    inset: 12%;
    border: .15vw solid var(--secondary-color);
    box-shadow:
        0 0 1.8vw var(--secondary-color-shadow),
        inset 0 0 1.8vw var(--secondary-color-shadow);
    animation: geometric-square-inner 7s ease-in-out infinite;
}

.index-body > section > div.saas-con > .grid > div:nth-child(3) > .geometric .geometric-orb {
    width: 36%;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    background-color: var(--trinary-color);
    box-shadow:
        0 0 2vw var(--trinary-color),
        0 0 4vw var(--secondary-color-shadow);
    transform: translate(-50%, -50%);
    animation: geometric-orb-pulse 3s ease-in-out infinite;
}

.index-body > section > div.saas-con > .grid > div:nth-child(3) > .geometric .geometric-orb > span {
    width: 12%;
    aspect-ratio: 1;
    display: block;
    position: absolute;
    top: 30%;
    left: 30%;
    border-radius: 50%;
    background-color: var(--secondary-color);
    box-shadow: 0 0 .8vw var(--secondary-color);
}

.index-body > section > div.saas-con > .grid > div:nth-child(3) > .geometric .geometric-particle {
    width: .45vw;
    aspect-ratio: 1;
    position: absolute;
    z-index: 2;
    border-radius: 50%;
    background-color: var(--secondary-color);
    box-shadow: 0 0 .8vw var(--secondary-color);
    animation: geometric-particle 4s ease-in-out infinite;
}

.index-body > section > div.saas-con > .grid > div:nth-child(3) > .geometric .geometric-particle-one {
    top: 24%;
    left: 34%;
}

.index-body > section > div.saas-con > .grid > div:nth-child(3) > .geometric .geometric-particle-two {
    top: 40%;
    right: 27%;
    animation-delay: -1s;
}

.index-body > section > div.saas-con > .grid > div:nth-child(3) > .geometric .geometric-particle-three {
    right: 32%;
    bottom: 23%;
    animation-delay: -2s;
}

.index-body > section > div.saas-con > .grid > div:nth-child(3) > .geometric .geometric-particle-four {
    bottom: 31%;
    left: 29%;
    animation-delay: -3s;
}

@keyframes geometric-square-outer {

    0%,
    100% {
        transform: rotate(8deg) scale(1);
    }

    50% {
        transform: rotate(-7deg) scale(1.05);
    }

}

@keyframes geometric-square-inner {

    0%,
    100% {
        transform: rotate(-8deg) scale(.95);
    }

    50% {
        transform: rotate(12deg) scale(1);
    }

}

@keyframes geometric-orb-pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(.9);
        box-shadow:
            0 0 1vw var(--trinary-color),
            0 0 2vw var(--secondary-color-shadow);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.08);
        box-shadow:
            0 0 2.5vw var(--trinary-color),
            0 0 5vw var(--secondary-color);
    }

}

@keyframes geometric-node-left {

    0%,
    100% {
        opacity: .45;
        transform: translateY(1vw);
    }

    50% {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes geometric-node-right {

    0%,
    100% {
        opacity: .45;
        transform: translateY(-1vw);
    }

    50% {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes geometric-connection-move {

    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -28;
    }

}

@keyframes geometric-progress {

    0%,
    100% {
        width: 25%;
    }

    50% {
        width: 85%;
    }

}

@keyframes geometric-particle {

    0%,
    100% {
        opacity: .25;
        transform: scale(.6);
    }

    50% {
        opacity: 1;
        transform: scale(1.3);
    }

}

@keyframes geometric-background-pulse {

    0%,
    100% {
        opacity: .08;
        transform: translate(-50%, -50%) scale(.8);
    }

    50% {
        opacity: .3;
        transform: translate(-50%, -50%) scale(1.1);
    }

}

@media (max-width: 768px) {

    .index-body > section > div.saas-con > .grid > div:nth-child(3) {
        flex-direction: column;
    }

    .index-body > section > div.saas-con > .grid > div:nth-child(3) > .dets,
    .index-body > section > div.saas-con > .grid > div:nth-child(3) > .geometric {
        width: 100%;
    }

    .index-body > section > div.saas-con > .grid > div:nth-child(3) > .geometric {
        min-height: 75vw;
        margin-top: 8vw;
    }

    .index-body > section > div.saas-con > .grid > div:nth-child(3) > .geometric > .geometric-stage {
        min-height: 75vw;
        border-radius: 8vw;
    }

    .index-body > section > div.saas-con > .grid > div:nth-child(3) > .geometric > .geometric-stage > .geometric-node-left {
        padding: 3vw;
        border-radius: 5vw;
    }

    .index-body > section > div.saas-con > .grid > div:nth-child(3) > .geometric > .geometric-stage > .geometric-node-right {
        padding: 2.5vw 3vw;
        border-radius: 6vw;
    }

    .index-body > section > div.saas-con > .grid > div:nth-child(3) > .geometric .geometric-node-data {
        gap: 1.3vw;
    }

    .index-body > section > div.saas-con > .grid > div:nth-child(3) > .geometric .geometric-node-data > span,
    .index-body > section > div.saas-con > .grid > div:nth-child(3) > .geometric .geometric-node-status > span {
        height: .5vw;
    }

    .index-body > section > div.saas-con > .grid > div:nth-child(3) > .geometric .geometric-node-progress {
        height: 1.2vw;
        margin-top: 2vw;
    }

    .index-body > section > div.saas-con > .grid > div:nth-child(3) > .geometric .geometric-node-status > i {
        width: 1vw;
    }

    .index-body > section > div.saas-con > .grid > div:nth-child(3) > .geometric .geometric-square {
        border-radius: 3vw;
    }

    .index-body > section > div.saas-con > .grid > div:nth-child(3) > .geometric .geometric-particle {
        width: 1vw;
    }

}

@media (prefers-reduced-motion: reduce) {

    .geometric-stage *,
    .geometric-stage::before {
        animation: none !important;
    }

}



/* =========================================== */
/* ================ HOME PAGE - CONSULTING CON */
/* =========================================== */



.index-body > section > div.consulting-con {
    width: 100%;
    height: auto;
    padding: 5% 10%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 100px;
    position: relative;
    z-index: 3;
}

@media (max-width:1443px) {
    .index-body > section > div.consulting-con {
        padding: 50px 5%;
    }
}

@media (max-width:1025px) {
    .index-body > section > div.consulting-con {
        gap: 30px;
    }
}

.index-body > section > div.consulting-con > .header {
    width: 100%;
    height: auto;
}

.index-body > section > div.consulting-con > .header > h2 {
    width: 100%;
    text-align: center;
    font-size: var(--big-font-size);
}

.index-body > section > div.consulting-con > .grid {
    width: 70%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

@media (max-width:1443px) {
    .index-body > section > div.consulting-con > .grid {
        width: 90%;
    }
}

@media (max-width:1025px) {
    .index-body > section > div.consulting-con > .grid {
        width: 100%;
        grid-template-columns: repeat(2,1fr);
    }
}

.index-body > section > div.consulting-con > .grid > div {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.082);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    border-radius: 26px;
    background-color: var(--primary-color-shade);
    transition:var(--transition);
    cursor: pointer;
}

.index-body > section > div.consulting-con > .grid > div:hover {
    transform: translateY(-5px);
    box-shadow: 0px 0px 10px 0px var(--secondary-color-shadow);
}

.index-body > section > div.consulting-con > .grid > div > svg {
    width: 30px;
    height: 30px;
    fill: var(--secondary-color);
}



/* ============================================= */
/* ================ HOME PAGE - REQUEST DEMO CON */
/* ============================================= */



.index-body > section > div.request-demo-con {
    width: 100%;
    height: auto;
    padding: 5% 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 100px;
    position: relative;
    z-index: 3;
}

@media (max-width:1443px) {
    .index-body > section > div.request-demo-con {
        padding: 50px 5%;
        padding-bottom: 100px;
    }
}

.index-body > section > div.request-demo-con > .container {
    width: 60%;
    height: auto;
    padding: 80px 50px;
    border-radius: 36px;
    background-color: var(--primary-color-shade);
    border: 1px solid rgba(255, 255, 255, 0.082);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

@media (max-width:1443px) {
    .index-body > section > div.request-demo-con > .container {
        width: 70%;
    }
}

@media (max-width:1025px) {
    .index-body > section > div.request-demo-con > .container {
        width: 100%;
        padding: 50px 30px;
    }
}

.index-body > section > div.request-demo-con > .container > h2 {
    font-size: var(--big-font-size);
    text-align: center;
}

.index-body > section > div.request-demo-con > .container > p {
    opacity: .9;
    text-align: center;
}

.index-body > section > div.request-demo-con > .container > .btns {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.index-body > section > div.request-demo-con > .container > .btns > a {
    width: auto;
    height: auto;
    padding: 20px;
    border-radius: 26px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.082);
    transition: var(--transition);
    white-space: nowrap;
}

.index-body > section > div.request-demo-con > .container > .btns > a:first-child {
    background-color: var(--secondary-color);
    color: var(--trinary-color);
}

.index-body > section > div.request-demo-con > .container > .btns > a:first-child:hover {
    transform: translateY(-5px);
    box-shadow: 0px 20px 50px 0px var(--secondary-color-shadow);
}

.index-body > section > div.request-demo-con > .container > .btns > a:last-child {
    background-color: rgba(255, 255, 255, 0.062);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
}

.index-body > section > div.request-demo-con > .container > .btns > a:last-child:hover {
    transform: translateY(-5px);
    box-shadow: 0px 20px 50px 0px rgba(255, 255, 255, 0.062);
}






























/* ============================== */
/* ================ ABOUT US PAGE */
/* ============================== */



.about-us-body {
    width: 100%;
    height: auto;
}

.about-us-body > section {
    width: 100%;
    height: auto;
    padding: calc(100px + 30px) 0 200px 0;
}


/* ====================================== */
/* ================ ABOUT US PAGE - INTRO */
/* ====================================== */


.about-us-body > section > .about-hero {
    width: 90%;
    height: auto;
    margin: 30px 0 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 100px;
}

.about-us-body > section > .about-hero::before,
.about-us-body > section > .about-hero::after {
    content: '';
    width: calc(10% + 1px);
    height: 40%;
    background-color: var(--primary-color);
    position: absolute;
    left: 40%;
    z-index: 5;
}

.about-us-body > section > .about-hero::before {
    top: 0;
    border-radius: 0 0 100px 100px;
}

.about-us-body > section > .about-hero::after {
    bottom: 0;
    border-radius: 100px 100px 0 0;
}

.about-us-body > section > .about-hero > .about-hero-background {
    width: 100%;
    height: 60%;
    background-color: var(--primary-color-shade);
    position: absolute;
    top: 20%;
    left: 0;
    z-index: 1;
}

.about-us-body > section > .about-hero > .about-hero-content {
    width: 40%;
    padding: 5%;
    border-radius: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    background-color: var(--primary-color-shade);
    z-index: 2;
}

@media (max-width:1100px) {
    .about-us-body > section > .about-hero > .about-hero-content {
        background-color: unset;
    }
}

@media (max-width:768px) {
    .about-us-body > section > .about-hero > .about-hero-content {
        align-items: center;
    }
}

.about-us-body > section > .about-hero > .about-hero-content > .about-hero-eyebrow {
    color: var(--secondary-color);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@media (max-width:768px) {
    .about-us-body > section > .about-hero > .about-hero-content > .about-hero-eyebrow {
        width: auto;
        height: auto;
        padding: 20px;
        color: var(--trinary-color);
        font-weight: bold;
        background-color: #6747c76b;
        backdrop-filter: blur(50px);
        -webkit-backdrop-filter: blur(50px);
        text-decoration: none;
        border-radius: 26px;
        border: 1px solid rgba(255, 255, 255, 0.089);
        transition: var(--transition);
        margin-top: 5px;
    }
}

.about-us-body > section > .about-hero > .about-hero-content > h1 {
    color: var(--trinary-color);
    font-size: var(--huge-font-size);
}

@media (max-width:768px) {
    .about-us-body > section > .about-hero > .about-hero-content > h1 {
        text-align: center;
    }
}

.about-us-body > section > .about-hero > .about-hero-content > p {
    color: var(--trinary-color);
    line-height: 1.8;
    opacity: .86;
}

@media (max-width:768px) {
    .about-us-body > section > .about-hero > .about-hero-content > p {
        text-align: center;
    }
}

.about-us-body > section > .about-hero > .about-hero-content > .about-hero-socials,
.about-us-body > section > .about-hero > .about-hero-content > .about-hero-actions {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
}

@media (max-width:768px) {
    .about-us-body > section > .about-hero > .about-hero-content > .about-hero-socials,
    .about-us-body > section > .about-hero > .about-hero-content > .about-hero-actions {
        justify-content: center;
    }
}

.about-us-body > section > .about-hero > .about-hero-content > .about-hero-socials > a {
    width: 60px;
    height: 60px;
    padding: 15px;
    color: var(--trinary-color);
    background-color: rgba(255, 255, 255, .096);
    text-decoration: none;
    border-radius: 50%;
    transition: var(--transition);
}

.about-us-body > section > .about-hero > .about-hero-content > .about-hero-socials > a:hover {
    transform: translateY(-5px);
    box-shadow: 0px 20px 50px 0px rgba(255, 255, 255, 0.062);
}

.about-us-body > section > .about-hero > .about-hero-content > .about-hero-socials > a > svg {
    width: 100%;
    height: 100%;
    color: currentColor;
    opacity: .7;
    transition: var(--transition);
}

.about-us-body > section > .about-hero > .about-hero-content > .about-hero-socials > a:hover > svg {
    opacity: .9;
}

.about-us-body > section > .about-hero > .about-hero-content > .about-hero-actions > a,
.about-us-body > section > .about-capabilities > a,
.about-us-body > section > .about-collaboration > .about-collaboration-options > .about-collaboration-card > a {
    width: auto;
    height: auto;
    padding: 20px;
    color: var(--trinary-color);
    background-color: var(--secondary-color);
    border: 1px solid rgba(255, 255, 255, .082);
    border-radius: 26px;
    text-decoration: none;
    transition: var(--transition);
    text-align: center;
}

.about-us-body > section > .about-hero > .about-hero-content > .about-hero-actions > a:hover,
.about-us-body > section > .about-capabilities > a:hover,
.about-us-body > section > .about-collaboration > .about-collaboration-options > .about-collaboration-card > a:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px 0 var(--secondary-color-shadow);
}

.about-us-body > section > .about-hero > .about-hero-visual {
    width: 50%;
    height: 720px;
    padding: 2%;
    background-color: var(--primary-color-shade);
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 2;
}

@media (max-width:1100px) {
    .about-us-body > section > .about-hero > .about-hero-visual {
        background-color: unset;
    }
}

.about-us-body > section > .about-hero > .about-hero-visual > img {
    width: 80%;
    max-width: none;
    height: auto;
    object-fit: contain;
    transform: rotate(-1.5deg) translateX(1%);
    filter: drop-shadow(0 40px 80px #6747c746);
}

.about-us-body.ar > section > .about-hero {
    margin-right: 5%;
    margin-left: 0;
}

.about-us-body.ar > section > .about-hero::before,
.about-us-body.ar > section > .about-hero::after {
    right: 40%;
    left: auto;
}

.about-us-body.ar > section > .about-hero > .about-hero-content {
    align-items: flex-start;
    text-align: right;
} 

@media (max-width:768px) {
    .about-us-body.ar > section > .about-hero > .about-hero-content {
        align-items: center;
    }
}


/* ========================================= */
/* ================ ABOUT US PAGE - SERVICES */
/* ========================================= */


.about-us-body > section > .about-services {
    width: 100%;
    height: auto;
    padding: 10% 5% 5% 5%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 5;
}

.about-us-body > section > .about-services > .about-services-header {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.about-us-body > section > .about-services > .about-services-header > h2 {
    font-size: var(--big-font-size);
    text-align: center;
}

.about-us-body > section > .about-services > .about-services-header > p {
    width: 50%;
    text-align: center;
    line-height: 1.8;
    opacity: .9;
}

.about-us-body > section > .about-services > .about-services-grid {
    width: 100%;
    height: auto;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.about-us-body > section > .about-services > .about-services-grid > .about-service-card {
    height: auto;
    padding: 30px;
    background-color: var(--primary-color-shade);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.about-us-body > section > .about-services > .about-services-grid > .about-service-card > svg {
    width: 70px;
    height: 70px;
    stroke: var(--secondary-color);
}

.about-us-body > section > .about-services > .about-services-grid > .about-service-card > h3,
.about-us-body > section > .about-services > .about-services-grid > .about-service-card > p {
    text-align: center;
}

.about-us-body > section > .about-services > .about-services-grid > .about-service-card > p {
    line-height: 1.7;
    opacity: .8;
}


/* ============================================= */
/* ================ ABOUT US PAGE - CAPABILITIES */
/* ============================================= */


.about-us-body > section > .about-capabilities {
    width: 100%;
    height: auto;
    padding: 5%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    position: relative;
}

.about-us-body > section > .about-capabilities > h2 {
    width: 100%;
    font-size: var(--big-font-size);
    text-align: center;
    z-index: 5;
}

.about-us-body > section > .about-capabilities > p {
    width: 60%;
    margin-top: 20px;
    text-align: center;
    line-height: 1.8;
    z-index: 5;
}

.about-us-body > section > .about-capabilities > .about-capability-tags {
    width: 100%;
    height: auto;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    z-index: 5;
}

.about-us-body > section > .about-capabilities > .about-capability-tags > span {
    width: auto;
    height: auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, .062);
    border: 1px solid rgba(255, 255, 255, .082);
    border-radius: 26px;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
}

.about-us-body > section > .about-capabilities > .about-capability-cluster {
    width: auto;
    height: auto;
    display: grid;
    grid-template-columns: 450px 450px 450px;
    grid-template-rows: 450px 450px 450px;
    gap: 20px;
    transform: translateY(100px);
    filter: drop-shadow(0 0 300px rgba(103, 71, 199, .17));
}

@media (max-width:500px) {
    .about-us-body > section > .about-capabilities > .about-capability-cluster {
        display: block;
    }
}

.about-us-body.ar > section > .about-capabilities > .about-capability-cluster {
    direction: ltr;
}

.about-us-body > section > .about-capabilities > .about-capability-cluster > .about-capability-item {
    padding: 70px;
    background-color: var(--primary-color-shade);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 22px;
}

@media (max-width:500px) {
    .about-us-body > section > .about-capabilities > .about-capability-cluster > .about-capability-item {
        clip-path: unset;
        height: auto;
        min-height: unset;
        background-color: unset;
    }
}

.about-us-body > section > .about-capabilities > .about-capability-cluster > .about-capability-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.about-us-body > section > .about-capabilities > .about-capability-cluster > .about-capability-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.about-us-body > section > .about-capabilities > .about-capability-cluster > .about-capability-item:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
}

.about-us-body > section > .about-capabilities > .about-capability-cluster > .about-capability-item:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
    transform: translateX(-52%) translateY(-26%);
}

.about-us-body > section > .about-capabilities > .about-capability-cluster > .about-capability-item:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
    transform: translateX(-52%) translateY(-26%);
}

.about-us-body > section > .about-capabilities > .about-capability-cluster > .about-capability-item:nth-child(6) {
    grid-column: 2;
    grid-row: 3;
    transform: translateY(-52%);
}

.about-us-body > section > .about-capabilities > .about-capability-cluster > .about-capability-item > svg {
    width: 50px;
    height: 50px;
    color: var(--secondary-color);
}

.about-us-body > section > .about-capabilities > .about-capability-cluster > .about-capability-item > p {
    width: 100%;
    text-align: center;
    line-height: 1.7;
}

.about-us-body > section > .about-capabilities > a {
    position: relative;
    z-index: 10;
}


/* ============================================= */
/* ================ ABOUT US PAGE - COLLABORATION */
/* ============================================= */


.about-us-body > section > .about-collaboration {
    width: 100%;
    height: auto;
    padding: 5%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.about-us-body > section > .about-collaboration > h2 {
    width: 100%;
    font-size: var(--big-font-size);
    text-align: center;
}

.about-us-body > section > .about-collaboration > p {
    width: 60%;
    margin-top: 20px;
    text-align: center;
    line-height: 1.8;
}

.about-us-body > section > .about-collaboration > .about-collaboration-options {
    width: 100%;
    height: auto;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
}

.about-us-body > section > .about-collaboration > .about-collaboration-options > .about-collaboration-card {
    width: 40%;
    height: auto;
    padding: 40px;
    background-color: var(--primary-color-shade);
    border: 1px solid rgba(243, 240, 250, .1);
    border-radius: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    overflow: hidden;
    position: relative;
}

.about-us-body > section > .about-collaboration > .about-collaboration-options > .about-collaboration-card > h3 {
    font-size: var(--intermediate-font-size);
    text-align: center;
}

.about-us-body > section > .about-collaboration > .about-collaboration-options > .about-collaboration-card > p {
    width: 100%;
    margin-top: 30px;
    text-align: center;
    line-height: 1.7;
}


/* =================================== */
/* ================ RESPONSIVE DESIGN */
/* =================================== */


@media (max-width: 1443px) {
    .about-us-body > section > .about-services > .about-services-header > p {
        width: 60%;
    }

    .about-us-body > section > .about-capabilities > .about-capability-cluster {
        grid-template-columns: 350px 350px 350px;
        grid-template-rows: 350px 350px 350px;
    }
}

@media (max-width: 1100px) {
    .about-us-body > section > .about-hero {
        border-radius: 70px;
    }

    .about-us-body > section > .about-hero::before,
    .about-us-body > section > .about-hero::after,
    .about-us-body > section > .about-hero > .about-hero-background {
        display: none;
    }

    .about-us-body > section > .about-hero > .about-hero-content,
    .about-us-body > section > .about-hero > .about-hero-visual {
        width: 50%;
        border-radius: 70px;
    }

    .about-us-body > section > .about-services > .about-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-us-body > section > .about-capabilities > .about-capability-cluster {
        grid-template-columns: 280px 280px 280px;
        grid-template-rows: 280px 280px 280px;
    }

    .about-us-body > section > .about-capabilities > .about-capability-cluster > .about-capability-item {
        padding: 45px;
    }
}

@media (max-width: 768px) {
    .about-us-body > section {
        padding-bottom: 100px;
    }

    .about-us-body > section > .about-hero {
        width: 90%;
        flex-direction: column;
        overflow: visible;
        border-radius: 45px;
    }

    .about-us-body > section > .about-hero > .about-hero-content,
    .about-us-body > section > .about-hero > .about-hero-visual {
        width: 100%;
        border-radius: 45px;
    }

    .about-us-body > section > .about-hero > .about-hero-content {
        padding: 50px 30px;
    }

    .about-us-body > section > .about-hero > .about-hero-visual {
        height: 520px;
    }

    .about-us-body > section > .about-services > .about-services-header > p,
    .about-us-body > section > .about-capabilities > p,
    .about-us-body > section > .about-collaboration > p {
        width: 85%;
    }

    .about-us-body > section > .about-capabilities > .about-capability-cluster {
        width: 100%;
        margin: 35px 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
        gap: 14px;
        transform: none;
    }

    .about-us-body > section > .about-capabilities > .about-capability-cluster > .about-capability-item,
    .about-us-body > section > .about-capabilities > .about-capability-cluster > .about-capability-item:nth-child(n) {
        min-height: 250px;
        padding: 40px 25px;
        grid-column: auto;
        grid-row: auto;
        transform: none;
    }

    .about-us-body > section > .about-collaboration > .about-collaboration-options {
        flex-direction: column;
    }

    .about-us-body > section > .about-collaboration > .about-collaboration-options > .about-collaboration-card {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .about-us-body > section > .about-hero > .about-hero-content > .about-hero-socials,
    .about-us-body > section > .about-hero > .about-hero-content > .about-hero-actions {
        gap: 12px;
        flex-wrap: wrap;
    }

    .about-us-body > section > .about-hero > .about-hero-content > .about-hero-socials > a {
        width: 52px;
        height: 52px;
    }

    .about-us-body > section > .about-hero > .about-hero-visual {
        height: 390px;
        padding: 0;
    }

    .about-us-body > section > .about-services,
    .about-us-body > section > .about-capabilities,
    .about-us-body > section > .about-collaboration {
        padding-right: 20px;
        padding-left: 20px;
    }

    .about-us-body > section > .about-services > .about-services-header > p,
    .about-us-body > section > .about-capabilities > p,
    .about-us-body > section > .about-collaboration > p {
        width: 100%;
    }

    .about-us-body > section > .about-services > .about-services-grid {
        grid-template-columns: 1fr;
    }

    .about-us-body > section > .about-capabilities > .about-capability-cluster > .about-capability-item, .about-us-body > section > .about-capabilities > .about-capability-cluster > .about-capability-item:nth-child(n) {
        min-height: unset;
        padding: 40px 25px;
        grid-column: auto;
        grid-row: auto;
        transform: none;
    }
}



































/* ================================ */
/* ================ CONTACT US PAGE */
/* ================================ */





.contact-us-body > section {
    width: 100%;
    height: auto;
}



/* ======================================== */
/* ================ CONTACT US PAGE - INTRO */
/* ======================================== */



.contact-us-body > section > .intro {
    width: 100%;
    min-height: 100dvh;
    padding: 5% 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

@media (max-width:1443px) {
    .contact-us-body > section > .intro {
        padding: 5%;
        margin-top: 80px;
    }
}

.contact-us-body.ar > section > .intro {
    direction: rtl;
}

.contact-us-body > section > .intro > .container {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: start;
    align-items: stretch;
    border-radius: 36px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    z-index: 10;
    margin-top: 50px;
    overflow: hidden;
}

@media (max-width:1025px) {
    .contact-us-body > section > .intro > .container {
        flex-direction: column;
    }
}

.contact-us-body > section > .intro > .container > .dets {
    width: 43%;
    padding: 10% 5%;
    background: linear-gradient(145deg, #0e0e0ea1, #0e0e0e59);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 20px;
    position: relative;
    border-radius: 36px 0px 0px 36px;
}

@media (max-width:1025px) {

    .contact-us-body > section > .intro > .container > .dets {
        width: 100%;
        justify-content: center;
        align-items: center;
        border-radius: 36px 36px 0px 0px;
    }

    .contact-us-body.ar > section > .intro > .container > .dets {
        border-radius: 36px 36px 0px 0px !important;
    }

}

.contact-us-body > section > .intro > .container > .dets::before {
    content: "";
    width: 240px;
    height: 240px;
    position: absolute;
    right: -110px;
    bottom: 90px;
    background: radial-gradient(circle, rgba(104, 71, 199, 0.2), transparent 67%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-us-body > section > .intro > .container > .dets::after {
    content: "";
    width: 150px;
    height: 150px;
    position: absolute;
    top: -80px;
    left: -60px;
    border: 1px solid rgba(104, 71, 199, 0.16);
    border-radius: 50%;
    box-shadow: 0 0 0 30px rgba(104, 71, 199, 0.025), 0 0 0 60px rgba(104, 71, 199, 0.018);
    pointer-events: none;
}

.contact-us-body.ar > section > .intro > .container > .dets {
    border-radius: 0px 36px 36px 0px;
}

.contact-us-body > section > .intro > .container > .dets > strong {
    width: auto;
    height: auto;
    padding: 20px;
    background-color: #6747c76b;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    text-decoration: none;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.089);
    transition: var(--transition);
    margin-top: 5px;
}

.contact-us-body > section > .intro > .container > .dets > h1 {
    width: 100%;
    font-size: var(--big-font-size);
}

.contact-us-body > section > .intro > .container > .dets > p {
    width: 100%;
    opacity: .9;
    margin-top: 30px;
}

@media (min-width:1025px) and (max-width:1300px) {
    .contact-us-body > section > .intro > .container > .dets > p {
        margin-top: 10px;
    }
}

@media (max-width:1025px) {
    .contact-us-body > section > .intro > .container > .dets > h1,
    .contact-us-body > section > .intro > .container > .dets > p {
        text-align: center;
        margin-top: 10px;
    }
}

.contact-us-body > section > .intro > .container > .dets > .grid {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(1,1fr);
    gap: 20px;
    row-gap: 40px;
    margin-top: 30px;
}

@media (max-width:1600px) {
    .contact-us-body > section > .intro > .container > .dets > .grid {
        margin-top: 10px;
    }
}

@media (max-width:500px) {
    .contact-us-body > section > .intro > .container > .dets > .grid {
        row-gap: 25px;
    }
}

.contact-us-body > section > .intro > .container > .dets > .grid > .item {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 10px;
}

@media (max-width:1025px) {
    .contact-us-body > section > .intro > .container > .dets > .grid > .item {
        justify-content: start;
        align-items: center;
    }
}

.contact-us-body > section > .intro > .container > .dets > .grid > .item > strong {
    width: 100%;
    margin-bottom: 10px;
    white-space: nowrap;
}

@media (max-width:1025px) {
    .contact-us-body > section > .intro > .container > .dets > .grid > .item > strong {
        text-align: center;
    }
}

.contact-us-body > section > .intro > .container > .dets > .grid > .item > a {
    width: 100%;
    height: auto;
    text-decoration: none;
    opacity: .8;
    transition: var(--transition);
    letter-spacing: 1px;
}

@media (max-width:1025px) {
    .contact-us-body > section > .intro > .container > .dets > .grid > .item > a {
        text-align: center;
    }
}

.contact-us-body.ar > section > .intro > .container > .dets > .grid > .item > a {
    direction: ltr;
    text-align: end;
}

@media (max-width:1025px) {
    .contact-us-body.ar > section > .intro > .container > .dets > .grid > .item > a {
        text-align: center;
    }
}

.contact-us-body > section > .intro > .container > .dets > .grid > .item > a:hover {
    transform: translateY(-2px);
    opacity: 1;
}

.contact-us-body > section > .intro > .container > .dets > .grid > .item > .socials {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 30px;
    position: relative;
    z-index: 2;
}

@media (max-width:1025px) {
    .contact-us-body > section > .intro > .container > .dets > .grid > .item > .socials {
        justify-content: center;
    }
}

.contact-us-body > section > .intro > .container > .dets > .grid > .item > .socials > a {
    width: 60px;
    height: 60px;
    padding: 15px;
    color: var(--trinary-color);
    background-color: rgba(255, 255, 255, .096);
    text-decoration: none;
    border-radius: 50%;
    transition: var(--transition);
}

.contact-us-body > section > .intro > .container > .dets > .grid > .item > .socials > a:hover {
    transform: translateY(-5px);
    box-shadow: 0px 20px 50px 0px rgba(255, 255, 255, 0.062);
}

.contact-us-body > section > .intro > .container > .dets > .grid > .item > .socials > a > svg {
    width: 100%;
    height: 100%;
    color: currentColor;
    opacity: .7;
    transition: var(--transition);
}

.contact-us-body > section > .intro > .container > .dets > .grid > .item > .socials > a:hover > svg {
    opacity: .9;
}

.contact-us-body > section > .intro > .container > form {
    width: 57%;
    height: auto;
    padding: 10% 5%;
    background-color: var(--primary-color-shade);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: start;
    gap: 20px;
    z-index: 5;
    border-radius: 0px 36px 36px 0px;
}

@media (max-width:1025px) {
    .contact-us-body > section > .intro > .container > form {
        width: 100%;
        justify-content: center;
        border-radius: 0px 0px 36px 36px;
    }
}

.contact-us-body.ar > section > .intro > .container > form {
    border-radius: 36px 0px 0px 36px;
}

.contact-us-body > section > .intro > .container > form > .opt-grp {
    width: calc(50% - 10px);
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 15px;
}

@media (min-width:1025px) and (max-width:1443px) {
    .contact-us-body > section > .intro > .container > form > .opt-grp {
        width: 100%;
    }
}

@media (max-width:500px) {
    .contact-us-body > section > .intro > .container > form > .opt-grp {
        width: 100%;
    }
}

.contact-us-body > section > .intro > .container > form > .opt-grp.full-width {
    width: 100%;
}

.contact-us-body > section > .intro > .container > form > .opt-grp > label {
    width: 100%;
}

.contact-us-body > section > .intro > .container > form > .opt-grp > label > span {
    color: red;
}

.contact-us-body > section > .intro > .container > form > .opt-grp > input {
    width: 100%;
    padding: 20px;
    color: var(--trinary-color);
    background-color: rgba(255, 255, 255, 0.018);
    border: 1px solid rgba(255, 255, 255, 0.09);
    outline: none;
    border-radius: 16px;
    font-family: inherit;
    transition: var(--transition);
    box-sizing: border-box;
}

.contact-us-body.ar > section > .intro > .container > form > .opt-grp > input {
    direction: rtl;
}

.contact-us-body > section > .intro > .container > form > .opt-grp > input:focus {
    border-color: rgba(104, 71, 199, 0.75);
    box-shadow: 0 0 0 3px rgba(104, 71, 199, 0.1);
}

.contact-us-body > section > .intro > .container > form > .opt-grp.phone-field {
    position: relative;
    z-index: 20;
}

.contact-us-body > section > .intro > .container > form > .opt-grp.phone-field > label {
    width: 100%;
}

.contact-us-body > section > .intro > .container > form > .opt-grp.phone-field .phone-control {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 10px;
    background-color: transparent;
    border-radius: 16px;
}

.contact-us-body > section > .intro > .container > form > .opt-grp.phone-field .phone-number-input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(104, 71, 199, 0.12);
}

.contact-us-body.ar > section > .intro > .container > form > .opt-grp.phone-field .phone-number-input {
    direction: rtl;
}

.contact-us-body > section > .intro > .container > form > .opt-grp.phone-field > .phone-control > .country-select.is-open > .country-select-trigger {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(104, 71, 199, 0.12);
}

.contact-us-body > section > .intro > .container > form > .opt-grp.phone-field .phone-field:focus-within .phone-control {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(104, 71, 199, 0.12);
}

.contact-us-body > section > .intro > .container > form > .opt-grp.phone-field .country-select {
    position: relative;
    flex-shrink: 0;
}

.contact-us-body > section > .intro > .container > form > .opt-grp.phone-field .country-select-trigger {
    height: 100%;
    padding: 20px;
    border-radius: 16px;
    color: var(--trinary-color);
    background-color: rgba(255, 255, 255, 0.018);
    border: none;
    border: 1px solid rgba(255, 255, 255, 0.09);
    outline: none;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-family: inherit;
}

.contact-us-body > section > .intro > .container > form > .opt-grp.phone-field .country-select-trigger::after {
    content: '';
    width: 1px;
    height: 30%;
    position: absolute;
    top: 35%;
    left: 100%;
    background-color: rgba(255, 255, 255, 0.144);
}

.contact-us-body > section > .intro > .container > form > .opt-grp.phone-field .country-select-trigger:hover,
.contact-us-body > section > .intro > .container > form > .opt-grp.phone-field .country-select-trigger:focus-visible {
    border-color: rgba(104, 71, 199, 0.75);
    box-shadow: 0 0 0 3px rgba(104, 71, 199, 0.1);
    outline: none;
}

.contact-us-body > section > .intro > .container > form > .opt-grp.phone-field .selected-country-iso {
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    transform: translateY(-3px);
}

.contact-us-body > section > .intro > .container > form > .opt-grp.phone-field .country-option-iso {
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--secondary-color);
    font-size: 18px;
    transform: translateY(-2px);
}

.contact-us-body > section > .intro > .container > form > .opt-grp.phone-field .selected-country-code {
    white-space: nowrap;
}

.contact-us-body > section > .intro > .container > form > .opt-grp.phone-field .country-select-arrow {
    width: 11px;
    height: 7px;
    margin-left: auto;
    opacity: 0.65;
    transition: transform 0.25s ease;
}

.contact-us-body > section > .intro > .container > form > .opt-grp.phone-field .country-select.is-open .country-select-arrow {
    transform: rotate(180deg);
}

.contact-us-body > section > .intro > .container > form > .opt-grp.phone-field .phone-input-wrapper {
    min-width: 0;
    position: relative;
    flex: 1;
}

.contact-us-body > section > .intro > .container > form > .opt-grp.phone-field .phone-number-input {
    width: 100%;
    min-width: 0;
    height: 100%;
    flex: 1;
    padding: 20px;
    border-radius: 16px;
    color: var(--trinary-color);
    background-color: rgba(255, 255, 255, 0.018);
    border: none;
    outline: none;
    font-family: inherit;
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.contact-us-body > section > .intro > .container > form > .opt-grp.phone-field .country-select-menu {
    width: min(370px, 85vw);
    max-width: 370px;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    color: var(--trinary-color);
    background-color: var(--trinary-color);
    border: 1px solid white;
    border-radius: 16px;
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.45),
        0 0 40px rgba(104, 71, 199, 0.12);
    overflow: hidden;
    z-index: 1000;
}

.contact-us-body > section > .intro > .container > form > .opt-grp.phone-field .country-select-menu[hidden] {
    display: none;
}

.contact-us-body > section > .intro > .container > form > .opt-grp.phone-field .country-search-container {
    position: relative;
    padding: 12px;
}

.contact-us-body > section > .intro > .container > form > .opt-grp.phone-field .country-search-icon {
    width: 18px;
    height: 18px;
    position: absolute;
    top: 50%;
    left: 26px;
    stroke: var(--secondary-color) !important;
    pointer-events: none;
    transform: translateY(-50%);
}

.contact-us-body > section > .intro > .container > form > .opt-grp.phone-field .country-search {
    width: 100%;
    padding: 15px 15px 15px 43px;
    color: var(--primary-color);
    background-color: rgba(3, 3, 3, 0.055);
    border: 1px solid rgba(3, 3, 3, 0.1);
    border-radius: 12px;
    outline: none;
    font-family: inherit;
    box-sizing: border-box;
    transition: var(--transition);
}

.contact-us-body > section > .intro > .container > form > .opt-grp.phone-field .country-search:focus {
    border-color: var(--secondary-color);
    background-color: rgba(104, 71, 199, 0.09);
}

.contact-us-body > section > .intro > .container > form > .opt-grp.phone-field .country-search::placeholder {
    color: var(--primary-color);
    opacity: .7;
}

.contact-us-body > section > .intro > .container > form > .opt-grp.phone-field .country-options {
    max-height: 280px;
    padding: 8px;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(104, 71, 199, 0.65) transparent;
    padding-right: 15px;
}

.contact-us-body > section > .intro > .container > form > .opt-grp.phone-field .country-option {
    width: 100%;
    padding: 11px 10px;
    color: var(--trinary-color);
    background-color: transparent;
    border: none;
    border-radius: 11px;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    text-align: left;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
}

.contact-us-body > section > .intro > .container > form > .opt-grp.phone-field .country-option:hover,
.contact-us-body > section > .intro > .container > form > .opt-grp.phone-field .country-option:focus-visible {
    background-color: rgba(104, 71, 199, 0.18);
    outline: none;
}

.contact-us-body > section > .intro > .container > form > .opt-grp.phone-field .country-option[aria-selected="true"] {
    background-color: rgba(104, 71, 199, 0.28);
}

.contact-us-body > section > .intro > .container > form > .opt-grp.phone-field .country-option-name {
    overflow: hidden;
    font-size: var(--tiny-font-size);
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--primary-color);
}

.contact-us-body > section > .intro > .container > form > .opt-grp.phone-field .country-option-code {
    color: var(--primary-color);
    font-size: var(--tiny-font-size);
    font-weight: bold;
    opacity: .8;
    white-space: nowrap;
}

.contact-us-body > section > .intro > .container > form > .opt-grp.phone-field .country-no-results {
    padding: 20px;
    color: var(--primary-color);
    text-align: center;
    opacity: .8;
}

.contact-us-body > section > .intro > .container > form > .opt-grp.phone-field .country-options::-webkit-scrollbar {
    width: 5px;
}

.contact-us-body > section > .intro > .container > form > .opt-grp.phone-field .country-options::-webkit-scrollbar-track {
    background-color: transparent;
}

.contact-us-body > section > .intro > .container > form > .opt-grp.phone-field .country-options::-webkit-scrollbar-thumb {
    background-color: rgba(104, 71, 199, 0.65);
    border-radius: 20px;
}

.contact-us-body > section > .intro > .container > form > .opt-grp.phone-field .phone-error {
    display: none;
    margin-top: 8px;
    color: #ff7777;
    font-size: var(--small-font-size);
}

.contact-us-body > section > .intro > .container > form > .opt-grp.phone-field .phone-field.has-error .phone-control {
    border-color: #ff5555;
}

.contact-us-body > section > .intro > .container > form > .opt-grp.phone-field .phone-field.has-error .phone-error {
    display: block;
}

@media screen and (max-width: 600px) {

    .contact-us-body > section > .intro > .container > form > .opt-grp.phone-field .selected-country-iso {
        min-width: 30px;
        width: 30px;
        height: 23px;
        font-size: 16px;
    }

    .contact-us-body > section > .intro > .container > form > .opt-grp.phone-field .selected-country-code {
        font-size: 13px;
    }

    .contact-us-body > section > .intro > .container > form > .opt-grp.phone-field .phone-number-input {
        padding-right: 15px;
        padding-left: 15px;
    }

    .contact-us-body > section > .intro > .container > form > .opt-grp.phone-field .country-select-menu {
        width: min(350px, calc(100vw - 50px));
    }

}

.contact-us-body > section > .intro > .container > form > .opt-grp > .contact-options {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 100px;
}

@media (max-width:1443px) {
    .contact-us-body > section > .intro > .container > form > .opt-grp > .contact-options {
        gap: 50px;
    }
}

@media (max-width:700px) {
    .contact-us-body > section > .intro > .container > form > .opt-grp > .contact-options {
        gap: 0px;
    }
}

.contact-us-body > section > .intro > .container > form > .opt-grp > .contact-options > .contact-option {
    min-width: 0;
    position: relative;
}

.contact-us-body > section > .intro > .container > form > .opt-grp > .contact-options > .contact-option > input {
    width: 1px;
    height: 1px;
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.contact-us-body > section > .intro > .container > form > .opt-grp > .contact-options > .contact-option > label {
    width: 100%;
    min-height: 50px;
    padding: 20px;
    color: rgba(243, 240, 250, 0.58);
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
    box-sizing: border-box;
}

.contact-us-body > section > .intro > .container > form > .opt-grp > .contact-options > .contact-option > label:hover {
    border-color: rgba(255, 255, 255, 0.16);
}

.contact-us-body > section > .intro > .container > form > .opt-grp > .contact-options > .contact-option > label > .radio-mark {
    min-width: 16px;
    width: 16px;
    height: 16px;
    border: 1px solid rgba(243, 240, 250, 0.28);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.contact-us-body > section > .intro > .container > form > .opt-grp > .contact-options > .contact-option > input:checked + label > .radio-mark {
    border: 5px solid var(--secondary-color);
}

.contact-us-body > section > .intro > .container > form > .opt-grp > textarea {
    width: 100%;
    min-height: 125px;
    padding: 20px;
    resize: vertical;
    line-height: 20px;
    color: var(--trinary-color);
    background-color: rgba(255, 255, 255, 0.018);
    border: 1px solid rgba(255, 255, 255, 0.09);
    outline: none;
    border-radius: 16px;
    font-family: inherit;
    transition: var(--transition);
    box-sizing: border-box;
}

.contact-us-body > section > .intro > .container > form > .opt-grp > textarea:focus {
    border-color: rgba(104, 71, 199, 0.75);
    box-shadow: 0 0 0 3px rgba(104, 71, 199, 0.1);
}

.contact-us-body > section > .intro > .container > form > button {
    width: 100%;
    height: auto;
    padding: 20px;
    background-color: var(--secondary-color);
    border: none;
    border-radius: 26px;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    cursor: pointer;
}

.contact-us-body > section > .intro > .container > form > button:hover {
    transform: translateY(-5px);
    box-shadow: 0px 20px 50px 0px var(--secondary-color-shadow);
}

.contact-us-body > section > .intro > .container > form > button > svg {
    width: 20px;
    height: 20px;
    fill: var(--trinary-color);
}



/* ====================================== */
/* ================ CONTACT US PAGE - MAP */
/* ====================================== */



.contact-us-body > section > .map-wrapper {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5% 10%;
}

@media (max-width:1443px) {
    .contact-us-body > section > .map-wrapper {
        padding: 5%;
        padding-bottom: 100px;
    }
}

.contact-us-body.ar > section > .map-wrapper {
    direction: rtl;
}

.contact-us-body > section > .map-wrapper > .map-container {
    width: 100%;
    height: 600px;
    position: relative;
    background-color: #081416;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 38px;
    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.35),
        0 0 60px rgba(104, 71, 199, 0.08);
    overflow: hidden;
    isolation: isolate;
}

.contact-us-body > section > .map-wrapper > .map-container > .map-canvas {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.contact-us-body > section > .map-wrapper > .map-container > .map-shade {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(104, 71, 199, 0.2),
            transparent 32%
        ),
        linear-gradient(
            90deg,
            rgba(8, 20, 22, 0.65) 0%,
            rgba(8, 20, 22, 0.08) 45%,
            transparent 70%
        ),
        linear-gradient(
            0deg,
            rgba(8, 20, 22, 0.55) 0%,
            transparent 40%
        );
    pointer-events: none;
    z-index: 2;
}

.contact-us-body > section > .map-wrapper > .map-container > .map-location-card {
    width: 45%;
    padding: 25px;
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: var(--trinary-color);
    background-color: rgba(8, 20, 22, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 25px;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    display: flex;
    align-items: flex-start;
    gap: 18px;
    box-sizing: border-box;
    z-index: 3;
}

@media (max-width:1443px) {
    .contact-us-body > section > .map-wrapper > .map-container > .map-location-card {
        width: 60%;
    }
}

@media (max-width:1025px) {
    .contact-us-body > section > .map-wrapper > .map-container > .map-location-card {
        width: calc(100% - 60px);
    }
}

.contact-us-body.ar > section > .map-wrapper > .map-container > .map-location-card {
    left: unset;
    right: 30px;
}

.contact-us-body > section > .map-wrapper > .map-container > .map-location-card > .map-location-icon {
    min-width: 52px;
    width: 52px;
    height: 52px;
    color: var(--trinary-color);
    background:
        linear-gradient(
            145deg,
            rgba(104, 71, 199, 0.95),
            rgba(104, 71, 199, 0.45)
        );
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 17px;
    box-shadow: 0 12px 35px rgba(104, 71, 199, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-us-body > section > .map-wrapper > .map-container > .map-location-card > .map-location-icon > svg {
    width: 25px;
    height: 25px;
}

.contact-us-body > section > .map-wrapper > .map-container > .map-location-card > .map-location-dets {
    min-width: 0;
    flex: 1;
}

.contact-us-body > section > .map-wrapper > .map-container > .map-location-card > .map-location-dets > span {
    color: rgba(243, 240, 250, 0.52);
    font-size: var(--small-font-size);
}

.contact-us-body > section > .map-wrapper > .map-container > .map-location-card > .map-location-dets > h2 {
    margin: 7px 0 8px;
    color: var(--trinary-color);
    font-size: clamp(19px, 2vw, 23px);
    font-weight: 600;
}

.contact-us-body > section > .map-wrapper > .map-container > .map-location-card > .map-location-dets > p {
    margin: 0;
    color: rgba(243, 240, 250, 0.62);
    font-size: var(--small-font-size);
    line-height: 1.7;
}

.contact-us-body > section > .map-wrapper > .map-container > .map-location-card > .map-location-dets > a {
    width: fit-content;
    margin-top: 17px;
    color: var(--trinary-color);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--small-font-size);
    text-decoration: none;
    transition: var(--transition);
}

.contact-us-body > section > .map-wrapper > .map-container > .map-location-card > .map-location-dets > a:hover {
    color: #9b7ff0;
}

.contact-us-body > section > .map-wrapper > .map-container > .map-location-card > .map-location-dets > a > svg {
    width: 15px;
    height: 15px;
    transition: var(--transition);
}

.contact-us-body > section > .map-wrapper > .map-container > .map-location-card > .map-location-dets > a:hover > svg {
    transform: translate(3px, -3px);
}

.contact-us-body > section > .map-wrapper > .map-container > .map-canvas .leaflet-tile-pane {
    filter:
        brightness(0.82)
        contrast(1.08)
        saturate(0.72)
        hue-rotate(8deg);
}

.contact-us-body > section > .map-wrapper > .map-container > .map-canvas .leaflet-control-zoom {
    margin-top: 25px;
    margin-right: 25px;
    background-color: rgba(8, 20, 22, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.contact-us-body > section > .map-wrapper > .map-container > .map-canvas .leaflet-control-zoom > a {
    width: 42px;
    height: 42px;
    color: var(--trinary-color);
    background-color: transparent;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: inherit;
    font-size: 20px;
    line-height: 1;
    transition: var(--transition);
}

.contact-us-body > section > .map-wrapper > .map-container > .map-canvas .leaflet-control-zoom > a:first-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-us-body > section > .map-wrapper > .map-container > .map-canvas .leaflet-control-zoom > a:hover {
    color: var(--trinary-color);
    background-color: rgba(104, 71, 199, 0.3);
}

.contact-us-body > section > .map-wrapper > .map-container > .map-canvas .leaflet-control-attribution {
    padding: 4px 8px;
    color: rgba(243, 240, 250, 0.38);
    background-color: rgba(8, 20, 22, 0.72);
    font-size: 9px;
    display: none;
}

.contact-us-body > section > .map-wrapper > .map-container > .map-canvas .leaflet-control-attribution > a {
    color: rgba(243, 240, 250, 0.62);
}

.contact-us-body > section > .map-wrapper > .map-container > .map-canvas .maretis-map-marker {
    background-color: transparent;
    border: none;
}

.contact-us-body > section > .map-wrapper > .map-container > .map-canvas .maretis-map-marker > .map-marker-pulse {
    width: 52px;
    height: 52px;
    position: relative;
    background-color: rgba(104, 71, 199, 0.18);
    border: 1px solid rgba(104, 71, 199, 0.45);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-us-body > section > .map-wrapper > .map-container > .map-canvas .maretis-map-marker > .map-marker-pulse::before,
.contact-us-body > section > .map-wrapper > .map-container > .map-canvas .maretis-map-marker > .map-marker-pulse::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.contact-us-body > section > .map-wrapper > .map-container > .map-canvas .maretis-map-marker > .map-marker-pulse::before {
    width: 24px;
    height: 24px;
    background-color: var(--secondary-color);
    border: 5px solid rgba(243, 240, 250, 0.92);
    box-shadow:
        0 0 0 7px rgba(104, 71, 199, 0.25),
        0 0 35px rgba(104, 71, 199, 0.85);
    box-sizing: border-box;
    z-index: 2;
}

.contact-us-body > section > .map-wrapper > .map-container > .map-canvas .maretis-map-marker > .map-marker-pulse::after {
    width: 52px;
    height: 52px;
    background-color: rgba(104, 71, 199, 0.3);
    animation: maretis-map-pulse 2.2s ease-out infinite;
    z-index: 1;
}

.contact-us-body > section > .map-wrapper > .map-container > .map-canvas .leaflet-popup-content-wrapper {
    color: var(--trinary-color);
    background-color: rgba(8, 20, 22, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 17px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.contact-us-body > section > .map-wrapper > .map-container > .map-canvas .leaflet-popup-content {
    margin: 17px 20px;
    font-family: inherit;
}

.contact-us-body > section > .map-wrapper > .map-container > .map-canvas .leaflet-popup-tip {
    background-color: rgba(8, 20, 22, 0.95);
}

.contact-us-body > section > .map-wrapper > .map-container > .map-canvas .leaflet-popup-close-button {
    color: rgba(243, 240, 250, 0.55);
}

.contact-us-body > section > .map-wrapper > .map-container > .map-canvas .leaflet-popup-close-button:hover {
    color: var(--trinary-color);
}

.contact-us-body > section > .map-wrapper > .map-container > .map-canvas .maretis-map-popup {
    min-width: 150px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-us-body > section > .map-wrapper > .map-container > .map-canvas .maretis-map-popup > strong {
    color: var(--trinary-color);
    font-size: 14px;
    font-weight: 600;
}

.contact-us-body > section > .map-wrapper > .map-container > .map-canvas .maretis-map-popup > span {
    color: rgba(243, 240, 250, 0.55);
    font-size: 12px;
}


@keyframes maretis-map-pulse {

    0% {
        opacity: 0.85;
        transform: scale(0.7);
    }

    75%,
    100% {
        opacity: 0;
        transform: scale(1.8);
    }

}

@media screen and (max-width: 700px) {

    .contact-us-body > section > .map-wrapper > .map-container {
        height: 570px;
        border-radius: 28px;
    }

    .contact-us-body > section > .map-wrapper > .map-container > .map-location-card {
        width: calc(100% - 40px);
        padding: 20px;
        bottom: 20px;
        left: 20px;
        border-radius: 21px;
    }

    .contact-us-body > section > .map-wrapper > .map-container > .map-location-card > .map-location-icon {
        min-width: 46px;
        width: 46px;
        height: 46px;
        border-radius: 15px;
    }

    .contact-us-body > section > .map-wrapper > .map-container > .map-location-card > .map-location-icon > svg {
        width: 22px;
        height: 22px;
    }

    .contact-us-body > section > .map-wrapper > .map-container > .map-canvas .leaflet-control-zoom {
        margin-top: 20px;
        margin-right: 20px;
    }

}

/* contact us form new additions */

.contact-us-body #contact-form .contact-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    pointer-events: none !important;
}

.contact-us-body #contact-form .contact-submit-button {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        opacity 0.25s ease,
        transform 0.25s ease;
}

.contact-us-body #contact-form .contact-submit-button .contact-submit-label,
.contact-us-body #contact-form .contact-submit-button .contact-submit-icon {
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.25s ease;
}

.contact-us-body #contact-form .contact-submit-button .contact-submit-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 22px;
    display: block;
    border: 2px solid rgba(255, 255, 255, 0.28);
    border-top-color: #ffffff;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.75);
}

.contact-us-body #contact-form .contact-submit-button .contact-submit-loading-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.contact-us-body #contact-form .contact-submit-button.is-loading {
    cursor: wait;
    pointer-events: none;
}

.contact-us-body #contact-form .contact-submit-button.is-loading .contact-submit-label {
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
}

.contact-us-body #contact-form .contact-submit-button.is-loading .contact-submit-icon {
    opacity: 0;
    visibility: hidden;
    transform: translateX(5px) scale(0.8);
}

.contact-us-body #contact-form .contact-submit-button.is-loading .contact-submit-spinner {
    opacity: 1;
    visibility: visible;
    animation: contact-submit-spin 0.75s linear infinite;
}

.contact-us-body #contact-form .contact-submit-button:disabled {
    opacity: 1;
}

@keyframes contact-submit-spin {

    from {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg) scale(1);
    }

}

@media (prefers-reduced-motion: reduce) {

    .contact-us-body #contact-form .contact-submit-button,
    .contact-us-body #contact-form .contact-submit-button .contact-submit-label,
    .contact-us-body #contact-form .contact-submit-button .contact-submit-icon {
        transition: none;
    }

    .contact-us-body #contact-form .contact-submit-button.is-loading .contact-submit-spinner {
        animation-duration: 1.4s;
    }

}





/* ============================== */
/* ================ SERVICES PAGE */
/* ============================== */





.services-body > section {
    width: 100%;
    height: auto;
}



/* ====================================== */
/* ================ SERVICES PAGE - INTRO */
/* ====================================== */



.services-body > section > .intro {
    width: 100%;
    height: 100dvh;
    padding: 5% 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

@media (max-width:1443px) {
    .services-body > section > .intro {
        padding: 5%;
    }
}

@media (max-width:1025px) {
    .services-body > section > .intro {
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }
}

.services-body > section > .intro > .dets {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.services-body > section > .intro > .dets > strong {
    width: auto;
    height: auto;
    padding: 20px;
    background-color: #6747c76b;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    text-decoration: none;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.089);
    transition: var(--transition);
    margin-top: 5px;
}

.services-body > section > .intro > .dets > h1 {
    width: 80%;
    font-size: var(--huge-font-size);
    font-family: secondary_font;
    text-align: center;
}

@media (max-width:1025px) {
    .services-body > section > .intro > .dets > h1 {
        width: 90%;
    }
}

@media (max-width:500px) {
    .services-body > section > .intro > .dets > h1 {
        width: 100%;
    }
}

.services-body > section > .intro > .dets > p {
    width: 60%;
    opacity: .9;
    text-align: center;
}

@media (max-width:1443px) {
    .services-body > section > .intro > .dets > p {
        width: 70%;
    }
}

@media (max-width:1025px) {
    .services-body > section > .intro > .dets > p {
        width: 80%;
    }
}

@media (max-width:768px) {
    .services-body > section > .intro > .dets > p {
        width: 90%;
    }
}

@media (max-width:500px) {
    .services-body > section > .intro > .dets > p {
        width: 100%;
    }
}

.services-body > section > .intro > .dets > .btns {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.services-body > section > .intro > .dets > .btns > a {
    width: auto;
    height: auto;
    padding: 20px;
    border-radius: 26px;
    text-decoration: none;
    transition: var(--transition);
}

.services-body > section > .intro > .dets > .btns > a:first-child {
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.services-body > section > .intro > .dets > .btns > a:first-child:hover {
    transform: translateY(-5px);
    box-shadow: 0px 20px 50px 0px var(--secondary-color-shadow);
}

.services-body > section > .intro > .dets > .btns > a:last-child {
    border: 1px solid rgba(255, 255, 255, 0.082);
    background-color: rgba(255, 255, 255, 0.062);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
}

.services-body > section > .intro > .dets > .btns > a:last-child:hover {
    transform: translateY(-5px);
    box-shadow: 0px 20px 50px 0px rgba(255, 255, 255, 0.062);
}



/* ======================================== */
/* ================ SERVICES PAGE - GALLERY */
/* ======================================== */



.services-body > section > .gallery {
    width: 100%;
    height: auto;
    padding: 0% 10% 5% 10%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
}

@media (max-width:1443px) {
    .services-body > section > .gallery {
        padding: 0% 5% 5% 5%;
    }
}

.services-body.ar > section > .gallery {
    direction: rtl;
}

.services-body > section > .gallery > .services-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

@media (max-width:1025px) {
    .services-body > section > .gallery > .services-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width:768px) {
    .services-body > section > .gallery > .services-grid {
        grid-template-columns: repeat(1,1fr);
        margin-top: 30px;
    }
}

.services-body > section > .gallery > .services-grid > .service-item {
    width: 100%;
    height: auto;
    background-color: var(--primary-color-shade);
    border: 1px solid rgba(243, 240, 250, 0.1);
    padding: 40px;
    border-radius: 36px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
    transition: var(--transition);
    z-index: 10;
}

.services-body > section > .gallery > .services-grid > .service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 0px 10px 0px var(--secondary-color-shadow);
}

.services-body > section > .gallery > .services-grid > .service-item > .header {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.services-body > section > .gallery > .services-grid > .service-item > .header > strong {
    opacity: .6;
    font-size: var(--intermediate-font-size);
}

.services-body > section > .gallery > .services-grid > .service-item > .body {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
    margin-top: 50px;
}

.services-body > section > .gallery > .services-grid > .service-item > .body > h3 {
    font-size: var(--intermediate-font-size);
}

.services-body > section > .gallery > .services-grid > .service-item > .body > p {
    opacity: .9;
}

.services-body > section > .gallery > .services-grid > .service-item > .body > .tags {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
    gap: 20px;
}

.services-body > section > .gallery > .services-grid > .service-item > .body > .tags > span {
    width: auto;
    height: auto;
    border-radius: 26px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.082);
    background-color: rgba(255, 255, 255, 0.062);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
}

.services-body > section > .gallery > .services-grid > .service-item > .body > a {
    width: auto;
    height: auto;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 26px;
    color: var(--trinary-color);
    font-size: var(--small-font-size);
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    margin-top: 5px;
}

.services-body > section > .gallery > .services-grid > .service-item > .body > a:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px var(--secondary-color-shadow);
}



/* ====================================== */
/* ================ SERVICES PAGE - CON 1 */
/* ====================================== */



.services-body > section > .con-1 {
    width: 100%;
    height: auto;
    padding: 5% 10%;
    background-color: var(--primary-color-shade);
    z-index: 10;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
}

.services-body.ar > section > .con-1 {
    direction: rtl;
}

.services-body > section > .con-1 > .header {
    width: 100%;
    text-align: center;
}

.services-body > section > .con-1 > .header > h2 {
    width: 100%;
    text-align: center;
    font-size: var(--medium-font-size);
}

.services-body > section > .con-1 > .grid {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    margin-top: 50px;
}

@media (max-width:1025px) {
    .services-body > section > .con-1 > .grid {
        grid-template-columns: repeat(1,1fr);
        gap: 30px;
    }
}

.services-body > section > .con-1 > .grid > div {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
    padding: 0px 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.103);
}

@media (max-width:1025px) {
    .services-body > section > .con-1 > .grid > div {
        justify-content: center;
        align-items: center;
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.103);
        padding-bottom: 20px;
    }

    .services-body > section > .con-1 > .grid > div:last-child {
        border: none;
    }
}

.services-body > section > .con-1 > .grid > div > strong {
    width: 100%;
    font-size: var(--intermediate-font-size);
    color: var(--secondary-color);
}

.services-body > section > .con-1 > .grid > div > p {
    width: 100%;
    opacity: .9;
    margin-top: 30px;
}

@media (max-width:1025px) {
    .services-body > section > .con-1 > .grid > div > strong,
    .services-body > section > .con-1 > .grid > div > p {
        text-align: center;
        margin: 0;
    }
}



/* ====================================== */
/* ================ SERVICES PAGE - CON 2 */
/* ====================================== */



.services-body > section > .con-2 {
    width: 100%;
    height: auto;
    padding: 5% 10%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
}

@media (max-width:1443px) {
    .services-body > section > .con-2 {
        padding: 5%;
    }
}

.services-body.ar > section > .con-2 {
    direction: rtl;
}

.services-body > section > .con-2 > .header {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
}

@media (max-width:1025px) {
    .services-body > section > .con-2 > .header {
        justify-content: center;
        align-items: center;
    }
}

.services-body > section > .con-2 > .header > strong {
    width: auto;
    height: auto;
    padding: 20px;
    background-color: #6747c76b;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    text-decoration: none;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.089);
    transition: var(--transition);
    margin-top: 5px;
}

.services-body > section > .con-2 > .header > h2 {
    width: 100%;
    font-size: var(--intermediate-font-size);
}

@media (max-width:1025px) {
    .services-body > section > .con-2 > .header > h2 {
        text-align: center;
    }
}

.services-body > section > .con-2 > .grid {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 50px;
}

@media (max-width:1025px) {
    .services-body > section > .con-2 > .grid {
        grid-template-columns: repeat(1,1fr);
    }
}

.services-body > section > .con-2 > .grid > div {
    background-color: var(--primary-color-shade);
    border: 1px solid rgba(243, 240, 250, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 50px;
    padding: 70px 40px;
    border-radius: 26px;
    transition: var(--transition);
    z-index: 10;
    cursor: pointer;
}

@media (max-width:1025px) {
    .services-body > section > .con-2 > .grid > div {
        gap: 30px;
    }
}

.services-body > section > .con-2 > .grid > div:hover {
    transform: translateY(-5px);
    box-shadow: 0px 0px 10px 0px var(--secondary-color-shadow);
}

.services-body > section > .con-2 > .grid > div > strong {
    color: var(--secondary-color);
}

.services-body > section > .con-2 > .grid > div > h3 {
    font-size: var(--intermediate-font-size);
}

.services-body > section > .con-2 > .grid > div > p {
    opacity: .9;
    margin-top: 30px;
}

@media (max-width:1025px) {
    .services-body > section > .con-2 > .grid > div > p {
        margin-top: 0px;
    }
}

.services-body > section > .con-2 > .grid > div > ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
}

.services-body > section > .con-2 > .grid > div > ul > li {
    font-size: var(--tiny-font-size);
    opacity: .7;
    font-weight: bold;
}



/* ====================================== */
/* ================ SERVICES PAGE - CON 2 */
/* ====================================== */



.services-body > section > .con-3 {
    width: 100%;
    height: auto;
    padding: 5% 10%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
}

@media (max-width:1443px) {
    .services-body > section > .con-3 {
        padding: 5%;
        padding-bottom: 100px;
    }
}

.services-body.ar > section > .con-3 {
    direction: rtl;
}

.services-body > section > .con-3 > .end-action-container {
    width: 100%;
    height: auto;
    background-color: var(--primary-color-shade);
    border: 1px solid rgba(243, 240, 250, 0.1);
    border-radius: 36px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
    z-index: 10;
}

@media (max-width:1025px) {
    .services-body > section > .con-3 > .end-action-container {
        justify-content: center;
        align-items: center;
        padding: 30px 20px;
    }
}

.services-body > section > .con-3 > .end-action-container > strong {
    width: 100%;
    font-size: var(--big-font-size);
    color: var(--secondary-color);
}

.services-body > section > .con-3 > .end-action-container > p {
    width: 100%;
    opacity: .9;
}

@media (max-width:1025px) {
    .services-body > section > .con-3 > .end-action-container > strong,
    .services-body > section > .con-3 > .end-action-container > p {
        text-align: center;
    }
}

.services-body > section > .con-3 > .end-action-container > a {
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--trinary-color);
    font-size: var(--small-font-size);
    text-align: center;
    background-color: var(--secondary-color);
    padding: 20px;
    border-radius: 26px;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--secondary-color);
}

.services-body > section > .con-3 > .end-action-container > a:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px var(--secondary-color-shadow);
}




/* ========================== */
/* ================ SAAS PAGE */
/* ========================== */





.saas-body > section {
    width: 100%;
    height: auto;
}



/* ================================== */
/* ================ SAAS PAGE - INTRO */
/* ================================== */



.saas-body > section > .intro {
    width: 100%;
    height: 100dvh;
    padding: 5% 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

@media (max-width:1443px) {
    .saas-body > section > .intro {
        padding: 5%;
    }
}

@media (max-width:1025px) {
    .saas-body > section > .intro {
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        gap: 0px;
    }
}

.saas-body > section > .intro > .dets {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.saas-body > section > .intro > .dets > strong {
    width: auto;
    height: auto;
    padding: 20px;
    background-color: #6747c76b;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    text-decoration: none;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.089);
    transition: var(--transition);
    margin-top: 5px;
}

.saas-body > section > .intro > .dets > p {
    width: 60%;
    opacity: .9;
    text-align: center;
}

@media (max-width:1443px) {
    .saas-body > section > .intro > .dets > p {
        width: 70%;
    }
}

@media (max-width:1025px) {
    .saas-body > section > .intro > .dets > p {
        width: 80%;
    }
}

@media (max-width:768px) {
    .saas-body > section > .intro > .dets > p {
        width: 90%;
    }
}

@media (max-width:500px) {
    .saas-body > section > .intro > .dets > p {
        width: 100%;
    }
}

.saas-body > section > .intro > .dets > h1 {
    width: 80%;
    font-size: var(--huge-font-size);
    font-family: secondary_font;
    text-align: center;
}

@media (max-width:1025px) {
    .saas-body > section > .intro > .dets > h1 {
        width: 90%;
    }
}

@media (max-width:500px) {
    .saas-body > section > .intro > .dets > h1 {
        width: 100%;
    }
}

.saas-body > section > .intro > .dets > .btns {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

@media (max-width:1025px) {
    .saas-body > section > .intro > .dets > .btns {
        justify-content: center;
    }
}

.saas-body > section > .intro > .dets > .btns > a {
    width: auto;
    height: auto;
    padding: 20px;
    border-radius: 26px;
    text-decoration: none;
    transition: var(--transition);
}

.saas-body > section > .intro > .dets > .btns > a:first-child {
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.saas-body > section > .intro > .dets > .btns > a:first-child:hover {
    transform: translateY(-5px);
    box-shadow: 0px 20px 50px 0px var(--secondary-color-shadow);
}

.saas-body > section > .intro > .dets > .btns > a:last-child {
    border: 1px solid rgba(255, 255, 255, 0.082);
    background-color: rgba(255, 255, 255, 0.062);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
}

.saas-body > section > .intro > .dets > .btns > a:last-child:hover {
    transform: translateY(-5px);
    box-shadow: 0px 20px 50px 0px rgba(255, 255, 255, 0.062);
}



/* ================================== */
/* ================ SAAS PAGE - CON 1 */
/* ================================== */



.saas-body > section > .con-1 {
    width: 100%;
    height: auto;
    padding: 5% 10%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
}

@media (max-width:1443px) {
    .saas-body > section > .con-1 {
        padding: 5%;
    }
}

.saas-body > section > .con-1 > .header {
    width: 100%;
    text-align: center;
}

.saas-body > section > .con-1 > .header > h2 {
    width: 100%;
    text-align: center;
    font-size: var(--big-font-size);
}

.saas-body > section > .con-1 > .header > p {
    opacity: .9;
}

.saas-body > section > .con-1 > .grid {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    margin-top: 20px;
}

@media (max-width:1025px) {
    .saas-body > section > .con-1 > .grid {
        flex-direction: column;
    }
}

.saas-body > section > .con-1 > .grid > div {
    width: 35%;
    background-color: var(--primary-color-shade);
    border: 1px solid rgba(243, 240, 250, 0.1);
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
    padding: 70px 40px;
    border-radius: 26px;
    transition: var(--transition);
    cursor: pointer;
}

@media (max-width:1300px) {
    .saas-body > section > .con-1 > .grid > div {
        width: 40%;
    }
}

@media (max-width:1025px) {
    .saas-body > section > .con-1 > .grid > div {
        width: 100%;
    }
}

.saas-body > section > .con-1 > .grid > div:hover {
    transform: translateY(-5px);
    box-shadow: 0px 0px 10px 0px var(--secondary-color-shadow);
}

.saas-body > section > .con-1 > .grid > div > .svg-container {
    width: 70px;
    height: 70px;
    padding: 20px;
    background-color: #6747c746;
    border-radius: 50%;
} 

.saas-body > section > .con-1 > .grid > div > .svg-container > svg {
    width: 100%;
    height: 100%;
    fill: var(--secondary-color);
}

.saas-body > section > .con-1 > .grid > div > h3 {
    font-size: var(--intermediate-font-size);
    margin-top: 20px;
}

.saas-body > section > .con-1 > .grid > div > p {
    opacity: .9;
}

.saas-body > section > .con-1 > .grid > div > ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 30px;
}

.saas-body > section > .con-1 > .grid > div > ul > li {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}

.saas-body > section > .con-1 > .grid > div > ul > li > span {
    color: var(--secondary-color);
}

.saas-body > section > .con-1 > .grid > div > ul > li > p {
    line-height: unset;
}



/* ================================== */
/* ================ SAAS PAGE - CON 2 */
/* ================================== */



.saas-body > section > .con-2 {
    width: 100%;
    height: auto;
    padding: 5% 10%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
}

@media (max-width:1443px) {
    .saas-body > section > .con-2 {
        padding: 5%;
    }
}

.saas-body.ar > section > .con-2 {
    direction: rtl;
}

.saas-body > section > .con-2 > .header {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.saas-body > section > .con-2 > .header > strong {
    width: auto;
    height: auto;
    padding: 20px;
    background-color: #6747c76b;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    text-decoration: none;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.089);
    transition: var(--transition);
    margin-top: 5px;
}

.saas-body > section > .con-2 > .header > h2 {
    width: 100%;
    text-align: center;
    font-size: var(--big-font-size);
}

@media (max-width:1443px) {
    .saas-body > section > .con-2 > .header > h2 {
        text-align: center;
    }
}

.saas-body > section > .con-2 > .grid {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 50px;
}

@media (max-width:1025px) {
    .saas-body > section > .con-2 > .grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width:768px) {
    .saas-body > section > .con-2 > .grid {
        grid-template-columns: repeat(1,1fr);
    }
}

.saas-body > section > .con-2 > .grid.empty {
    display: flex;
    justify-content: center;
} 

.saas-body > section > .con-2 > .grid > .item {
    background-color: var(--primary-color-shade);
    border: 1px solid rgba(243, 240, 250, 0.1);
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
    border-radius: 26px;
    transition: var(--transition);
    overflow: hidden;
    cursor: pointer;
}

.saas-body > section > .con-2 > .grid > .item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 0px 10px 0px var(--secondary-color-shadow);
}

.saas-body > section > .con-2 > .grid > .item.upcoming {
    justify-content: center;
    align-items: center;
    padding: 20px;
}

@media (min-width:768px) and (max-width:1025px) {
    .saas-body > section > .con-2 > .grid > .item.upcoming {
        grid-column: 1 / 3;
    }
}


.saas-body > section > .con-2 > .grid > .item.no-saas {
    padding: 60px 30px;
    justify-content: center;
    align-items: center;
}

.saas-body > section > .con-2 > .grid > .item > .visual {
    width: 100%;
    height: auto;
}

.saas-body > section > .con-2 > .grid > .item > .visual > img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.saas-body > section > .con-2 > .grid > .item.upcoming > .svg-container {
    width: 70px;
    height: 70px;
    padding: 20px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.11);
}

.saas-body > section > .con-2 > .grid > .item.no-saas > .svg-container {
    width: 300px;
    height: 300px;
    padding: 40px;
    border-radius: 50%;
}

.saas-body > section > .con-2 > .grid > .item.upcoming > .svg-container > svg {
    width: 100%;
    height: 100%;
    fill: var(--trinary-color);
    opacity: .7;
}

.saas-body > section > .con-2 > .grid > .item.no-saas > .svg-container > svg {
    width: 100%;
    height: 100%;
    fill: var(--trinary-color);
    opacity: .7;
}

.saas-body > section > .con-2 > .grid > .item > .body {
    width: 100%;
    height: auto;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
}

.saas-body > section > .con-2 > .grid > .item > .body > .header {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.saas-body > section > .con-2 > .grid > .item > .body > .header > h3 {
    font-size: var(--intermediate-font-size);
}

.saas-body > section > .con-2 > .grid > .item.upcoming > h3 {
    font-size: var(--intermediate-font-size);
}

.saas-body > section > .con-2 > .grid > .item.no-saas > h3 {
    color: red;
    opacity: .9;
}

.saas-body > section > .con-2 > .grid > .item > .body > .header > span {
    width: auto;
    height: auto;
    padding: 20px;
    background-color: #6747c76b;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    text-decoration: none;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.089);
    transition: var(--transition);
    margin-top: 5px;
}

.saas-body > section > .con-2 > .grid > .item > .body > p {
    opacity: .9;
}

.saas-body > section > .con-2 > .grid > .item.upcoming > p {
    opacity: .9;
    text-align: center;
}

.saas-body > section > .con-2 > .grid > .item > .body > .tags {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
    gap: 20px;
}

.saas-body > section > .con-2 > .grid > .item > .body > .tags > span {
    width: auto;
    height: auto;
    border-radius: 26px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.082);
    background-color: rgba(255, 255, 255, 0.062);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
}



/* ================================== */
/* ================ SAAS PAGE - CON 3 */
/* ================================== */



.saas-body > section > .con-3 {
    width: 100%;
    height: auto;
    padding: 5% 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
}

@media (max-width:1443px) {
    .saas-body > section > .con-3 {
        padding: 5%;
    }
}

@media (max-width:1025px) {
    .saas-body > section > .con-3 {
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        gap: 75px;
    }
}

.saas-body.ar > section > .con-3 {
    direction: rtl;
}

.saas-body > section > .con-3 > .visual {
    width: 30%;
    height: auto;
    padding: 30px;
    background-color: var(--primary-color-shade);
    border: 1px solid rgba(243, 240, 250, 0.1);
    border-radius: 36px;
    z-index: 10;
}

@media (max-width:1443px) {
    .saas-body > section > .con-3 > .visual {
        width: 40%;
    }
}

@media (max-width:1025px) {
    .saas-body > section > .con-3 > .visual {
        width: 80%;
    }
}

.saas-body > section > .con-3 > .visual > .grid {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

.saas-body > section > .con-3 > .visual > .grid > .item {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.116);
    border: 1px solid rgba(255, 255, 255, 0.11);
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
    border-radius: 26px;
}

.saas-body > section > .con-3 > .visual > .grid > .item > svg {
    width: 30px;
    height: 30px;
    fill: var(--secondary-color);
}

.saas-body > section > .con-3 > .visual > .grid > .item > strong {
    font-size: var(--tiny-font-size);
}

.saas-body > section > .con-3 > .dets {
    width: 45%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 50px;
}

@media (max-width:1443px) {
    .saas-body > section > .con-3 > .dets {
        width: 60%;
        gap: 30px;
    }
}

@media (max-width:1025px) {
    .saas-body > section > .con-3 > .dets {
        width: 100%;
        justify-content: center;
        align-items: center;
    }
}

.saas-body > section > .con-3 > .dets > strong {
    width: auto;
    height: auto;
    padding: 20px;
    background-color: #6747c76b;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    text-decoration: none;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.089);
    transition: var(--transition);
    margin-top: 5px;
}

.saas-body > section > .con-3 > .dets > h2 {
    width: 100%;
    font-size: var(--intermediate-font-size);
}

.saas-body > section > .con-3 > .dets > p {
    width: 100%;
    opacity: .9;
}

@media (max-width:1025px) {
    .saas-body > section > .con-3 > .dets > h2,
    .saas-body > section > .con-3 > .dets > p {
        text-align: center;
    }
}

.saas-body > section > .con-3 > .dets > .grid {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

@media (max-width:1025px) {
    .saas-body > section > .con-3 > .dets > .grid {
        grid-template-columns: repeat(1,1fr);
    }
}

.saas-body > section > .con-3 > .dets > .grid > .item {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 10px;
}

@media (max-width:1025px) {
    .saas-body > section > .con-3 > .dets > .grid > .item {
        width: 100%;
        justify-content: center;
        align-items: center;
    }
}

.saas-body > section > .con-3 > .dets > .grid > .item >  p {
    width: 100%;
    opacity: .9;
    line-height: unset;
}

@media (max-width:1025px) {
    .saas-body > section > .con-3 > .dets > .grid > .item >  p {
        text-align: center;
    }
}



/* ================================== */
/* ================ SAAS PAGE - CON 4 */
/* ================================== */



.saas-body > section > .con-4 {
    width: 100%;
    height: auto;
    padding: 5% 10%;
    background-color: var(--primary-color-shade);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 100px;
    z-index: 10;
    position: relative;
}

@media (max-width:1443px) {
    .saas-body > section > .con-4 {
        padding: 5%;
    }
}

@media (max-width:1025px) {
    .saas-body > section > .con-4 {
        gap: 75px;
    }
}

.saas-body.ar > section > .con-4 {
    direction: rtl;
}

.saas-body > section > .con-4 > .header {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.saas-body > section > .con-4 > .header > h2 {
    width: 100%;
    text-align: center;
    font-size: var(--big-font-size);
}

.saas-body > section > .con-4 > .header > p {
    width: 100%;
    opacity: .9;
    text-align: center;
}

.saas-body > section > .con-4 > .body {
    width: 80%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
}

.saas-body > section > .con-4 > .body > .row {
    width: 100%;
    height: auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background-color: rgba(255, 255, 255, 0.034);
    border: 1px solid rgba(243, 240, 250, 0.1);
    border-radius: 26px;
    transition: var(--transition);
    cursor: pointer;
} 

@media (max-width:1025px) {
    .saas-body > section > .con-4 > .body > .row {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
    }
}

.saas-body > section > .con-4 > .body > .row:hover {
    transform: translateY(-5px);
    box-shadow: 0px 0px 10px 0px var(--secondary-color-shadow);
}

.saas-body > section > .con-4 > .body > .row > .header {
    width: auto;
    height: auto;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 20px;
}

@media (max-width:1025px) {
    .saas-body > section > .con-4 > .body > .row > .header {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

.saas-body > section > .con-4 > .body > .row > .header > strong {
    width: 1005;
    font-size: var(--intermediate-font-size);
    opacity: .7;
    color: var(--secondary-color);
}

.saas-body > section > .con-4 > .body > .row > .header > h3 {
    width: 100%;
    font-size: var(--intermediate-font-size);
}

@media (max-width:1025px) {
    .saas-body > section > .con-4 > .body > .row > .header > strong,
    .saas-body > section > .con-4 > .body > .row > .header > h3 {
        text-align: center;
    }
}

.saas-body > section > .con-4 > .body > .row > .tags {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    align-items: center;
    gap: 20px;
}

@media (max-width:1025px) {
    .saas-body > section > .con-4 > .body > .row > .tags {
        justify-content: center;
    }
}

.saas-body > section > .con-4 > .body > .row > .tags > span {
    width: auto;
    height: auto;
    border-radius: 26px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.082);
}



/* ================================== */
/* ================ SAAS PAGE - CON 5 */
/* ================================== */



.saas-body > section > .con-5 {
    width: 100%;
    height: auto;
    padding: 5% 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 100px;
}

@media (max-width:1443px) {
    .saas-body > section > .con-5 {
        padding: 5%;
    }
}

.saas-body > section > .con-5 > .grid {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 40px;
}

@media (max-width:1025px) {
    .saas-body > section > .con-5 > .grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: start;
        padding-left: 50px;
    }
}

@media (max-width:500px) {
    .saas-body > section > .con-5 > .grid {
        padding-left: 0px;
    }
}

.saas-body > section > .con-5 > .grid > .item {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
    position: relative;
    transition: var(--transition);
}

@media (max-width:1025px) {
    .saas-body > section > .con-5 > .grid > .item {
        width: calc(40% - 30px);
    }
}

@media (max-width:768px) {
    .saas-body > section > .con-5 > .grid > .item {
        width: calc(50% - 20px);
    }
}

@media (max-width:500px) {
    .saas-body > section > .con-5 > .grid > .item {
        width: 100%;
        justify-content: center;
        align-items: center;
    }
}

.saas-body > section > .con-5 > .grid > .item:hover {
    transform: translateY(-5px);
}

.saas-body > section > .con-5 > .grid > .item::after {
    content: '';
    width: 0%;
    height: 2px;
    background-color: var(--secondary-color);
    position: absolute;
    top: 120%;
    left: 0;
    transition: var(--transition);
}

@media (max-width:1025px) {
    .saas-body > section > .con-5 > .grid > .item::after {
        top: 110%;
        left: 50%;
    }
}

.saas-body > section > .con-5 > .grid > .item:hover::after {
    width: 95%;
}

@media (max-width:1025px) {
    .saas-body > section > .con-5 > .grid > .item:hover::after {
        left: 0%;
    }
}

.saas-body > section > .con-5 > .grid > .item > strong {
    opacity: .3;
    font-size: var(--enormous-font-size);
    transform: translate(-30px,30px);
    transition: var(--transition);
}

@media (max-width:768px) {
    .saas-body > section > .con-5 > .grid > .item > strong {
        transform: translate(-30px,20px);
    }
}

@media (max-width:500px) {
    .saas-body > section > .con-5 > .grid > .item > strong {
        transform: translatey(10px);
    }
}

.saas-body > section > .con-5 > .grid > .item:hover > strong {
    opacity: .7;
}

.saas-body > section > .con-5 > .grid > .item > span {
    font-size: var(--intermediate-font-size);
}

.saas-body > section > .con-5 > .grid > .item > p {
    width: 100%;
    opacity: .9;
}

@media (max-width:500px) {
    .saas-body > section > .con-5 > .grid > .item > p {
        text-align: center;
    }
}



/* ======================================== */
/* ================ SAAS PAGE - CONTACT CON */
/* ======================================== */



.saas-body > section > .contact-con {
    width: 100%;
    height: auto;
    padding: 5% 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

@media (max-width:1443px) {
    .saas-body > section > .contact-con {
        padding: 5%;
        padding-bottom: 70px;
    }
}

@media (max-width:1025px) {
    .saas-body > section > .contact-con {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

.saas-body.ar > section > .contact-con {
    direction: rtl;
}

.saas-body > section > .contact-con > .dets {
    width: 40%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
}

@media (max-width:1443px) {
    .saas-body > section > .contact-con > .dets {
        width: 45%;
    }
}

@media (max-width:1025px) {
    .saas-body > section > .contact-con > .dets {
        width: 100%;
        justify-content: center;
        align-items: center;
    }
}

.saas-body > section > .contact-con > .dets > h2 {
    width: 100%;
    font-size: var(--big-font-size);
}

.saas-body > section > .contact-con > .dets > p {
    width: 100%;
    opacity: .9;
}

@media (max-width:1025px) {
    .saas-body > section > .contact-con > .dets > h2,
    .saas-body > section > .contact-con > .dets > p {
        text-align: center;
    }
}

.saas-body > section > .contact-con > .dets > .contacts {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
}

@media (max-width:1025px) {
    .saas-body > section > .contact-con > .dets > .contacts {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width:768px) {
    .saas-body > section > .contact-con > .dets > .contacts {
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }
}

.saas-body > section > .contact-con > .dets > .contacts > .row {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

@media (max-width:768px) {
    .saas-body > section > .contact-con > .dets > .contacts > .row {
        width: auto;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

.saas-body > section > .contact-con > .dets > .contacts > .row:hover {
    transform: translateY(-3px);
}

.saas-body > section > .contact-con > .dets > .contacts > .row > .svg-container {
    width: 50px;
    height: 50px;
    padding: 10px;
    background-color: #6747c746;
    border-radius: 50%;
}

.saas-body > section > .contact-con > .dets > .contacts > .row > .svg-container > svg {
    width: 100%;
    height: 100%;
    fill: var(--secondary-color);
}

.saas-body > section > .contact-con > .dets > .contacts > .row > .svg-container.stroke > svg {
    fill: none;
    stroke: var(--secondary-color);
}

.saas-body > section > .contact-con > .dets > .contacts > .row > a {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

@media (max-width:768px) {
    .saas-body > section > .contact-con > .dets > .contacts > .row > a {
        justify-content: center;
        align-items: center;
    }
}

.saas-body > section > .contact-con > .dets > .contacts > .row > a > strong {
    width: 100%;
    opacity: .7;
}

.saas-body > section > .contact-con > .dets > .contacts > .row > a > p {
    line-height: unset;
}

@media (max-width:768px) {
    .saas-body > section > .contact-con > .dets > .contacts > .row > a > strong,
    .saas-body > section > .contact-con > .dets > .contacts > .row > a > p {
        text-align: center;
    }
}

.saas-body > section > .contact-con > .dets > .contacts > .row > a > svg {
    width: 15px;
    height: 15px;
    opacity: .9;
    stroke: var(--trinary-color);
}

.saas-body > section > .contact-con > form {
    width: 40%;
    height: auto;
    padding: 70px 50px;
    background-color: var(--primary-color-shade);
    border: 1px solid rgba(243, 240, 250, 0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: start;
    gap: 30px;
    border-radius: 36px;
    z-index: 10;
}

@media (max-width:1443px) {
    .saas-body > section > .contact-con > form {
        width: 45%;
    }
}

@media (max-width:1025px) {
    .saas-body > section > .contact-con > form {
        width: 100%;
        justify-content: center;
        align-content: center;
        gap: 20px;
    }
}

.saas-body > section > .contact-con > form > .opt-grp {
    width: calc(50% - 15px);
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 10px;
}

.saas-body > section > .contact-con > form > .opt-grp.full-width {
    width: 100%;
}

.saas-body > section > .contact-con > form > .opt-grp > input {
    width: 100%;
    height: auto;
    background-color: transparent;
    padding: 20px;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.144);
}

.saas-body > section > .contact-con > form > .opt-grp > select {
    width: 100%;
    height: auto;
    background-color: transparent;
    padding: 20px;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.144);
}

.saas-body > section > .contact-con > form > .opt-grp .custom-select {
    width: 100%;
    position: relative;
}

.saas-body > section > .contact-con > form > .opt-grp .custom-select-trigger {
    width: 100%;
    padding: 20px;
    background-color: transparent;
    color: var(--trinary-color);
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.144);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    text-align: left;
    cursor: pointer;
}

.saas-body > section > .contact-con > form > .opt-grpdy .custom-select-value {
    opacity: .9;
}

.saas-body > section > .contact-con > form > .opt-grp .custom-select-value.placeholder {
    opacity: .45;
}

.saas-body > section > .contact-con > form > .opt-grp .custom-select-trigger > svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--trinary-color);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: .5;
    transition: var(--transition);
}

.saas-body > section > .contact-con > form > .opt-grp .custom-select.is-open .custom-select-trigger > svg {
    transform: rotate(180deg);
    opacity: 1;
}

.saas-body > section > .contact-con > form > .opt-grp .custom-select-options {
    width: 100%;
    max-height: 260px;
    padding: 8px;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 20;
    overflow-y: auto;
    background-color: var(--trinary-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: var(--transition);
}

.saas-body.ar > section > .contact-con > form > .opt-grp .custom-select-option {
    text-align: start;
}

.saas-body > section > .contact-con > form > .opt-grp .custom-select.is-open .custom-select-options {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.saas-body > section > .contact-con > form > .opt-grp .custom-select-option {
    width: 100%;
    padding: 14px 16px;
    font-weight: bold;
    background-color: transparent;
    color: var(--primary-color);
    border: none;
    border-radius: 10px;
    text-align: left;
    opacity: .7;
    cursor: pointer;
    transition: var(--transition);
}

.saas-body > section > .contact-con > form > .opt-grp .custom-select-option:hover,
.saas-body > section > .contact-con > form > .opt-grp .custom-select-option:focus-visible {
    background-color: rgba(104, 71, 199, .16);
    opacity: 1;
    outline: none;
}

.saas-body > section > .contact-con > form > .opt-grp .custom-select-option[aria-selected="true"] {
    background-color: rgba(104, 71, 199, .25);
    color: var(--secondary-color);
    opacity: 1;
}

.saas-body > section > .contact-con > form > .opt-grp .stage-options {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
    gap: 10px;
}

.saas-body > section > .contact-con > form > .opt-grp .stage-radio {
    position: relative;
    cursor: pointer;
}

.saas-body > section > .contact-con > form > .opt-grp .stage-radio > input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.saas-body > section > .contact-con > form > .opt-grp .stage-radio > span {
    min-height: 42px;
    padding: 10px 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--trinary-color);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 30px;
    opacity: .55;
    transition: var(--transition);
}

.saas-body > section > .contact-con > form > .opt-grp .stage-radio:hover > span {
    border-color: rgba(104, 71, 199, .55);
    opacity: .9;
}

.saas-body > section > .contact-con > form > .opt-grp .stage-radio > input:checked + span {
    background-color: rgba(104, 71, 199, .22);
    border-color: var(--secondary-color);
    color: var(--trinary-color);
    opacity: 1;
    box-shadow: 0 0 20px rgba(104, 71, 199, .12);
}

.saas-body > section > .contact-con > form > .opt-grp .stage-radio > input:focus-visible + span {
    outline: 2px solid var(--secondary-color);
    outline-offset: 3px;
}

@media screen and (max-width: 600px) {

    .saas-body > section > .contact-con > form > .opt-grp .stage-radio > span {
        min-height: 38px;
        padding: 9px 14px;
    }
}

.saas-body > section > .contact-con > form > button {
    width: 100%;
    height: auto;
    padding: 20px;
    background-color: var(--secondary-color);
    border: none;
    border-radius: 26px;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    cursor: pointer;
}

.saas-body.ar > section > .contact-con > form > button {
    direction: ltr;
}

.saas-body > section > .contact-con > form > button:hover {
    transform: translateY(-5px);
    box-shadow: 0px 20px 50px 0px var(--secondary-color-shadow);
}

.saas-body > section > .contact-con > form > button > svg {
    width: 20px;
    height: 20px;
    fill: var(--trinary-color);
}



/* ==================================== */
/* ================ SAAS PAGE - END CON */
/* ==================================== */



.saas-body > section > .end-con {
    width: 100%;
    height: auto;
    padding: 5% 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    position: relative;
}

@media (max-width:1443px) {
    .saas-body > section > .end-con {
        padding: 50px 5% 100px 5%;
    }
}

.saas-body.ar > section > .end-con {
    direction: rtl;
}

.saas-body > section > .end-con::before {
    content: '';
    width: 80%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.089);
    position: absolute;
    top: 0;
    left: 10%;
}

.saas-body > section > .end-con > h2 {
    width: 90%;
    font-size: var(--big-font-size);
    text-align: center;
}

.saas-body > section > .end-con > .loading-circles {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.saas-body > section > .end-con > .loading-circles > .circle {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: white;
    opacity: .8;
}

.saas-body > section > .end-con > .loading-circles > .circle:nth-child(2) {
    animation: main_loading_circle_pulse 1.5s linear infinite;
}

.saas-body > section > .end-con > .loading-circles > .circle:nth-child(1),
.saas-body > section > .end-con > .loading-circles > .circle:nth-child(3) {
    background-color: var(--secondary-color);
    scale: .8;
    opacity: .8;
    animation: side_loading_circles_pulse 1.5s linear infinite;
}

@keyframes main_loading_circle_pulse {

    0% {
        scale: 0.6;
        opacity: 0;
    }

    50% {
        scale: 1.1;
        opacity: .9;
    }

    100% {
        scale: 1.1;
        opacity: 0;
    }

}

@keyframes side_loading_circles_pulse {

    0% {
        scale: 0.6;
        opacity: 0;
    }

    50% {
        scale: .8;
        opacity: .9;
    }

    100% {
        scale: .8;
        opacity: 0;
    }

}

.saas-body #saas-request-form .saas-request-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    pointer-events: none !important;
}

.saas-body #saas-request-form .saas-budget-error {
    display: block;
    min-height: 18px;
    margin-top: 8px;
    color: #c95c5c;
    font-size: 12px;
    line-height: 1.5;
}

.saas-body #saas-request-form .custom-select.has-error .custom-select-trigger {
    border-color: #c95c5c;
    box-shadow: 0 0 0 3px rgba(201, 92, 92, 0.10);
}

.saas-body #saas-request-form .saas-request-submit-button {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        opacity 0.25s ease,
        transform 0.25s ease;
}

.saas-body #saas-request-form .saas-request-submit-label,
.saas-body #saas-request-form .saas-request-submit-icon {
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.25s ease;
}

.saas-body #saas-request-form .saas-request-submit-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 22px;
    display: block;
    border: 2px solid rgba(255, 255, 255, 0.28);
    border-top-color: #ffffff;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.75);
}

.saas-body #saas-request-form .saas-request-submit-loading-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.saas-body #saas-request-form .saas-request-submit-button.is-loading {
    cursor: wait;
    pointer-events: none;
}

.saas-body #saas-request-form .saas-request-submit-button.is-loading .saas-request-submit-label {
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
}

.saas-body #saas-request-form .saas-request-submit-button.is-loading .saas-request-submit-icon {
    opacity: 0;
    visibility: hidden;
    transform: translateX(5px) scale(0.8);
}

.saas-body #saas-request-form .saas-request-submit-button.is-loading .saas-request-submit-spinner {
    opacity: 1;
    visibility: visible;
    animation: saas-request-submit-spin 0.75s linear infinite;
}

.saas-body #saas-request-form .saas-request-submit-button:disabled {
    opacity: 1;
}

@keyframes saas-request-submit-spin {

    from {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg) scale(1);
    }

}

@media (prefers-reduced-motion: reduce) {

    .saas-body #saas-request-form .saas-request-submit-button,
    .saas-body #saas-request-form .saas-request-submit-label,
    .saas-body #saas-request-form .saas-request-submit-icon {
        transition: none;
    }

    .saas-body #saas-request-form .saas-request-submit-button.is-loading .saas-request-submit-spinner {
        animation-duration: 1.4s;
    }

}





/* ==================================== */
/* ================ PRIVACY POLICY PAGE */
/* ==================================== */





.privacy-policy-body > section {
    width: 100%;
    height: auto;
}



/* ============================================ */
/* ================ PRIVACY POLICY PAGE - INTRO */
/* ============================================ */



.privacy-policy-body > section > .intro {
    width: 100%;
    height: auto;
    padding: 5% 10%;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

@media (max-width:1443px) {
    .privacy-policy-body > section > .intro {
        padding: 5%;
    }
}

.privacy-policy-body > section > .intro > span {
    width: auto;
    height: auto;
    padding: 20px;
    background-color: #6747c76b;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    text-decoration: none;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.089);
    transition: var(--transition);
    margin-top: 5px;
}

.privacy-policy-body > section > .intro > h1 {
    width: 100%;
    font-size: var(--huge-font-size);
    text-align: center;
}

.privacy-policy-body > section > .intro > div {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.privacy-policy-body > section > .intro > div > p {
    text-align: center;
    opacity: .9;
    font-size: var(--intermediate-font-size);
    font-weight: bold;
    position: relative;
}

.privacy-policy-body > section > .intro > div > .before,
.privacy-policy-body > section > .intro > div > .after {
    width: 5%;
    height: 1px;
    background-color: var(--secondary-color);
    opacity: .5;
}



/* ============================================== */
/* ================ PRIVACY POLICY PAGE - CONTENT */
/* ============================================== */



.privacy-policy-body > section > .content {
    width: 100%;
    height: auto;
    padding: 5% 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

@media (max-width:1443px) {
    .privacy-policy-body > section > .content {
        padding: 5%;
        padding-bottom: 100px;
    }
}

.privacy-policy-body > section > .content > article {
    width: 70%;
    height: auto;
    padding: 5%;
    border-radius: 36px;
    background-color: var(--primary-color-shade);
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 50px;
    z-index: 10;
}

@media (max-width:1443px) {
    .privacy-policy-body > section > .content > article {
        width: 75%;
    }
}

@media (max-width:1025px) {
    .privacy-policy-body > section > .content > article {
        width: 85%;
        padding: 50px 40px;
    }
}

@media (max-width:768px) {
    .privacy-policy-body > section > .content > article {
        width: 100%;
        padding: 40px 25px;
        gap: 35px;
        border-radius: 26px;
    }
}

.privacy-policy-body.ar > section > .content > article {
    direction: rtl;
}

.privacy-policy-body > section > .content > article > .section {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
}

.privacy-policy-body > section > .content > article > .section > .header {
    width: 100%;
}

.privacy-policy-body > section > .content > article > .section > .header > h2 {
    font-size: var(--big-font-size);
}

.privacy-policy-body > section > .content > article > .section > .body {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
    margin-top: 30px;
}

@media (max-width:1025px) {
    .privacy-policy-body > section > .content > article > .section > .body {
        margin-top: 15px;
    }
}

@media (max-width:768px) {
    .privacy-policy-body > section > .content > article > .section > .body {
        margin-top: 0px;
        gap: 10px;
    }
}

.privacy-policy-body > section > .content > article > .section > .body > p {
    opacity: .9;
}

.privacy-policy-body > section > .content > article > .section > .body > ul {
    width: 100%;
    height: auto;
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
}

@media (max-width:768px) {
    .privacy-policy-body > section > .content > article > .section > .body > ul {
        gap: 10px;
    }
}

.privacy-policy-body > section > .content > article > .section > .body > ul > li {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 20px;
}

.privacy-policy-body > section > .content > article > .section > .body > ul > li > div {
    width: 10px;
    height: 10px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    transform: translateY(15px);
}

.privacy-policy-body > section > .content > article > .section > .body > ul > li > p {
    max-width: 95%;
    opacity: .9;
}

.privacy-policy-body > section > .content > article > .section > .body > ul > li > p > span {
    font-weight: bold;
}

.privacy-policy-body > section > .content > article > .section > .body > .grid {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

@media (max-width:768px) {
    .privacy-policy-body > section > .content > article > .section > .body > .grid {
        grid-template-columns: repeat(1,1fr);
    }
}

.privacy-policy-body > section > .content > article > .section > .body > .grid > .item {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-content: start;
    gap: 15px;
    background-color: rgba(255, 255, 255, 0.034);
    border-radius: 16px;
    padding: 30px;
}

.privacy-policy-body > section > .content > article > .section > .body > .grid > .item > svg {
    width: 30px;
    height: 30px;
    fill: var(--secondary-color);
}

.privacy-policy-body > section > .content > article > .section > .body > .grid > .item > strong {
    color: var(--secondary-color);
}

.privacy-policy-body > section > .content > article > .section > .body > .grid > .item > h3 {
    font-size: var(--intermediate-font-size);
}

.privacy-policy-body > section > .content > article > .section > .body > .grid > .item > p {
    opacity: .9;
    line-height: 25px;
}

.privacy-policy-body > section > .content > article > .section > .body > .contact {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 30px;
    padding: 50px;
    background-color: #6747c718;
    border-radius: 26px;
}

.privacy-policy-body > section > .content > article > .section > .body > .contact > .left {
    width: auto;
}

.privacy-policy-body > section > .content > article > .section > .body > .contact > .left > strong {
    color: var(--secondary-color);
    font-size: var(--intermediate-font-size);
}

.privacy-policy-body > section > .content > article > .section > .body > .contact > .right {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
}

.privacy-policy-body > section > .content > article > .section > .body > .contact > .right > strong {
    font-size: var(--intermediate-font-size);
}

.privacy-policy-body > section > .content > article > .section > .body > .contact > .right > p {
    opacity: .9;
    line-height: 25px;
}





/* ======================================== */
/* ================ TERMS & CONDITIONS PAGE */
/* ======================================== */





.terms-and-conditions-body > section {
    width: 100%;
    height: auto;
}



/* ================================================ */
/* ================ TERMS & CONDITIONS PAGE - INTRO */
/* ================================================ */



.terms-and-conditions-body > section > .intro {
    width: 100%;
    height: auto;
    padding: 5% 10%;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

@media (max-width:1443px) {
    .terms-and-conditions-body > section > .intro {
        padding: 5%;
    }
}

.terms-and-conditions-body.ar > section > .intro {
    direction: rtl;
}

.terms-and-conditions-body > section > .intro > span {
    width: auto;
    height: auto;
    padding: 20px;
    background-color: #6747c76b;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    text-decoration: none;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.089);
    transition: var(--transition);
    margin-top: 5px;
}

.terms-and-conditions-body > section > .intro > h1 {
    width: 100%;
    font-size: var(--huge-font-size);
    text-align: center;
}

.terms-and-conditions-body > section > .intro > div {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.terms-and-conditions-body > section > .intro > div > p {
    text-align: center;
    opacity: .9;
    font-size: var(--intermediate-font-size);
    font-weight: bold;
    position: relative;
}

.terms-and-conditions-body > section > .intro > div > .before,
.terms-and-conditions-body > section > .intro > div > .after {
    width: 5%;
    height: 1px;
    background-color: var(--secondary-color);
    opacity: .5;
}



/* ================================================== */
/* ================ TERMS & CONDITIONS PAGE - CONTENT */
/* ================================================== */



.terms-and-conditions-body > section > .content {
    width: 100%;
    height: auto;
    padding: 5% 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

@media (max-width:1443px) {
    .terms-and-conditions-body > section > .content {
        padding: 5%;
        padding-bottom: 100px;
        padding-top: 50px;
    }
}

.terms-and-conditions-body.ar > section > .content {
    direction: rtl;
}

.terms-and-conditions-body > section > .content > article {
    width: 70%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 130px;
    z-index: 10;
}

@media (max-width:1443px) {
    .terms-and-conditions-body > section > .content > article {
        width: 75%;
        gap: 100px;
    }
}

@media (max-width:1025px) {
    .terms-and-conditions-body > section > .content > article {
        width: 82%;
    }
}

@media (max-width:500px) {
    .terms-and-conditions-body > section > .content > article {
        gap: 70px;
    }
}

.terms-and-conditions-body > section > .content > article > .section {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
    position: relative;
}

.terms-and-conditions-body > section > .content > article > .section::before {
    content: '';
    width: 2px;
    height: 100%;
    background-image: linear-gradient(0deg,transparent, var(--secondary-color), transparent);
    position: absolute;
    top: 0;
    left: -10%;
}

.terms-and-conditions-body.ar > section > .content > article > .section::before {
    left: unset;
    right: -10%;
}

.terms-and-conditions-body > section > .content > article > .section > .header {
    width: 100%;
}

.terms-and-conditions-body > section > .content > article > .section > .header > h2 {
    font-size: var(--big-font-size);
}

.terms-and-conditions-body > section > .content > article > .section > .header > h2 > span {
    color: var(--secondary-color);
    font-size: var(--intermediate-font-size);
    padding-right: 30px;
}

@media (max-width:768px) {
    .terms-and-conditions-body > section > .content > article > .section > .header > h2 > span {
        padding-right: 5px;
    }
}

.terms-and-conditions-body > section > .content > article > .section > .body {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
    margin-top: 30px;
}

@media (max-width:768px) {
    .terms-and-conditions-body > section > .content > article > .section > .body {
        margin-top: 20px;
    }
}

@media (max-width:500px) {
    .terms-and-conditions-body > section > .content > article > .section > .body {
        margin-top: 10px;
    }
}

.terms-and-conditions-body > section > .content > article > .section > .body > .card {
    width: 100%;
    height: auto;
    padding: 5%;
    border-radius: 16px;
    background-color: var(--primary-color-shade);
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
}

.terms-and-conditions-body > section > .content > article > .section > .body > .card > ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
}

.terms-and-conditions-body > section > .content > article > .section > .body > .card > ul > li {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 20px;
}

.terms-and-conditions-body > section > .content > article > .section > .body > .card > ul > li > .left > svg {
    width: 25px;
    height: 25px;
    fill: var(--secondary-color);
}

.terms-and-conditions-body > section > .content > article > .section > .body > .card > ul > li > .right {
    width: 100%;
    height: auto;
}

.terms-and-conditions-body > section > .content > article > .section > .body > .card > ul > li > .right > p {
    width: 80%;
    opacity: .9;
    line-height: 25px;
}

.terms-and-conditions-body > section > .content > article > .section > .body > p {
    opacity: .9;
}

.terms-and-conditions-body > section > .content > article > .section > .body > .left-shift {
    width: 85%;
    height: auto;
    margin-left: 15%;
    position: relative;
}

.terms-and-conditions-body > section > .content > article > .section > .body > .left-shift::before {
    content: '';
    width: 2px;
    height: 90%;
    background-color: var(--secondary-color);
    position: absolute;
    top: 5%;
    left: -30px;
    opacity: .4;
}

.terms-and-conditions-body > section > .content > article > .section > .body > .alert {
    width: 100%;
    height: auto;
    padding: 5%;
    border-radius: 16px;
    background-color: var(--primary-color-shade);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 30px;
}

.terms-and-conditions-body > section > .content > article > .section > .body > .alert > svg {
    width: 80px;
    height: 80px;
    fill: red;
}

.terms-and-conditions-body > section > .content > article > .section > .body > .alert > p {
    line-height: 25px;
    color: red;
    font-weight: bolder;
    opacity: .6;
    text-transform: uppercase;
    word-spacing: 5px;
}

.terms-and-conditions-body > section > .content > article > .contact {
    width: 100%;
    height: auto;
    padding: 5%;
    border-radius: 16px;
    background-color: var(--primary-color-shade);
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
}

.terms-and-conditions-body > section > .content > article > .contact > strong {
    font-size: var(--intermediate-font-size);
}

.terms-and-conditions-body > section > .content > article > .contact > p {
    opacity: 9;
}

.terms-and-conditions-body > section > .content > article > .contact > .dets {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: start;
    align-items: stretch;
}

@media (max-width:1025px) {
    .terms-and-conditions-body > section > .content > article > .contact > .dets {
        flex-direction: column;
        justify-content: start;
        align-items: start;
        gap: 20px;
    }
}

.terms-and-conditions-body > section > .content > article > .contact > .dets > div {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
    position: relative;
}

@media (max-width:1025px) {
    .terms-and-conditions-body > section > .content > article > .contact > .dets > div {
        padding: 10px;
        gap: 10px;
    }
}

.terms-and-conditions-body > section > .content > article > .contact > .dets > div:last-child::before {
    content: '';
    width: 1px;
    height: calc(100% - 100px);
    position: absolute;
    top: 50px;
    left: 0;
    background-color: rgba(255, 255, 255, 0.144);
}

@media (max-width:1025px) {
    .terms-and-conditions-body > section > .content > article > .contact > .dets > div:last-child::before {
        display: none;
    }
}

.terms-and-conditions-body > section > .content > article > .contact > .dets > div:last-child::before {
    left: unset;
    right: 0;
}

.terms-and-conditions-body > section > .content > article > .contact > .dets > div > strong {
    color: var(--secondary-color);
}

.terms-and-conditions-body > section > .content > article > .contact > .dets > div > p {
    opacity: .9;
    line-height: 25px;
}






/* ========================= */
/* ================ FAQ PAGE */
/* ========================= */





.faq-body > section {
    width: 100%;
    height: auto;
}



/* ================================= */
/* ================ FAQ PAGE - INTRO */
/* ================================= */



.faq-body > section > .intro {
    width: 100%;
    height: auto;
    padding: 5% 10%;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

@media (max-width:1443px) {
    .faq-body > section > .intro {
        padding: 5%;
    }
}

.faq-body.ar > section > .intro {
    direction: rtl;
}

.faq-body > section > .intro > span {
    width: auto;
    height: auto;
    padding: 20px;
    background-color: #6747c76b;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    text-decoration: none;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.089);
    transition: var(--transition);
    margin-top: 5px;
}

.faq-body > section > .intro > h1 {
    width: 100%;
    text-align: center;
    font-size: var(--big-font-size);
}

.faq-body > section > .intro > p {
    width: 50%;
    opacity: .9;
    text-align: center;
}

@media (max-width:1443px) {
    .faq-body > section > .intro > p {
        width: 70%;
    }
}

@media (max-width:1025px) {
    .faq-body > section > .intro > p {
        width: 100%;
    }
}

.faq-body > section > .intro > .search {
    width: 50%;
    min-height: 80px;
    background-color: var(--primary-color-shade);
    border: 1px solid rgba(243, 240, 250, 0.1);
    display: flex;
    justify-content: start;
    align-items: stretch;
    position: relative;
}

@media (max-width:1443px) {
    .faq-body > section > .intro > .search {
        width: 60%;
    }
}

@media (max-width:1025px) {
    .faq-body > section > .intro > .search {
        width: 80%;
    }
}

@media (max-width:768px) {
    .faq-body > section > .intro > .search {
        width: 100%;
    }
}

.faq-body > section > .intro > .search::after {
    content: '';
    width: 0%;
    height: 1px;
    background-color: var(--secondary-color);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

.faq-body > section > .intro > .search:hover::after,
.faq-body > section > .intro > .search:has(> input:focus)::after,
.faq-body > section > .intro > .search:has(> input:valid)::after {
    width: 100%;
}

.faq-body > section > .intro > .search > .icon {
    min-width: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width:1443px) {
    .faq-body > section > .intro > .search > .icon {
        min-width: 15%;
    }
}

.faq-body > section > .intro > .search > .icon > svg {
    width: 40px;
    height: 40px;
    stroke: var(--trinary-color);
}


.faq-body > section > .intro > .search > input {
    width: 100%;
    height: auto;
    padding: 20px;
    border: none;
    padding-left: 20px;
    background-color: transparent;
    outline: none;
}



/* =================================== */
/* ================ FAQ PAGE - CONTENT */
/* =================================== */



.faq-body > section > .content {
    width: 100%;
    height: auto;
    padding: 5% 10%;
    display: flex;
    justify-content: start;
    align-items: stretch;
    gap: 100px;
}

@media (max-width:1443px) {
    .faq-body > section > .content {
        padding: 5%;
        padding-bottom: 100px;
    }
}

@media (max-width:1025px) {
    .faq-body > section > .content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 70px;
    }
}

.faq-body.ar > section > .content {
    direction: rtl;
}

.faq-body > section > .content > .aside-wrapper {
    width: 25%;
}

@media (max-width:1025px) {
    .faq-body > section > .content > .aside-wrapper {
        width: 100%;
    }
}

.faq-body > section > .content > .aside-wrapper > aside {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
}

.faq-body > section > .content > .aside-wrapper > aside > strong {
    font-size: var(--intermediate-font-size);
    opacity: .7;
    text-transform: uppercase;
}

.faq-body > section > .content > .aside-wrapper > aside > .nav-btns {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 5px;
    margin-top: 30px;
}

@media (max-width:1025px) {
    .faq-body > section > .content > .aside-wrapper > aside > .nav-btns {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.faq-body > section > .content > .aside-wrapper > aside > .nav-btns > button {
    width: 100%;
    height: auto;
    padding: 20px;
    background-color: transparent;
    border: none;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 20px;
    border-radius: 8px;
    cursor: pointer;
}

@media (max-width:1025px) {
    .faq-body > section > .content > .aside-wrapper > aside > .nav-btns > button {
        width: auto;
    }
}

.faq-body > section > .content > .aside-wrapper > aside > .nav-btns > button:hover,
.faq-body > section > .content > .aside-wrapper > aside > .nav-btns > button.active {
    background-color: #6747c73d;
    border-right: 2px solid var(--secondary-color);
}

@media (max-width:1025px) {
    .faq-body > section > .content > .aside-wrapper > aside > .nav-btns > button:hover,
    .faq-body > section > .content > .aside-wrapper > aside > .nav-btns > button.active {
        width: auto;
        border-right: none;
        border-bottom: 2px solid var(--secondary-color);
    }
}

.faq-body > section > .content > .aside-wrapper > aside > .nav-btns > button > svg {
    width: 25px;
    height: 25px;
    fill: var(--secondary-color);
}

.faq-body > section > .content > .aside-wrapper > aside > .nav-btns > button > span {
    opacity: .9;
}

.faq-body > section > .content > .qusetions {
    width: 75%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    grid-area: 20px;
}

@media (max-width:1025px) {
    .faq-body > section > .content > .qusetions {
        width: 100%;
    }
}

.faq-body > section > .content > .qusetions > .section {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    grid-area: 20px;
}

.faq-body > section > .content > .qusetions > .section > .header {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
}

.faq-body > section > .content > .qusetions > .section > .header > h3 {
    font-size: var(--big-font-size);
}

.faq-body > section > .content > .qusetions > .section > .header > p {
    opacity: .9;
}

.faq-body > section > .content > .qusetions > .section > .body {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    grid-area: 20px;
    margin-top: 50px;
}

.faq-body > section > .content > .qusetions > .section > .body > .item {
    width: 100%;
    height: auto;
    margin-bottom: 12px;
    overflow: hidden;
    background-color: var(--primary-color-shade);
    z-index: 10;
    border-radius: 12px;
    transition: var(--transition);
}

.faq-body > section > .content > .qusetions > .section > .body > .item:last-child {
    margin-bottom: 0;
}

.faq-body > section > .content > .qusetions > .section > .body > .item > button {
    width: 100%;
    height: auto;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    color: var(--trinary-color);
    background-color: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
}

.faq-body > section > .content > .qusetions > .section > .body > .item > button > span:first-child {
    font-size: var(--intermediate-font-size);
}

.faq-body > section > .content > .qusetions > .section > .body > .item > button > .item-icon {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: var(--transition);
}

.faq-body > section > .content > .qusetions > .section > .body > .item > button > .item-icon > svg {
    width: 100%;
    height: 1005;
    fill: none;
    stroke: var(--trinary-color);
    stroke-width: 2;
    stroke-linecap: round;
    transition: var(--transition);
}

.faq-body > section > .content > .qusetions > .section > .body > .item.active > button > .item-icon {
    transform: rotate(45deg);
}

.faq-body > section > .content > .qusetions > .section > .body > .item.active > button > .item-icon > svg {
    stroke: var(--secondary-color);
}

.faq-body > section > .content > .qusetions > .section > .body > .item > .answer {
    width: 100%;
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition:
        grid-template-rows .4s ease,
        opacity .3s ease;
}

.faq-body > section > .content > .qusetions > .section > .body > .item.active > .answer {
    grid-template-rows: 1fr;
    opacity: 1;
}

.faq-body > section > .content > .qusetions > .section > .body > .item > .answer > div {
    min-height: 0;
    overflow: hidden;
}

.faq-body > section > .content > .qusetions > .section > .body > .item > .answer > div > p {
    padding: 0 30px 30px;
    line-height: 1.9;
    opacity: .72;
}

.faq-body > section > .content > .qusetions > .section:not(:first-child) {
    margin-top: 80px;
}

.faq-body > section > .content > .qusetions > .section.faq-selected {
    margin-top: 0;
}

.faq-body > section > .content > .qusetions > .section.faq-hidden,
.faq-body > section > .content > .qusetions > .section > .body > .item.faq-search-hidden {
    display: none;
}

@media screen and (max-width: 600px) {

    .faq-body > section > .content > .qusetions > .section > .body > .item > button {
        min-height: 70px;
        padding: 18px;
        gap: 18px;
    }

    .faq-body > section > .content > .qusetions > .section > .body > .item > button > .item-icon {
        min-width: 34px;
        height: 34px;
    }

    .faq-body > section > .content > .qusetions > .section > .body > .item > .answer > div > p {
        padding: 0 18px 20px;
    }

}

.faq-body > section > .content > .qusetions > .no-results {
    width: 100%;
    min-height: 350px;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.faq-body > section > .content > .qusetions > .no-results.active {
    display: flex;
}

.faq-body > section > .content > .qusetions > .no-results > svg {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
    fill: none;
    stroke: var(--secondary-color);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: .7;
}

.faq-body > section > .content > .qusetions > .no-results > h3 {
    font-size: var(--intermediate-font-size);
}

.faq-body > section > .content > .qusetions > .no-results > p {
    opacity: .65;
}





/* ============================= */
/* ================ CAREERS PAGE */
/* ============================= */





.careers-body > section {
    width: 100%;
    height: auto;
}



/* ===================================== */
/* ================ CAREERS PAGE - INTRO */
/* ===================================== */



.careers-body > section > .intro {
    width: 100%;
    height: auto;
    padding: 5% 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 100px;
}

@media (max-width:1443px) {
    .careers-body > section > .intro {
        padding: 5%;
    }
}

.careers-body > section > .intro > span {
    width: auto;
    height: auto;
    padding: 20px;
    background-color: #6747c76b;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    text-decoration: none;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.089);
    transition: var(--transition);
    margin-top: 5px;
}

.careers-body > section > .intro > h1 {
    font-size: var(--big-font-size);
}

.careers-body > section > .intro > p {
    width: 50%;
    opacity: .9;
    text-align: center;
}

@media (max-width:1443px) {
    .careers-body > section > .intro > p {
        width: 60%;
    }
}

@media (max-width:1025px) {
    .careers-body > section > .intro > p {
        width: 70%;
    }
}

@media (max-width:768px) {
    .careers-body > section > .intro > p {
        width: 80%;
    }
}

@media (max-width:500px) {
    .careers-body > section > .intro > p {
        width:100%;
    }
}


/* ==================================== */
/* ================ CAREERS PAGE - GRID */
/* ==================================== */



.careers-body > section > .grid {
    width: 100%;
    height: auto;
    padding: 5% 10%;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 40px;
    margin-bottom: 100px;
}

@media (max-width:1443px) {
    .careers-body > section > .grid {
        padding: 5%;
    }
}

@media (max-width:1025px) {
    .careers-body > section > .grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width:768px) {
    .careers-body > section > .grid {
        grid-template-columns: repeat(1,1fr);
    }
}

.careers-body.ar > section > .grid {
    direction: rtl;
}

.careers-body > section > .grid > .item {
    padding: 50px;
    background-color: var(--primary-color-shade);
    border: 1px solid rgba(243, 240, 250, 0.1);
    border-radius: 36px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
    transition: var(--transition);
    z-index: 10;
}

@media (max-width:768px) {
    .careers-body > section > .grid > .item {
        padding: 30px;
    }
}

.careers-body > section > .grid > .item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 0px 10px 0px var(--secondary-color-shadow);
}

.careers-body > section > .grid > .item > strong {
    width: 100%;
    font-size: var(--intermediate-font-size);
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 20px;
}

.careers-body > section > .grid > .item > strong::after {
    content: '';
    width: 10%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.233);
    position: absolute;
    top: 100%;
    left: 0%;
}

.careers-body.ar > section > .grid > .item > strong::after {
    left: unset;
    right: 0%;
}

.careers-body > section > .grid > .item > p {
    opacity: .9;
}

.careers-body > section > .grid > .item > a {
    width: auto;
    height: auto;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 26px;
    color: var(--trinary-color);
    font-size: var(--small-font-size);
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.careers-body > section > .grid > .item > a:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px var(--secondary-color-shadow);
}

.careers-body > section > .grid > .item > span {
    color: red;
    opacity: .9;
    font-size: var(--tiny-font-size);
}





/* ==================================== */
/* ================ REQUEST A DEMO PAGE */
/* ==================================== */





.request-demo-body > section {
    width: 100%;
    height: auto;
}



/* ============================================ */
/* ================ REQUEST A DEMO PAGE - INTRO */
/* ============================================ */



.request-demo-body > section > .intro {
    width: 100%;
    min-height: 100dvh;
    padding: 5% 10%;
    margin-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

@media (max-width:1443px) {
    .request-demo-body > section > .intro {
        padding: 5%;
    }
}

.request-demo-body.ar > section > .intro {
    direction: rtl;
}

.request-demo-body > section > .intro > .container {
    width: 80%;
    position: relative;
    background-color: #121a1b;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 36px;
    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.35),
        0 0 70px rgba(104, 71, 199, 0.07);
    display: flex;
    justify-content: center;
    align-items: stretch;
}

@media (max-width:1443px) {
    .request-demo-body > section > .intro > .container {
        width: 100%;
    }
}

.request-demo-body > section > .intro > .container > .dets {
    width: 43%;
    min-height: 100%;
    padding: clamp(38px, 4vw, 58px);
    position: relative;
    color: var(--trinary-color);
    background:
        linear-gradient(
            145deg,
            #0e0e0ea1,
            #0e0e0e59
        );
    border-radius: 36px 0 0 36px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    overflow: hidden;
    box-sizing: border-box;
}

.request-demo-body.ar > section > .intro > .container > .dets {
    border-radius: 0px 36px 36px 0px;
}

@media (max-width:1050px) {
    .request-demo-body.ar > section > .intro > .container > .dets {
        border-radius: 36px 36px 0px 0px;
    }
}

.request-demo-body > section > .intro > .container > .dets::before {
    content: "";
    width: 240px;
    height: 240px;
    position: absolute;
    right: -110px;
    bottom: 90px;
    background:
        radial-gradient(
            circle,
            rgba(104, 71, 199, 0.2),
            transparent 67%
        );
    border-radius: 50%;
    pointer-events: none;
}

.request-demo-body > section > .intro > .container > .dets::after {
    content: "";
    width: 150px;
    height: 150px;
    position: absolute;
    top: -80px;
    left: -60px;
    border: 1px solid rgba(104, 71, 199, 0.16);
    border-radius: 50%;
    box-shadow:
        0 0 0 30px rgba(104, 71, 199, 0.025),
        0 0 0 60px rgba(104, 71, 199, 0.018);
    pointer-events: none;
}

.request-demo-body > section > .intro > .container > .dets > * {
    position: relative;
    z-index: 2;
}

.request-demo-body > section > .intro > .container > .dets > strong {
    width: fit-content;
    padding: 20px;
    color: #a88eff;
    background-color: rgba(104, 71, 199, 0.13);
    border: 1px solid rgba(104, 71, 199, 0.3);
    border-radius: 26px;
    font-size: var(--small-font-size);
    text-transform: uppercase;
    box-sizing: border-box;
}

.request-demo-body > section > .intro > .container > .dets > h1 {
    color: var(--trinary-color);
    font-size: var(--big-font-size);
}

.request-demo-body > section > .intro > .container > .dets > h1 > span {
    color: var(--secondary-color);
    font-size: inherit;
}

.request-demo-body > section > .intro > .container > .dets > .intro-text {
    margin: 20px 0 0;
    opacity: .9;
}

.request-demo-body > section > .intro > .container > .dets > ul {
    width: 100%;
    margin: 20px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
}

.request-demo-body > section > .intro > .container > .dets > ul > li {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.request-demo-body > section > .intro > .container > .dets > ul > li > .benefit-icon {
    min-width: 44px;
    width: 44px;
    height: 44px;
    color: #9b7ff0;
    background-color: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.request-demo-body > section > .intro > .container > .dets > ul > li > .benefit-icon > svg {
    width: 21px;
    height: 21px;
    color: #9b7ff0;
}

.request-demo-body > section > .intro > .container > .dets > ul > li > p {
    margin: 0;
    color: rgba(243, 240, 250, 0.5);
    font-size: var(--small-font-size);
    line-height: 25px;
}

.request-demo-body > section > .intro > .container > .dets > ul > li > p > span {
    margin-bottom: 3px;
    color: var(--trinary-color);
    font-size: 15px;
    font-weight: 600;
    display: block;
}

.request-demo-body > section > .intro > .container > .dets > .trust-message {
    width: 100%;
    margin-top: auto;
    padding-top: 42px;
    display: flex;
    align-items: start;
    gap: 10px;
}

.request-demo-body > section > .intro > .container > .dets > .trust-message > span {
    min-width: 7px;
    width: 7px;
    height: 7px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    box-shadow: 0 0 13px rgba(104, 71, 199, 0.8);
    transform: translateY(8px);
}

.request-demo-body > section > .intro > .container > .dets > .trust-message > p {
    margin: 0;
    color: rgba(243, 240, 250, 0.53);
    line-height: 25px;
}

.request-demo-body > section > .intro > .container > form {
    width: 57%;
    padding: clamp(38px, 4vw, 58px);
    position: relative;
    background-color: var(--primary-color-shade);
    border-radius: 0 35px 35px 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: center;
    gap: 23px 18px;
    box-sizing: border-box;
}

.request-demo-body > section > .intro > .container > form > .full-width {
    grid-column: 1 / -1;
}

.request-demo-body > section > .intro > .container > form > .opt-grp {
    min-width: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.request-demo-body > section > .intro > .container > form > .opt-grp > label {
    color: rgba(243, 240, 250, 0.58);
}

.request-demo-body > section > .intro > .container > form > .opt-grp > label > span {
    color: red;
}

.request-demo-body > section > .intro > .container > form > .opt-grp > input,
.request-demo-body > section > .intro > .container > form > .opt-grp > textarea {
    width: 100%;
    color: var(--trinary-color);
    background-color: rgba(255, 255, 255, 0.018);
    border: 1px solid rgba(255, 255, 255, 0.09);
    outline: none;
    border-radius: 16px;
    font-family: inherit;
    transition: var(--transition);
    box-sizing: border-box;
}

.request-demo-body > section > .intro > .container > form > .opt-grp > input {
    padding: 20px;
}

.request-demo-body > section > .intro > .container > form > .opt-grp > textarea {
    min-height: 125px;
    padding: 20px;
    resize: vertical;
    line-height: 20px;
}

.request-demo-body > section > .intro > .container > form > .opt-grp > input::placeholder,
.request-demo-body > section > .intro > .container > form > .opt-grp > textarea::placeholder,
.request-demo-body > section > .intro > .container > form > .demo-phone-field > .demo-phone-control > .demo-phone-number-input::placeholder,
.request-demo-body > section > .intro > .container > form > .demo-phone-field > .demo-phone-control > .demo-country-select > .demo-country-menu > .demo-country-search-container > .demo-country-search::placeholder {
    color: rgba(243, 240, 250, 0.28);
}

.request-demo-body > section > .intro > .container > form > .opt-grp > input:hover,
.request-demo-body > section > .intro > .container > form > .opt-grp > textarea:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.request-demo-body > section > .intro > .container > form > .opt-grp > input:focus,
.request-demo-body > section > .intro > .container > form > .opt-grp > textarea:focus {
    border-color: rgba(104, 71, 199, 0.75);
    box-shadow: 0 0 0 3px rgba(104, 71, 199, 0.1);
}

.request-demo-body > section > .intro > .container > form > .demo-phone-field {
    z-index: 60;
}

.request-demo-body > section > .intro > .container > form > .demo-phone-field > .demo-phone-control {
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 10px;
    transition: var(--transition);
    box-sizing: border-box;
}

.request-demo-body > section > .intro > .container > form > .demo-phone-field > .demo-phone-control > .demo-country-select {
    flex: 0 0 auto;
    position: relative;
}

.request-demo-body > section > .intro > .container > form > .demo-phone-field > .demo-phone-control > .demo-country-select > .demo-country-trigger {
    height: 100%;
    padding: 20px;
    border-radius: 16px;
    color: var(--trinary-color);
    background-color: rgba(255, 255, 255, 0.018);
    border: none;
    border: 1px solid rgba(255, 255, 255, 0.09);
    outline: none;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-family: inherit;
}

.request-demo-body > section > .intro > .container > form > .demo-phone-field > .demo-phone-control > .demo-country-select > .demo-country-trigger:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.request-demo-body > section > .intro > .container > form > .demo-phone-field > .demo-phone-control > .demo-phone-number-input:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.request-demo-body > section > .intro > .container > form > .demo-phone-field > .demo-phone-control > .demo-country-select.is-open > .demo-country-trigger,
.request-demo-body > section > .intro > .container > form > .demo-phone-field > .demo-phone-control > .demo-country-select > .demo-country-trigger:focus-visible {
    border-color: rgba(104, 71, 199, 0.75);
    box-shadow: 0 0 0 3px rgba(104, 71, 199, 0.1);
}

.request-demo-body > section > .intro > .container > form > .demo-phone-field > .demo-phone-control > .demo-phone-number-input:focus {
    border-color: rgba(104, 71, 199, 0.75);
    box-shadow: 0 0 0 3px rgba(104, 71, 199, 0.1);
}

.request-demo-body > section > .intro > .container > form > .demo-phone-field.has-error > .demo-phone-control > .demo-country-select > .demo-country-trigger {
    border-color: rgba(255, 94, 94, 0.75);
    box-shadow: 0 0 0 3px rgba(255, 94, 94, 0.08);
}

.request-demo-body > section > .intro > .container > form > .demo-phone-field.has-error > .demo-phone-control > .demo-phone-number-input {
    border-color: rgba(255, 94, 94, 0.75);
    box-shadow: 0 0 0 3px rgba(255, 94, 94, 0.08);
}

.request-demo-body > section > .intro > .container > form > .demo-phone-field > .demo-phone-control > .demo-country-select > .demo-country-trigger > .demo-selected-country-flag {
    font-size: 18px;
    line-height: 1;
    transform: translateY(-2px);
}

.request-demo-body > section > .intro > .container > form > .demo-phone-field > .demo-phone-control > .demo-country-select > .demo-country-trigger > svg {
    width: 10px;
    height: 7px;
    color: rgba(243, 240, 250, 0.45);
    transition: var(--transition);
}

.request-demo-body > section > .intro > .container > form > .demo-phone-field > .demo-phone-control > .demo-country-select.is-open > .demo-country-trigger > svg {
    transform: rotate(180deg);
}

.request-demo-body > section > .intro > .container > form > .demo-phone-field > .demo-phone-control > .demo-phone-number-input {
    min-width: 0;
    height: 100%;
    flex: 1;
    padding: 20px;
    border-radius: 16px;
    color: var(--trinary-color);
    background-color: rgba(255, 255, 255, 0.018);
    border: none;
    outline: none;
    font-family: inherit;
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.request-demo-body > section > .intro > .container > form > .demo-phone-field > .demo-phone-control > .demo-country-select > .demo-country-menu {
    width: min(345px, calc(100vw - 40px));
    padding: 10px;
    position: absolute;
    top: calc(100% + 11px);
    left: 0;
    z-index: 100;
    background-color: var(--trinary-color);
    border: 1px solid rgba(2, 2, 2, 0.11);
    border-radius: 16px;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.45),
        0 0 35px rgba(104, 71, 199, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-sizing: border-box;
}

.request-demo-body > section > .intro > .container > form > .demo-phone-field > .demo-phone-control > .demo-country-select > .demo-country-menu[hidden] {
    display: none !important;
}

.request-demo-body > section > .intro > .container > form > .demo-phone-field > .demo-phone-control > .demo-country-select > .demo-country-menu > .demo-country-search-container {
    width: 100%;
    height: auto;
    padding: 13px 15px 13px 13px;
    background-color: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 9px;
    box-sizing: border-box;
}

.request-demo-body > section > .intro > .container > form > .demo-phone-field > .demo-phone-control > .demo-country-select > .demo-country-menu > .demo-country-search-container:focus-within {
    border-color: var(--secondary-color);
    background-color: rgba(104, 71, 199, 0.09);
}

.request-demo-body > section > .intro > .container > form > .demo-phone-field > .demo-phone-control > .demo-country-select > .demo-country-menu > .demo-country-search-container:focus {
    border-color: var(--secondary-color);
    background-color: rgba(104, 71, 199, 0.09);
}

.request-demo-body > section > .intro > .container > form > .demo-phone-field > .demo-phone-control > .demo-country-select > .demo-country-menu > .demo-country-search-container > svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary-color);
}

.request-demo-body > section > .intro > .container > form > .demo-phone-field > .demo-phone-control > .demo-country-select > .demo-country-menu > .demo-country-search-container > .demo-country-search {
    min-width: 0;
    height: 100%;
    flex: 1;
    color: var(--primary-color);
    background-color: transparent;
    border: none;
    outline: none;
    font-family: inherit;
}

.request-demo-body > section > .intro > .container > form > .demo-phone-field > .demo-phone-control > .demo-country-select > .demo-country-menu > .demo-country-search-container > .demo-country-search::placeholder {
    color: var(--primary-color);
    opacity: .7;
}

.request-demo-body > section > .intro > .container > form > .demo-phone-field > .demo-phone-control > .demo-country-select > .demo-country-menu > .demo-country-options {
    max-height: 260px;
    margin-top: 8px;
    padding-right: 3px;
    overflow-y: auto;
}

.request-demo-body > section > .intro > .container > form > .demo-phone-field > .demo-phone-control > .demo-country-select > .demo-country-menu > .demo-country-options::-webkit-scrollbar {
    width: 5px;
}

.request-demo-body > section > .intro > .container > form > .demo-phone-field > .demo-phone-control > .demo-country-select > .demo-country-menu > .demo-country-options::-webkit-scrollbar-thumb {
    background-color: rgba(104, 71, 199, 0.5);
    border-radius: 20px;
}

.request-demo-body > section > .intro > .container > form > .demo-phone-field > .demo-phone-control > .demo-country-select > .demo-country-menu > .demo-country-options > .demo-country-option {
    width: 100%;
    padding: 11px 10px;
    color: var(--trinary-color);
    background-color: transparent;
    border: none;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 27px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: var(--transition);
}

.request-demo-body > section > .intro > .container > form > .demo-phone-field > .demo-phone-control > .demo-country-select > .demo-country-menu > .demo-country-options > .demo-country-option:hover,
.request-demo-body > section > .intro > .container > form > .demo-phone-field > .demo-phone-control > .demo-country-select > .demo-country-menu > .demo-country-options > .demo-country-option.selected {
    background-color: rgba(104, 71, 199, 0.15);
}

.request-demo-body > section > .intro > .container > form > .demo-phone-field > .demo-phone-control > .demo-country-select > .demo-country-menu > .demo-country-options > .demo-country-option > .demo-country-option-flag {
    font-size: 18px;
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.request-demo-body > section > .intro > .container > form > .demo-phone-field > .demo-phone-control > .demo-country-select > .demo-country-menu > .demo-country-options > .demo-country-option > .demo-country-option-name {
    overflow: hidden;
    color: var(--primary-color);
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: var(--tiny-font-size);
}

.request-demo-body > section > .intro > .container > form > .demo-phone-field > .demo-phone-control > .demo-country-select > .demo-country-menu > .demo-country-options > .demo-country-option > .demo-country-option-code {
    color: var(--primary-color);
    font-size: var(--tiny-font-size);
}

.request-demo-body > section > .intro > .container > form > .demo-phone-field > .demo-phone-control > .demo-country-select > .demo-country-menu > .demo-country-options > .demo-country-no-results {
    padding: 20px;
    color: var(--primary-color);
    text-align: center;
}

.request-demo-body > section > .intro > .container > form > .demo-phone-field > .demo-phone-error {
    color: #ff8080;
}

.request-demo-body > section > .intro > .container > form > .opt-grp > .demo-service-select {
    width: 100%;
    position: relative;
    z-index: 50;
}

.request-demo-body > section > .intro > .container > form > .opt-grp > .demo-service-select > .demo-service-trigger {
    width: 100%;
    height: auto;
    padding: 20px;
    color: var(--trinary-color);
    background-color: rgba(255, 255, 255, 0.018);
    border: 1px solid rgba(255, 255, 255, 0.09);
    outline: none;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: var(--transition);
    box-sizing: border-box;
}

.request-demo-body > section > .intro > .container > form > .opt-grp > .demo-service-select > .demo-service-trigger:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.request-demo-body > section > .intro > .container > form > .opt-grp > .demo-service-select.is-open > .demo-service-trigger,
.request-demo-body > section > .intro > .container > form > .opt-grp > .demo-service-select > .demo-service-trigger:focus-visible {
    border-color: rgba(104, 71, 199, 0.75);
    box-shadow: 0 0 0 3px rgba(104, 71, 199, 0.1);
}

.request-demo-body.ar > section > .intro > .container > form > .opt-grp > .demo-service-select > .demo-service-trigger {
    direction: ltr;
}

.request-demo-body > section > .intro > .container > form > .opt-grp > .demo-service-select > .demo-service-trigger > .demo-service-value {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.request-demo-body > section > .intro > .container > form > .opt-grp > .demo-service-select > .demo-service-trigger > .demo-service-value > .demo-service-value-main {
    color: var(--trinary-color);
}

.request-demo-body > section > .intro > .container > form > .opt-grp > .demo-service-select > .demo-service-trigger > .demo-service-value > small {
    color: rgba(243, 240, 250, 0.37);
}

.request-demo-body > section > .intro > .container > form > .opt-grp > .demo-service-select > .demo-service-trigger > svg {
    min-width: 11px;
    width: 11px;
    height: 8px;
    color: rgba(243, 240, 250, 0.45);
    transition: var(--transition);
}

.request-demo-body > section > .intro > .container > form > .opt-grp > .demo-service-select.is-open > .demo-service-trigger > svg {
    transform: rotate(180deg);
}

.request-demo-body > section > .intro > .container > form > .opt-grp > .demo-service-select > .demo-service-menu {
    width: 100%;
    padding: 20px;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 100;
    background-color: var(--trinary-color);
    border: 1px solid rgba(5, 5, 5, 0.11);
    border-radius: 16px;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.45),
        0 0 35px rgba(104, 71, 199, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-sizing: border-box;
}

.request-demo-body > section > .intro > .container > form > .opt-grp > .demo-service-select > .demo-service-menu[hidden] {
    display: none !important;
}

.request-demo-body > section > .intro > .container > form > .opt-grp > .demo-service-select > .demo-service-menu > .demo-service-option {
    width: 100%;
    padding: 13px 12px;
    color: var(--trinary-color);
    background-color: transparent;
    border: none;
    border-radius: 11px;
    display: flex;
    align-items: center;
    gap: 13px;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: var(--transition);
}

.request-demo-body > section > .intro > .container > form > .opt-grp > .demo-service-select > .demo-service-menu > .demo-service-option:hover,
.request-demo-body > section > .intro > .container > form > .opt-grp > .demo-service-select > .demo-service-menu > .demo-service-option.selected {
    background-color: rgba(104, 71, 199, 0.14);
}

.request-demo-body.ar > section > .intro > .container > form > .opt-grp > .demo-service-select > .demo-service-menu > .demo-service-option {
    direction: ltr;
}

.request-demo-body > section > .intro > .container > form > .opt-grp > .demo-service-select > .demo-service-menu > .demo-service-option > .option-mark {
    min-width: 16px;
    width: 16px;
    height: 16px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.request-demo-body > section > .intro > .container > form > .opt-grp > .demo-service-select > .demo-service-menu > .demo-service-option.selected > .option-mark {
    border: 5px solid var(--secondary-color);
}

.request-demo-body > section > .intro > .container > form > .opt-grp > .demo-service-select > .demo-service-menu > .demo-service-option > span:last-child {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.request-demo-body > section > .intro > .container > form > .opt-grp > .demo-service-select > .demo-service-menu > .demo-service-option > span:last-child > strong {
    color: var(--primary-color);
}

.request-demo-body > section > .intro > .container > form > .opt-grp > .demo-service-select > .demo-service-menu > .demo-service-option > span:last-child > small {
    color: var(--primary-color);
}

.request-demo-body > section > .intro > .container > form > .opt-grp > .contact-options {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 100px;
}

@media (max-width:1443px) {
    .request-demo-body > section > .intro > .container > form > .opt-grp > .contact-options {
        gap: 50px;
    }
}

@media (max-width:700px) {
    .request-demo-body > section > .intro > .container > form > .opt-grp > .contact-options {
        gap: 0px;
    }
}

.request-demo-body > section > .intro > .container > form > .opt-grp > .contact-options > .contact-option {
    min-width: 0;
    position: relative;
}

.request-demo-body > section > .intro > .container > form > .opt-grp > .contact-options > .contact-option > input {
    width: 1px;
    height: 1px;
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.request-demo-body > section > .intro > .container > form > .opt-grp > .contact-options > .contact-option > label {
    width: 100%;
    min-height: 50px;
    padding: 20px;
    color: rgba(243, 240, 250, 0.58);
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
    box-sizing: border-box;
}

.request-demo-body > section > .intro > .container > form > .opt-grp > .contact-options > .contact-option > label:hover {
    border-color: rgba(255, 255, 255, 0.16);
}

.request-demo-body > section > .intro > .container > form > .opt-grp > .contact-options > .contact-option > label > .radio-mark {
    min-width: 16px;
    width: 16px;
    height: 16px;
    border: 1px solid rgba(243, 240, 250, 0.28);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.request-demo-body > section > .intro > .container > form > .opt-grp > .contact-options > .contact-option > input:checked + label > .radio-mark {
    border: 5px solid var(--secondary-color);
}

.request-demo-body > section > .intro > .container > form > .privacy-field {
    position: relative;
}

.request-demo-body > section > .intro > .container > form > .privacy-field > input {
    width: 1px;
    height: 1px;
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.request-demo-body > section > .intro > .container > form > .privacy-field > label {
    width: fit-content;
    color: rgba(243, 240, 250, 0.45);
    display: flex;
    align-items: flex-start;
    gap: 11px;
    cursor: pointer;
    font-size: 10px;
    line-height: 1.55;
}

.request-demo-body > section > .intro > .container > form > .privacy-field > label > .checkbox-mark {
    min-width: 18px;
    width: 18px;
    height: 18px;
    margin-top: 1px;
    color: transparent;
    background-color: rgba(255, 255, 255, 0.018);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    box-sizing: border-box;
}

.request-demo-body > section > .intro > .container > form > .privacy-field > label > .checkbox-mark > svg {
    width: 11px;
    height: 9px;
}

.request-demo-body > section > .intro > .container > form > .privacy-field > input:checked + label > .checkbox-mark {
    color: var(--trinary-color);
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.request-demo-body > section > .intro > .container > form > .privacy-field > input:focus-visible + label > .checkbox-mark {
    box-shadow: 0 0 0 3px rgba(104, 71, 199, 0.18);
}

.request-demo-body > section > .intro > .container > form > .privacy-field > label > span:last-child > a {
    color: #a88eff;
    text-decoration: none;
}

.request-demo-body > section > .intro > .container > form > .privacy-field > label > span:last-child > a:hover {
    text-decoration: underline;
}

.request-demo-body > section > .intro > .container > form > .form-submit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
}

.request-demo-body > section > .intro > .container > form > .form-submit > button {
    width: 100%;
    min-height: 57px;
    padding: 0 20px;
    color: var(--trinary-color);
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}

.request-demo-body.ar > section > .intro > .container > form > .form-submit > button {
    direction: ltr;
}

.request-demo-body > section > .intro > .container > form > .form-submit > button:hover {
    background-color: #7857d7;
    border-color: #7857d7;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(104, 71, 199, 0.25);
}

.request-demo-body > section > .intro > .container > form > .form-submit > button > svg {
    width: 18px;
    height: 18px;
    transition: var(--transition);
}

.request-demo-body > section > .intro > .container > form > .form-submit > button:hover > svg {
    transform: translateX(4px);
}

.request-demo-body > section > .intro > .container > form > .form-submit > p {
    color: rgba(243, 240, 250, 0.35);
    line-height: 25px;
    text-align: center;
    margin-top: 30px;
}

.request-demo-body > section > .intro > .container > form > .form-submit > p > strong {
    color: rgba(243, 240, 250, 0.65);
}

@media screen and (max-width: 1050px) {

    .request-demo-body > section > .intro > .container {
        flex-direction: column;
    }

    .request-demo-body > section > .intro > .container > .dets {
        width: 100%;
        min-height: auto;
        border-radius: 35px 35px 0 0;
    }

    .request-demo-body > section > .intro > .container > .dets > .trust-message {
        margin-top: 0;
    }

    .request-demo-body > section > .intro > .container > form {
        width: 100%;
        border-radius: 0 0 35px 35px;
    }

}

@media screen and (max-width: 700px) {

    .request-demo-body > section > .intro > .container > .dets {
        padding: 35px 27px;
        border-radius: 26px 26px 0 0;
    }

    .request-demo-body > section > .intro > .container > .dets > h1 {
        font-size: clamp(36px, 10vw, 49px);
    }

    .request-demo-body > section > .intro > .container > form {
        padding: 35px 27px;
        border-radius: 0 0 26px 26px;
        grid-template-columns: 1fr;
    }

    .request-demo-body > section > .intro > .container > form > .opt-grp {
        grid-column: 1 / -1;
    }

    .request-demo-body > section > .intro > .container > form > .opt-grp > .contact-options {
        grid-template-columns: 1fr;
    }

}

@media screen and (max-width: 480px) {

    .request-demo-body > section > .intro {
        padding-right: 14px;
        padding-left: 14px;
    }

    .request-demo-body > section > .intro > .container > .dets {
        padding: 31px 21px;
    }

    .request-demo-body > section > .intro > .container > .dets > h1 {
        font-size: 37px;
    }

    .request-demo-body > section > .intro > .container > .dets > ul > li {
        gap: 13px;
    }

    .request-demo-body > section > .intro > .container > form {
        padding: 31px 21px;
    }

    .request-demo-body > section > .intro > .container > form > .demo-phone-field > .demo-phone-control > .demo-country-select > .demo-country-trigger {
        padding: 0 9px;
        gap: 5px;
    }

    .request-demo-body > section > .intro > .container > form > .demo-phone-field > .demo-phone-control > .demo-country-select > .demo-country-trigger > .demo-selected-country-code {
        font-size: 11px;
    }

    .request-demo-body > section > .intro > .container > form > .demo-phone-field > .demo-phone-control > .demo-country-select > .demo-country-menu {
        width: min(310px, calc(100vw - 70px));
    }

    .request-demo-body > section > .intro > .container > form > .opt-grp > .demo-service-select > .demo-service-menu > .demo-service-option {
        padding: 12px 9px;
    }

}

.request-demo-body #request-demo-form .request-demo-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    pointer-events: none !important;
}

.request-demo-body #request-demo-form .request-demo-submit-button {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        opacity 0.25s ease,
        transform 0.25s ease;
}

.request-demo-body #request-demo-form .request-demo-submit-label,
.request-demo-body #request-demo-form .request-demo-submit-icon {
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.25s ease;
}

.request-demo-body #request-demo-form .request-demo-submit-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 22px;
    display: block;
    border: 2px solid rgba(255, 255, 255, 0.28);
    border-top-color: #ffffff;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.75);
}

.request-demo-body #request-demo-form .request-demo-submit-loading-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.request-demo-body #request-demo-form .request-demo-submit-button.is-loading {
    cursor: wait;
    pointer-events: none;
}

.request-demo-body #request-demo-form .request-demo-submit-button.is-loading .request-demo-submit-label {
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
}

.request-demo-body #request-demo-form .request-demo-submit-button.is-loading .request-demo-submit-icon {
    opacity: 0;
    visibility: hidden;
    transform: translateX(5px) scale(0.8);
}

.request-demo-body #request-demo-form .request-demo-submit-button.is-loading .request-demo-submit-spinner {
    opacity: 1;
    visibility: visible;
    animation: request-demo-submit-spin 0.75s linear infinite;
}

.request-demo-body #request-demo-form .request-demo-submit-button:disabled {
    opacity: 1;
}

@keyframes request-demo-submit-spin {

    from {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg) scale(1);
    }

}

@media (prefers-reduced-motion: reduce) {

    .request-demo-body #request-demo-form .request-demo-submit-button,
    .request-demo-body #request-demo-form .request-demo-submit-label,
    .request-demo-body #request-demo-form .request-demo-submit-icon {
        transition: none;
    }

    .request-demo-body #request-demo-form .request-demo-submit-button.is-loading .request-demo-submit-spinner {
        animation-duration: 1.4s;
    }

}





/* ===================================== */
/* ================ SERVICE CONTACT PAGE */
/* ===================================== */





.service-contact-body > section {
    width: 100%;
    height: auto;
}



/* ============================================= */
/* ================ SERVICE CONTACT PAGE - INTRO */
/* ============================================= */



.service-contact-body > section > .intro {
    width: 100%;
    height: auto;
    padding: 5% 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 100px;
    margin-bottom: 100px;
    position: relative;
}

.service-contact-body.ar > section > .intro {
    direction: rtl;
}

.service-contact-body > section > .intro > h1 {
    font-size: var(--big-font-size);
}

.service-contact-body > section > .intro > p {
    width: 40%;
    text-align: center;
    opacity: .9;
}

@media (max-width:1443px) {
    .service-contact-body > section > .intro > p {
        width: 50%;
    }
}

@media (max-width:1025px) {
    .service-contact-body > section > .intro > p {
        width: 60%;
    }
}

@media (max-width:768px) {
    .service-contact-body > section > .intro > p {
        width: 70%;
    }
}

@media (max-width:500px) {
    .service-contact-body > section > .intro > p {
        width: 100%;
    }
}

.service-contact-body > section > .intro > form {
    width: 50%;
    height: auto;
    padding: 50px 30px;
    background: linear-gradient(145deg, #0e0e0ea1, #0e0e0e59);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 36px;
}

@media (max-width:1443px) {
    .service-contact-body > section > .intro > form {
        width: 60%;
    }
}

@media (max-width:1025px) {
    .service-contact-body > section > .intro > form {
        width: 70%;
    }
}

@media (max-width:768px) {
    .service-contact-body > section > .intro > form {
        width: 80%;
    }
}

@media (max-width:500px) {
    .service-contact-body > section > .intro > form {
        width: 100%;
    }
}

.service-contact-body > section > .intro > form > .opt-grp {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
}

.service-contact-body > section > .intro > form > .opt-grp > label {
    opacity: .7;
}

.service-contact-body > section > .intro > form > .opt-grp > label > span {
    color: red;
}

.service-contact-body > section > .intro > form > .opt-grp > input,
.service-contact-body > section > .intro > form > .opt-grp > textarea {
    width: 100%;
    height: auto;
    padding: 20px;
    color: var(--trinary-color);
    background-color: rgba(255, 255, 255, 0.018);
    border: 1px solid rgba(255, 255, 255, 0.09);
    outline: none;
    border-radius: 16px;
    font-family: inherit;
    transition: var(--transition);
    box-sizing: border-box;
}

.service-contact-body > section > .intro > form > .opt-grp > textarea {
    min-height: 125px;
    padding: 20px;
    resize: vertical;
    line-height: 20px;
}

.service-contact-body > section > .intro > form > .opt-grp > input:hover,
.service-contact-body > section > .intro > form > .opt-grp > textarea:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.service-contact-body > section > .intro > form > .opt-grp > input:focus,
.service-contact-body > section > .intro > form > .opt-grp > textarea:focus {
    border-color: rgba(104, 71, 199, 0.75);
    box-shadow: 0 0 0 3px rgba(104, 71, 199, 0.1);
}

.service-contact-body > section > .intro > form > button {
    width: 100%;
    min-height: 57px;
    padding: 0 20px;
    color: var(--trinary-color);
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}

.service-contact-body.ar > section > .intro > form > button {
    direction: ltr;
}

.service-contact-body > section > .intro > form > button > svg {
    width: 18px;
    height: 18px;
    transition: var(--transition);
    transform: translateX(4px);
}

.service-phone-field {
    position: relative;
}

.service-phone-control {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
    align-items: stretch;
    gap: 10px;
}


/* COUNTRY SELECTOR */

.service-country-select {
    position: relative;
    min-width: 0;
}

.service-country-trigger {
    width: 100%;
    height: 62px;
    padding: 0 17px;
    color: var(--trinary-color);
    background: rgba(255, 255, 255, 0.018);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

.service-country-trigger:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.service-country-trigger:focus,
.service-country-trigger:focus-visible,
.service-country-trigger[aria-expanded="true"] {
    outline: none;
    border-color: rgba(104, 71, 199, 0.85);
    box-shadow: 0 0 0 3px rgba(104, 71, 199, 0.12);
}

.service-selected-country-flag {
    color: var(--trinary-color);
    transform: translateY(-3px);
}

.service-selected-country-code {
    color: var(--trinary-color);
    font-size: 17px;
    font-weight: 600;
    white-space: nowrap;
}

.service-country-trigger > svg {
    width: 11px;
    height: 8px;
    margin-inline-start: auto;
    flex: 0 0 auto;
    transition: transform 0.25s ease;
}

.service-country-trigger[aria-expanded="true"] > svg {
    transform: rotate(180deg);
}


/* PHONE NUMBER INPUT */

.service-phone-number-input {
    width: 100%;
    min-width: 0;
    height: 62px;
    padding: 0 20px;
    color: var(--trinary-color);
    background: rgba(255, 255, 255, 0.018);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 16px;
    outline: none;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
}

.service-phone-number-input:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.service-phone-number-input:focus {
    border-color: rgba(104, 71, 199, 0.85);
    box-shadow: 0 0 0 3px rgba(104, 71, 199, 0.1);
}

.service-phone-number-input::placeholder {
    color: rgba(243, 240, 250, 0.28);
}


/* COUNTRY DROPDOWN */

.service-country-menu {
    position: absolute;
    z-index: 100;
    top: calc(100% + 11px);
    left: 0;
    width: 345px;
    max-width: calc(100vw - 40px);
    padding: 10px;
    color: #242229;
    background: #f3f0fa;
    border: 1px solid rgba(104, 71, 199, 0.15);
    border-radius: 16px;
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.36),
        0 4px 14px rgba(0, 0, 0, 0.18);
    box-sizing: border-box;
}

.service-country-menu[hidden] {
    display: none;
}

.service-contact-body.ar .service-country-menu {
    right: 0;
    left: auto;
}


/* SEARCH */

.service-country-search-container {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1c1a20;
    background: #eee9fa;
    border: 1px solid #7656dc;
    border-radius: 15px;
    box-sizing: border-box;
}

.service-country-search-container:focus-within {
    border-color: #6847c7;
    box-shadow: 0 0 0 2px rgba(104, 71, 199, 0.12);
}

.service-country-search-container > svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    stroke: currentColor;
}

.service-country-search {
    width: 100%;
    min-width: 0;
    padding: 0;
    color: #242229;
    background: transparent;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 15px;
}

.service-country-search::placeholder {
    color: #625e69;
    opacity: 1;
}


/* COUNTRY OPTIONS */

.service-country-options {
    width: 100%;
    max-height: 265px;
    margin-top: 8px;
    padding-inline-end: 3px;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #9c88de transparent;
}

.service-country-options::-webkit-scrollbar {
    width: 5px;
}

.service-country-options::-webkit-scrollbar-track {
    background: transparent;
}

.service-country-options::-webkit-scrollbar-thumb {
    background: #9c88de;
    border-radius: 10px;
}

.service-country-option {
    width: 100%;
    min-height: 46px;
    padding: 9px 10px;
    color: #29262e;
    background: transparent;
    border: none;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    text-align: start;
    cursor: pointer;
    box-sizing: border-box;
    font-family: inherit;
    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}

.service-country-option:hover,
.service-country-option.active {
    color: #5638af;
    background: rgba(104, 71, 199, 0.1);
}

.service-country-option > span:first-child {
    color: #6847c7;
}

.service-country-option-name {
    overflow: hidden;
    color: inherit;
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.service-country-option-code {
    color: #343039;
    font-size: 12px;
    white-space: nowrap;
}

.service-country-empty {
    padding: 24px 12px;
    color: #6d6874;
    text-align: center;
    font-size: 13px;
}

.service-phone-error {
    min-height: 14px;
    color: #ff7373;
    font-size: 12px;
}


/* MOBILE */

@media (max-width: 600px) {
    .service-phone-control {
        grid-template-columns: 112px minmax(0, 1fr);
        gap: 8px;
    }

    .service-country-trigger {
        height: 58px;
        padding: 0 12px;
    }

    .service-selected-country-code {
        font-size: 14px;
    }

    .service-phone-number-input {
        height: 58px;
        padding: 0 15px;
        font-size: 14px;
    }

    .service-country-menu {
        width: min(345px, calc(100vw - 30px));
    }
}

.service-contact-body #service-contact-form .service-contact-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    pointer-events: none !important;
}

.service-contact-body #service-contact-form .service-contact-submit-button {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: var(--transition);
}

.service-contact-body #service-contact-form .service-contact-submit-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px var(--secondary-color-shadow);
}

.service-contact-body #service-contact-form .service-contact-submit-label,
.service-contact-body #service-contact-form .service-contact-submit-icon {
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.25s ease;
}

.service-contact-body #service-contact-form .service-contact-submit-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 22px;
    display: block;
    border: 2px solid rgba(255, 255, 255, 0.28);
    border-top-color: #ffffff;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.75);
}

.service-contact-body #service-contact-form .service-contact-submit-loading-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.service-contact-body #service-contact-form .service-contact-submit-button.is-loading {
    cursor: wait;
    pointer-events: none;
}

.service-contact-body #service-contact-form .service-contact-submit-button.is-loading .service-contact-submit-label {
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
}

.service-contact-body #service-contact-form .service-contact-submit-button.is-loading .service-contact-submit-icon {
    opacity: 0;
    visibility: hidden;
    transform: translateX(5px) scale(0.8);
}

.service-contact-body #service-contact-form .service-contact-submit-button.is-loading .service-contact-submit-spinner {
    opacity: 1;
    visibility: visible;
    animation: service-contact-submit-spin 0.75s linear infinite;
}

.service-contact-body #service-contact-form .service-contact-submit-button:disabled {
    opacity: 1;
}

@keyframes service-contact-submit-spin {

    from {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg) scale(1);
    }

}

@media (prefers-reduced-motion: reduce) {

    .service-contact-body #service-contact-form .service-contact-submit-button,
    .service-contact-body #service-contact-form .service-contact-submit-label,
    .service-contact-body #service-contact-form .service-contact-submit-icon {
        transition: none;
    }

    .service-contact-body #service-contact-form .service-contact-submit-button.is-loading .service-contact-submit-spinner {
        animation-duration: 1.4s;
    }

}





/* ===================================== */
/* ================ FORMS HANDLERS PAGES */
/* ===================================== */





.form-handle-msg-body {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 18% 15%, rgba(104, 71, 199, 0.18), transparent 34%),
        radial-gradient(circle at 85% 80%, rgba(104, 71, 199, 0.10), transparent 30%),
        #081416;
    color: #F3F0FA;
    font-family: "Comfortaa", Arial, sans-serif;
}

.form-handle-msg-body .contact-result {
    position: relative;
    width: min(100%, 610px);
    padding: 58px 48px 46px;
    overflow: hidden;
    border: 1px solid rgba(243, 240, 250, 0.10);
    border-radius: 28px;
    background: rgba(13, 29, 32, 0.92);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
    text-align: center;
    backdrop-filter: blur(20px);
}

.form-handle-msg-body .contact-result::before {
    content: "";
    position: absolute;
    top: 0;
    left: 18%;
    width: 64%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #6847C7, transparent);
}

.form-handle-msg-body .contact-result-brand {
    display: block;
    margin-bottom: 32px;
    color: rgba(243, 240, 250, 0.54);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.form-handle-msg-body .contact-result-icon {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    margin: 0 auto 26px;
    border-radius: 22px;
    transform: rotate(8deg);
}

.form-handle-msg-body .contact-result-icon.success {
    border: 1px solid rgba(116, 232, 183, 0.25);
    background: rgba(116, 232, 183, 0.09);
    color: #74E8B7;
}

.form-handle-msg-body .contact-result-icon.error {
    border: 1px solid rgba(255, 166, 166, 0.25);
    background: rgba(255, 166, 166, 0.08);
    color: #FFA6A6;
}

.form-handle-msg-body .contact-result-icon svg {
    width: 34px;
    height: 34px;
    transform: rotate(-8deg);
}

.form-handle-msg-body .contact-result-label {
    display: block;
    margin-bottom: 12px;
    color: #9D85E4;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.form-handle-msg-body .contact-result h1 {
    max-width: 460px;
    margin: 0 auto 18px;
    color: #F3F0FA;
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 500;
    line-height: 1.2;
}

.form-handle-msg-body .contact-result p {
    max-width: 475px;
    margin: 0 auto;
    color: rgba(243, 240, 250, 0.66);
    font-size: 15px;
    line-height: 1.9;
}

.form-handle-msg-body .contact-result-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 34px;
}

.form-handle-msg-body .contact-result-actions a {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 21px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.form-handle-msg-body .contact-result-actions a:hover {
    transform: translateY(-2px);
}

.form-handle-msg-body .contact-result-primary {
    border: 1px solid #6847C7;
    background: #6847C7;
    color: #ffffff;
}

.form-handle-msg-body .contact-result-secondary {
    border: 1px solid rgba(243, 240, 250, 0.13);
    background: transparent;
    color: #F3F0FA;
}

@media (max-width: 620px) {

    .form-handle-msg-body .contact-result {
        padding: 44px 22px 30px;
        border-radius: 22px;
    }

    .form-handle-msg-body .contact-result-actions {
        flex-direction: column;
    }

    .form-handle-msg-body .contact-result-actions a {
        width: 100%;
    }

}




























