@font-face {
    font-family: 'Nunito';
    src: url('../fonts/nunito/static/Nunito-Medium.ttf');
        /*url('../fonts/nunito/static/Nunito-Black.ttf'),
        url('../fonts/nunito/static/Nunito-BlackItalic.ttf'),
        url('../fonts/nunito/static/Nunito-Bold.ttf'),
        url('../fonts/nunito/static/Nunito-BoldItalic.ttf'),
        url('../fonts/nunito/static/Nunito-ExtraBold.ttf'),
        url('../fonts/nunito/static/Nunito-ExtraBoldItalic.ttf'),
        url('../fonts/nunito/static/Nunito-ExtraLight.ttf'),
        url('../fonts/nunito/static/Nunito-ExtraLightItalic.ttf'),
        url('../fonts/nunito/static/Nunito-Italic.ttf'),
        url('../fonts/nunito/static/Nunito-Light.ttf'),
        url('../fonts/nunito/static/Nunito-LightItalic.ttf'),
        url('../fonts/nunito/static/Nunito-Medium.ttf'),
        url('../fonts/nunito/static/Nunito-MediumItalic.ttf'),
        url('../fonts/nunito/static/Nunito-Regular.ttf'),
        url('../fonts/nunito/static/Nunito-SemiBold.ttf'),
        url('../fonts/nunito/static/Nunito-SemiBoldItalic.ttf');*/
    font-display: swap;
}

: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;
}

li, a, p, article, h1, h2, h3, h4, h5, h6, label, input, textarea, select, button {
    font-family: "Nunito", system-ui;
    text-decoration: none;
}

.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%);
}

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);
}

.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;
}

.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);
}

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;
}

.bold {
    font-weight: bold;
}