/*#region global*/
:root {
    --theme-color: #BE328D;
    --theme-color-hover: #d957ab;
}

::-webkit-scrollbar {
    display: none;
}
/*#endregion global*/

/*#region layout*/
.navbar-mobile ul {
    border-radius:0.6rem;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
    color: #BE328D;
}
.navbar .language {
    padding-left: 3rem;
    display: flex;
}
    .navbar .language a {
        color: #7b909a;
    }
        .navbar .language a:hover {
            cursor: pointer;
            font-weight: 600;
            color: black !important;
        }
    .navbar .language .selected {
        font-weight: 600;
        color: black;
    }

#hero .btn-get-started {
    background: var(--theme-color);
}
    #hero .btn-get-started:hover {
        background: var(--theme-color-hover);
    }

.membership-button {
    position: absolute;
    top: -1px;
    right: -2px;
    bottom: -1px;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #009cea;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
}
    .membership-button:hover {
        background: #007ab7;
    }

.contact-button {
    background: var(--theme-color);
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px !important;
}
    .contact-button:hover {
        background: var(--theme-color-hover);
    }

footer .footer-info img {
    max-height: 40px;
}

.contact .info i {
    color: var(--theme-color);
}
.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
    background: var(--theme-color);
    color: #fff;
}

.cta .cta-btn {
    background: var(--theme-color);
}
    .cta .cta-btn:hover {
        background: var(--theme-color-hover);
    }

.features .nav-link.active {
    border-left: 4px solid var(--theme-color);
}
    .features .nav-link.active h4 {
        color: var(--theme-color);
    }

@media only screen and (max-width: 700px) {
    .navbar .language {
        padding-left: 0rem;
        width: 100%;
        justify-content: center;
        margin-top: 2rem;
    }
}
/*#endregion layout*/

/*#region portfolio*/
.portfolio-item-container {
    height: 300px;
    cursor: pointer;
    border-radius: 4px;
    background: radial-gradient(circle, #ffffff 0%, #eaebf0 100%);
}
    .portfolio-item-container:hover {
        box-shadow: 0px 0px 10px 0 #00000038;
    }

.portfolio-item-info {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column
}
    .portfolio-item-info img {
        height: 35px;
        margin-bottom:2rem;
    }

.portfolio-wrap:before{
    display:none;
}

.portfolio-details-modal {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #ffffff;
    z-index: 999;
    align-items: center;
    justify-content: center;
    overflow-y: scroll;
}

.portfolio-details-close {
    z-index: 99;
    top: 0;
    right: 0;
    position: fixed;
    cursor: pointer;
    color: var(--theme-color);
    margin-right: 20px;
    margin-top: 20px;
}
.portfolio-details-close:hover{
    color:var(--theme-color-hover);
}

.portfolio-description-item {
    font-size: 14px;
    font-weight: 100;
}
    .portfolio-description-item i {
        font-size: 12px;
        color: var(--theme-color);
        opacity:0.8;
    }

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    border: 1px solid var(--theme-color);
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--theme-color);
}
.portfolio-details .portfolio-info {
    padding-bottom: 10px;
}

.swiper-slide {
    background-color: #F1F2F4;
}
/*#endregion portfolio*/

/*#region processing*/
.modal-processing {
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(163,163,163,0.8) 100%);
    z-index: 99999 !important;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

    .modal-processing .showbox {
        align-items: center;
        display: flex;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 5%;
    }

    .modal-processing .loader {
        position: relative;
        margin: 0px auto;
        width: 15rem;
    }

        .modal-processing .loader:before {
            content: '';
            display: block;
            padding-top: 100%;
        }

    .modal-processing .circular {
        -webkit-animation: rotate 2s linear infinite;
        animation: rotate 2s linear infinite;
        height: 100%;
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        width: 100%;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
    }

    .modal-processing .path {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
        -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
        animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
        stroke-linecap: round;
    }

@-webkit-keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124;
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124;
    }
}

@-webkit-keyframes color {
    100%, 0% {
        stroke: var(--theme-color);
    }
}

@keyframes color {
    100%, 0% {
        stroke: var(--theme-color);
    }
}
/*#endregion processing*/

/*#region services*/
#services svg {
    width: 40px;
    margin-bottom: 1rem;
}

@media only screen and (min-width: 700px) {
    .services .row {
        margin-top: 1.5rem;
    }
}
/*#endregion services*/

/*#region technologies*/
.technologies .technology-item {
    border: 1px solid #eceff0;
}
.technologies .technology-logo {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #fff;
    height: 120px;
    padding: 40px;
    text-align: center;
}
    .technologies .technology-logo img {
        height: 40px;
    }
    .technologies .technology-logo p {
        text-align: center;
        margin-top: 10px;
        font-size: 14px;
    }

.technologies #technology-filters {
    padding: 0;
    margin: 0 auto 25px auto;
    list-style: none;
    text-align: center;
}

    .technologies #technology-filters li {
        cursor: pointer;
        display: inline-block;
        padding: 10px;
        font-size: 15px;
        font-weight: 400;
        line-height: 1;
        text-transform: uppercase;
        color: #444444;
        margin-bottom: 5px;
        transition: all 0.3s ease-in-out;
        font-family: "Poppins", sans-serif;
    }

        .technologies #technology-filters li:hover, .technologies #technology-filters li.filter-active {
            color: #009cea;
        }

        .technologies #technology-filters li:last-child {
            margin-right: 0;
        }
/*#endregion technologies*/

/*#region clients*/
.clients .row {
    --bs-gutter-x: auto;
}
.clients .client-logo img {
    max-height: 70px;
}
/*#endregion clients*/

#genomAI {
    position: fixed;
    right: 3rem;
    bottom: 1rem;
    width: 400px;
    height: 800px;
    z-index: 999999;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 1rem;
}