:root {
    --h2-color: #095af0;
    --faq-color: #095af0;
    --team-color: #384bff;
    --button-color: #1461e9;
    --scroll-color: #4b85f1;
    --main-bg-color: #4b85f1;
    --button-hover-color: #0047c4;
    --article-hover-color: #0168a8;
    --article-resalt-color: #017bc5;
    --team-hover-color: rgba(34, 42, 145, 1);
    --main-bg-gradient: linear-gradient(90deg, #435fea, #259cf0 123.82%);
    --footer-bg-color: linear-gradient(93deg, rgb(4 25 52) 0%, rgb(12 23 105) 35%, rgb(10 56 105) 100%);
    --application-types-hover: linear-gradient(306deg, rgba(245,126,28,1) 0%, rgba(236,154,39,0.9640231092436975) 51%, rgba(255,175,0,1) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul {
    list-style: none;
}

body::-webkit-scrollbar {
    width: 10px;
    background-color: white;
}

body::-webkit-scrollbar-track {
    width: 6px;
    border-radius: 0px;
    border:1px solid var(--scroll-color);
    background-color: #06233f;
}

body::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: var(--scroll-color);
}

h2 .bi-infinity {
    top: 4px;
    margin: 0 5px;
    font-size: 25px;
    position: relative;
}

.global-whatsapp-button {
    width: 82px;
    right: 50px;
    height: 82px;
    bottom: 90px;
    z-index: 299;
    display: flex;
    color: white;
    position: fixed;
    font-size: 90px;
    cursor: pointer;
    flex-direction: row;
    align-items: center;
    border-radius: 100%;
    justify-content: center;
    transition: all ease 0.5s;
    background-color: #32c632;
}
.global-whatsapp-button:hover {
    transform: scale(1.2);
    background-color: #16a116;
}

.message-container {
	bottom: -155px;
	color: #fff;
	width: 300px;
    z-index: 300;
	right: -155px;
	position: fixed;
    font-size: 18px;
	padding: 20px 15px;
	border-radius: 4px;
	transition: all ease 1s;
}

.message-container .message-text {
    color: white;
    font-weight: bold;
}

.message-container i {
    top: 2px;
    left: 125px;
    font-size: 50px;
    position: relative;
    transition: all ease 1s;
}

.show-message {
    right: 15px;
	bottom: 30px;
}

.message-info {
	background-color: #184fe3;
}

.message-success {
	background-color: #28953c;
}

.message-error {
	background-color: #e31818;
}

.message-info i {
    color: #184fe3;
}

.message-success i {
    color: #28953c;
}

.message-error i {
    color: #e31818;
}

.disabled {
    color: #000000 !important;
    background-color: #d8e0ec !important;
}

.disabled:hover {
    color: #000000 !important;
    background-color: #d8e0ec !important;
}

.container-no-data {
    width: 100%;
    display: block;
}

.nodata {
    width: 100%;
    display: flex;
    margin: 30px 0;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.nodata img {
    width: 300px;
    height: auto;
    border-radius: 100%;
}

.nodata label {
    font-size: 30px;
    margin-top: 20px;
    font-weight: bold;
}

.particles-js {
    z-index: 150;
    height: 100vh;
    min-height: 900px;
    background: #06233f;/*url("../images/banner1.jpg") no-repeat #000;*/
    background-size: cover;
    background: rgb(46,42,106);
    /*background: linear-gradient(90deg, rgba(46,42,106,1) 0%, rgba(6,18,63,0.9640231092436975) 51%, rgba(34,42,145,1) 100%);*/
    background: linear-gradient(90deg, rgb(1 10 138) 0%, rgb(0 21 108 / 96%) 51%, rgb(1 10 138) 100%);
}

.position-absolute {
    position: absolute;
}

.position-relative {
    width: 100%;
    position: relative;
}

.padding-footer {
    padding-bottom: 300px !important;
}

.transition {
    transition: all ease 1s;
}

.fade-out {
    opacity: 0;
    transform: translateY(70px);
}

li, a, p, article, h1, h2, h3, h4, h5, h6, label, input, textarea, select, button {
    font-family: "Nunito", system-ui;
    text-decoration: none;
}

textarea {
    min-height: 250px;
}

input, textarea, select {
    padding: 15px;
    font-size: 17px;
    border-radius: 10px;
    border: 1px solid lightgray;
}

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

.prevent-default {
    cursor: text;
}

.error {
    color: red;
    margin: 7px 0;
    font-size: 17px;
    min-height: 25px;
}

header {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    position: fixed;
}

.background-header {
    top: 0;
    opacity: 0;
    height: 92px;
    z-index: 100;
    width: 3000px;
    position: absolute;
    transition: all ease 0.5s;
    background: var(--main-bg-gradient);
}

.background-header.active {
    opacity: 1;
}

header .container-header {
    width: 95%;
    z-index: 110;
    display: flex;
    max-width: 1200px;
    margin: 25px auto;
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

header .logo {
    width: 200px;
    height: auto;
}

header ul .open-icon {
    left: 80px;
    top: -39px;
    border: none;
    color: white;
    font-size: 50px;
    position: absolute;
}

header ul li {
    margin: 0 15px;
    list-style: none;
    display: inline-block;
}

header ul li a {
    color: white;
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
    transition: all ease 0.7s;
}

header nav > ul > li > a i {
    top: 2px;
    margin-left: 7px;
    position: relative;
}

header ul li ul li a i {
    margin-right: 10px;
    display: inline-block;
    transition: all ease 0.5s;
}

header ul li a:hover {
    color: #ecb836;
}

header ul li ul {
    opacity: 0;
    left: -75px;
    width: 270px;
    margin-top: 0px;
    border-radius: 7px;
    position: absolute;
    background-color: white;
    transition: all ease 0.5s;
}

header ul li ul:first-child {
    max-height: 0;
    overflow: hidden;
}

header ul li ul .content-list {
    border: none;
    max-height: 0px;
    overflow: hidden;
    transition: all ease 0.5s;
}

header nav > ul > li:hover ul:first-child {
    opacity: 1;
    margin-top: 30px;
    overflow: initial;
    max-height: 1000px;
}

header nav > ul li:hover ul .content-list {
    overflow: initial;
    max-height: 1000px;
}

header ul li ul li {
    left: -15px;
    width: 100%;
    display: block;
    position: relative;
    border-bottom: 1px solid lightgray;
}

header ul li ul li a {
    width: 100%;
    overflow: hidden;
    padding: 15px 20px;
    white-space: nowrap;
    display: inline-block;
    text-overflow: ellipsis;
    color: var(--main-bg-color);
}

header ul li ul li a:hover {
    color: #ff9334;
}

header ul li ul li a:hover i {
    transform: rotate(360deg);
}

header ul li ul li ul {
    top: 0px;
    opacity: 0;
    left: 195px;
    max-width: 0;
    border-radius: 0;
    overflow: hidden;
    background: white;
    position: absolute;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

header ul li ul li:hover ul {
    opacity: 1;
    left: 260px;
    max-width: 1000px;
}

.response-header {
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    z-index: 200;
    display: none;
    position: fixed;
    padding: 20px 30px;
    flex-direction: row;
    align-items: center;
    transition: all ease 1s;
    justify-content: space-between;
    background: var(--main-bg-gradient);
}

.response-header i {
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.response-header .logo {
    width: 190px;
    height: auto;
}

.menu-responsive {
    left: 0;
    top: 86px;
    width: 100%;
    height: 100%;
    z-index: 300;
    display: none;
    position: fixed;
    visibility: hidden;
    transition: all ease 0.5s;
    background-color: rgba(0, 0, 0, .7);
}

.menu-responsive > ul {
    width: 300px;
    left: -300px;
    overflow: auto;
    position: relative;
    padding-bottom: 200px;
    height: calc(100% - 20px);
    transition: all ease 0.5s;
    background: var(--main-bg-gradient);
}

.menu-responsive > ul::-webkit-scrollbar {
    width: 10px;
    background-color: white;
}


.menu-responsive > ul::-webkit-scrollbar-track {
    width: 6px;
    border-radius: 0px;
    border:1px solid var(--main-bg-color);
    background-color: #06233f;
}


.menu-responsive > ul::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: var(--main-bg-color);
}

.menu-responsive ul li {
    cursor: pointer;
    border-bottom: 1px solid white;
}

.menu-responsive ul li a {
    display: flex;
    color: white;
    padding: 20px 20px;
    flex-direction: row;
    align-items: center;
    transition: all ease 0.5s;
    justify-content: space-between;
}

.menu-responsive ul li ul {
    overflow: hidden;
    transition: all ease 0.5s;
}

.menu-responsive ul li a:hover {
    background-color: #06233f;
}

.menu-responsive ul li a i.left {
    margin-right: 10px;
}

.menu-responsive ul li ul li a {
    padding-left: 40px;
}

.menu-responsive ul li ul li:first-child {
    border-top: 1px solid white;
}

.menu-responsive ul li ul li:last-child {
    border-bottom: 0;
}

.breadcrumb {
    height: 650px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    /*background: url(../images/breadcrumb.webp);*/
    background-size: cover;
    background-position: center;
}

.breadcrumb h1 {
    color: white;
    font-size: 60px;
    text-align: center;
    margin-bottom: 20px;
}

.breadcrumb h2 {
    color: white;
    font-size: 22px;
    text-align: center;
}

.banner {
    left: 50%;
    top: 150px;
    width: 100%;
    margin: auto;
    z-index: 100;
    display: flex;
    padding: 0 20px;
    overflow: hidden;
    max-width: 1200px;
    position: absolute;
    flex-direction: row;
    margin-left: -600px;
    justify-content: space-between;
}

.banner .content {
    margin-top: 60px;
}

.banner .content .title {
    color: white;
    font-size: 45px;
    font-weight: bold;
}

.banner .content .subtitle {
    margin: 7px 0;
    color: #ecb836;
}

.banner .content p {
    color: white;
    font-size: 20px;
}

.banner .content .start-button {
    color: white;
    margin-top: 20px;
    padding: 12px 20px;
    border-radius: 10px;
    display: inline-block;
    transition: all ease 0.7s;
    border: 1px solid #205dc8;
    background-color: #205dc8;
}

.banner .content .start-button:hover {
    border: 1px solid white;
    background-color: transparent;
}

.banner-robot {
    width: 400px;
    height: auto;
    bottom: 55px;
    display: block;
    border-radius: 6px;
    position: relative;
}

.get-in-touch {
    left: 50%;
    top: 550px;
    width: 100%;
    z-index: 110;
    display: flex;
    max-width: 1200px;
    padding: 20px 60px;
    position: absolute;
    flex-direction: row;
    margin-left: -600px;
    border-radius: 50px;
    align-items: center;
    justify-content: space-between;
    background: var(--main-bg-gradient);
}

.get-in-touch img {
    width: 200px;
    height: auto;
    position: relative;
}

.get-in-touch .center-text {
    color: white;
    font-size: 32px;
}

.get-in-touch a, .get-in-touch-button {
    color: black;
    overflow: hidden;
    font-weight: bold;
    padding: 15px 25px;
    border-radius: 7px;
    position: relative;
    display: inline-block;
    background-color: white;
    transition: all ease 0.5s;
}

.get-in-touch-button {
    font-size: 12px;
}

.get-in-touch .decorator, .get-in-touch-button .decorator {
    width: 0;
    top: -12px;
    left: -50px;
    height: 70px;
    position: absolute;
    display: inline-block;
    transform: skew(35deg);
    transition: all ease 0.5s;
    background-color: #ae27cc;
}

.get-in-touch a:hover, .get-in-touch-button:hover {
    color: white;
    background-color: #18326a;
}

.get-in-touch a:hover .decorator, .get-in-touch-button:hover .decorator {
    width: 50px;
}

.applications-types {
    width: 100%;
    display: flex;
    padding: 60px;
    overflow: hidden;
    align-items: center;
    flex-direction: column;
    /*background: url("../images/dark-background.webp");*/
}

.applications-types > .subtitle {
    color: white;
    font-size: 20px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.applications-types > .title {
    color: white;
    font-size: 45px;
}

.applications-types .container-items {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 70px;
    max-width: 1200px;
    flex-direction: row;
    justify-content: space-between;
}

.applications-types .container-items .header-item {
    display: flex;
    border-radius: 7px;
    padding: 20px 60px;
    align-items: center;
    flex-direction: column;
    border: 0.5px solid white;
}

.applications-types .container-items .header-item .title {
    color: white;
    font-size: 18px;
    margin-top: 20px;
    font-weight: bold;
}

.applications-types .container-items .header-item .container-image {
    left: -30px;
    height: 65px;
    bottom: -15px;
    padding: 15px;
    position: absolute;
    border-radius: 100%;
    background: var(--main-bg-gradient);
}

.applications-types .container-items .header-item .container-image i {
    color: white;
    font-size: 35px;
}

.applications-types .container-services {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 70px;
    max-width: 1200px;
    flex-direction: row;
    justify-content: space-between;
}

.applications-types .container-services .item {
    width: 225px;
    height: 300px;
    padding: 10px;
    overflow: hidden;
    position: relative;
    border-radius: 7px;
    margin-bottom: 20px;
    background-color: white;
}

.applications-types .container-services .item .container-icon {
    width: 75px;
    height: 75px;
    padding: 20px;
    display: flex;
    border-radius: 100%;
    margin-bottom: 15px;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    transition: all ease 0.5s;
    background: var(--main-bg-gradient);
}

.applications-types .container-services .item .container-icon .icon {
    color: white;
    font-size: 35px;
}

.applications-types .container-services .item h2 {
    width: 95%;
    font-size: 22px;
    overflow: hidden;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: all ease 0.5s;
}

.applications-types .container-services .item p {
    color: #373535;
    font-size: 16px;
    text-align: center;
    margin-bottom: 15px;
    transition: all ease 0.5s;
}

.applications-types .container-services .item .arrow-button {
    height: 55px;
    padding: 17px;
    display: flex;
    color: white;
    font-size: 20px;
    flex-direction: row;
    align-items: center;
    border-radius: 100%;
    justify-content: center;
    transition: all ease 0.5s;
    background: var(--main-bg-gradient);
}

.applications-types .container-services .item .content {
    z-index: 120;
    display: flex;
    position: relative;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.applications-types .container-services .item .curtain {
    top: -10px;
    height: 0px;
    z-index: 100;
    left: -20px;
    width: 900px;
    border-radius: 7px;
    position: absolute;
    transition: all ease 0.5s;
    background: var(--main-bg-gradient);
}

.applications-types .container-services .item:hover .curtain {
    height: 300px;
}

.applications-types .container-services .item:hover .container-icon {
    transform: rotate(360deg);
    background: var(--application-types-hover);
}

.applications-types .container-services .item:hover .arrow-button {
    transform: rotate(360deg);
    background: var(--application-types-hover);
}

.applications-types .container-services .item:hover h2, .applications-types .container-services .item:hover p {
    color: white;
}

.form-container {
    width: 70%;
}

.form-container .row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.form-container .row .container-input {
    margin-right: 30px;
}

.form-container .row .container-input input, .form-container .row .container-input select, .form-container .row .container-input textarea {
    width: 100%;
}

.form-container .row .container-input input[type=checkbox] {
    width: auto;
    margin-right: 10px;
}

.form-container button {
    border: none;
    color: white;
    font-size: 17px;
    cursor: pointer;
    margin-top: 40px;
    padding: 15px 40px;
    border-radius: 20px;
    transition: all ease 0.5s;
    background-color: var(--button-color);
}

.form-container button:hover {
    background-color: var(--button-hover-color);
}

.form-message {
    width: 100%;
    padding: 20px;
    display: none;
    color: #166316;
    font-size: 17px;
    font-weight: bold;
    text-align: center;
    border-radius: 20px;
    margin-bottom: 20px;
    flex-direction: row;
    background-color: #d6efd6;
    justify-content: space-between;
}

.form-message i {
    cursor: pointer;
}

footer {
    clear: both;
    background: var(--footer-bg-color);
}

footer .container {
    width: 100%;
    margin: auto;
    padding: 60px 0;
    max-width: 1200px;
}

footer .container .touche-container {
    width: 100%;
    z-index: 110;
    height: 230px;
    display: flex;
    bottom: 190px;
    padding: 0 60px;
    position: relative;
    flex-direction: row;
    border-radius: 50px;
    align-items: center;
    margin-bottom: -130px;
    justify-content: space-between;
    background: var(--main-bg-gradient);
}

footer .container .touche-container a {
    color: black;
    overflow: hidden;
    font-weight: bold;
    padding: 15px 25px;
    border-radius: 7px;
    position: relative;
    display: inline-block;
    background-color: white;
    transition: all ease 0.5s;
}

footer .container .touche-container .decorator {
    width: 0;
    top: -12px;
    left: -50px;
    height: 70px;
    position: absolute;
    display: inline-block;
    transform: skew(35deg);
    transition: all ease 0.5s;
    background-color: #ae27cc;
}

footer .container .touche-container a:hover {
    color: white;
    background-color: #18326a;
}

footer .container .touche-container a:hover .decorator {
    width: 50px;
}

footer .container .touche-container h2 {
    color: white;
    font-size: 30px;
    font-weight: bold;
}

footer .container .touche-container img {
    width: 340px;
    height: auto;
    bottom: 60px;
    position: relative;
}

footer .container-items {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}

footer .container-items .item {
    display: flex;
    margin: 0 10px;
    width: calc(100% / 4);
    flex-direction: column;
    justify-content: center;
}

footer .container-items .item img {
    width: 200px;
    height: auto;
    margin-bottom: 40px;
}

footer .container-items .item p {
    color: white;
    font-size: 17px;
    line-height: 27px;
}

footer .container-items .item .social-icons {
    display: flex;
    margin-top: 40px;
}

footer .container-items .item .social-icons i {
    height: 38px;
    display: block;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 6px 7px;
    margin-right: 15px;
    border-radius: 7px;
    transition: all ease 0.5s;
    border: 1px solid #7d7d7d;
}

footer .container-items .item .social-icons i:hover {
    background-color: #9a24e1;
}

footer .container-items .item > h2 {
    width: 80%;
    color: white;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px dotted white;
}

footer .container-items .item > a {
    color: white;
    font-size: 17px;
    line-height: 50px;
    text-decoration: none;
    transition: all ease 0.5s;
}

footer .container-items .item > a i {
    margin-right: 7px;
}

footer .container-items .item > a:hover {
    color: rgba(236, 154, 39, 0.9640231092436975);
}

footer .container-items .item .blog {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    margin-bottom: 20px;
    align-items: center;
    justify-content: space-between;
}

footer .container-items .item .blog .container-image {
    width: 30%;
    height: 80px;
    overflow: hidden;
    border-radius: 7px;
}

footer .container-items .item .blog .container-image div {
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: all ease 0.5s;
}

footer .container-items .item .blog .container-image div:hover {
    transform: scale(1.2);
}

footer .container-items .item .blog .info {
    width: 70%;
    display: flex;
    margin-left: 20px;
    flex-direction: column;
}

footer .container-items .item .blog .info a {
    color: white;
    display: block;
    font-size: 16px;
    line-height: 27px;
    transition: all ease 0.5s;
}

footer .container-items .item .blog .info .date {
    font-size: 14px;
    color: lightgray;
    margin-bottom: 10px;
}

footer .container-items .item .blog .info .title {
    cursor: pointer;
    font-weight: bold;
}

footer .container-items .item .blog .info .title:hover {
    color: rgba(236, 154, 39, 0.9640231092436975);
}

footer .container-items .item .contact p {
    color: white;
    font-size: 17px;
    margin-bottom: 20px;
}

footer .container-items .item .contact form input[type=text] {
    width: 85%;
    padding-right: 30%;
}

footer .container-items .item .contact form button {
    left: 62%;
    width: 20%;
    bottom: 7px;
    border: none;
    display: flex;
    color: white;
    cursor: pointer;
    font-size: 20px;
    padding: 7px 20px;
    border-radius: 7px;
    position: absolute;
    flex-direction: row;
    justify-content: center;
    transition: all ease 0.5s;
    background-color: #4819fb;
}

footer .container-items .item .contact form button:hover {
    background-color: #f3126e;
}

footer .container-items .item .contact form .checkbox-container {
    display: flex;
    margin: 15px 0;
    flex-direction: row;
}

footer .container-items .item .contact form .checkbox-container a {
    color: white;
    margin-left: 10px;
}

footer .copy-right {
    overflow: hidden;
    padding: 20px 80px;
    background-color: #2f48ed;
}

footer .copy-right .content {
    width: 100%;
    margin: auto;
    display: flex;
    max-width: 1200px;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}

footer .copy-right p, footer .copy-right a {
    color: white;
    font-size: 17px;
    transition: all ease 0.5s;
}

footer .copy-right a {
    margin-right: 20px;
}

footer .copy-right a:last-child {
    margin-right: 0px;
}

footer .copy-right a:hover {
    color: rgba(236, 154, 39, 0.9640231092436975)
}

.only-mobile {
    display: none;
}