@import "/fonts/fonts.css";
:root {
    /* colors */
    --primary-bg-color: #060625;
    --primary-color: #e7e1ff;
    --secondary-color: #ffffff;
    --dark--color: #000000;
    --dark-color-any: #292d32;
    --helper-primary-color: #e7e1ff;
    --helper-secondary-color: #ffffff;
    --helper-other-color: #cbd0dc;
    ---hover-color: #e7e1ff;
    /* button color */
    --button-color-primary: #e7e1ff;
    --button-color-secondary: #ffffff;
    --button-bg-color-secondary: #080827;
    /* font size */
    --primary-font-sise: 16px;
    /* radius */
    --primary-radius: 10px;
    --secondary-radius: 5px;
}

* {
    padding: 0;
    margin: 0;
    border: 0;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

:focus,
:active {
    outline: none;
}

a:focus,
a:active {
    outline: none;
}

nav,
footer,
header,
aside {
    display: block;
}

html,
body {
    height: 100%;
    width: 100%;
    font-size: var(--primary-font-sise);
    line-height: normal;
    scroll-behavior: smooth;
    color: var(--primary-color);
    background: var(--primary-bg-color);
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}
@media (max-width: 768px) {
    html,
    body {
        font-size: 14px;
    }
}

img {
    max-width: 100%;
}

input,
button,
textarea {
    font-family: inherit;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

input::-ms-clear {
    display: none;
}

button {
    cursor: pointer;
    display: block;
    font-size: inherit;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

a {
    color: var(--secondary-color);
}

a,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: 400;
    line-height: 130%;
}

.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
    z-index: 1000;
}

.main {
    flex: 1;
}

.container {
    width: 100%;
    max-width: 1780px;
    margin: 0 auto;
    padding-right: 100px;
    padding-left: 100px;
}
@media (max-width: 1920px) {
    .container {
        padding-right: calc(15px + 85 * (100vw - 280px) / 1600);
    }
}
@media (max-width: 1920px) {
    .container {
        padding-left: calc(15px + 85 * (100vw - 280px) / 1600);
    }
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.w-full {
    width: 100%;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.text-xl {
    font-size: 50px;
}
@media (max-width: 1920px) {
    .text-xl {
        font-size: calc(20px + 30 * (100vw - 280px) / 1600);
    }
}

.text-lg {
    font-size: 22px;
}
@media (max-width: 1920px) {
    .text-lg {
        font-size: calc(18px + 4 * (100vw - 280px) / 1600);
    }
}

.text-md {
    font-size: 16px;
}

.text-sm {
    font-size: 14px;
}

.text-sml {
    font-size: 12px;
}

.d-block {
    display: block !important;
}

.d-hide {
    display: none;
}

.mb-xl {
    margin-bottom: 30px;
}
@media (max-width: 1920px) {
    .mb-xl {
        margin-bottom: calc(15px + 15 * (100vw - 280px) / 1600);
    }
}

.mb-md {
    margin-bottom: 20px;
}

.mb-sm {
    margin-bottom: 10px;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.transparent {
    background-color: transparent;
}

.color-dark {
    color: var(--dark--color);
}

.color-dark-any {
    color: var(--dark-color-any);
}

.color-gray {
    color: #a9acb4;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    vertical-align: middle;
    padding: 10px 19px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-weight: 500;
}
@media (max-width: 1280px) {
    .btn {
        padding: 10px 15px;
    }
}
.btn--primary {
    color: var(--button-color-primary);
    border-radius: var(--primary-radius, 10);
    border: 1px solid var(--primary-color);
    background-color: rgba(0, 0, 0, 0.25);
}
.btn--primary:hover {
    background-color: rgb(0, 0, 0);
}
.btn--secondary {
    font-size: 17px;
    color: var(--button-color-secondary);
    border-radius: 32px;
    background-color: var(--button-bg-color-secondary);
    box-shadow: 0px 4px 26px rgba(0, 0, 0, 0.25);
}
.btn:disabled {
    cursor: not-allowed;
    background-color: var(--helper-other-color);
}

.linear-top {
    position: fixed;
    top: -200px;
    left: 0;
    z-index: -1;
}
@media (max-width: 768px) {
    .linear-top {
        top: 0;
    }
}
.linear-top svg {
    width: 100%;
    height: 100%;
}
@media (max-width: 768px) {
    .linear-top svg {
        width: 500px;
        height: 500px;
    }
}

.linear-bottom {
    position: fixed;
    bottom: 0;
    right: -200px;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.linear-bottom svg {
    width: 100%;
    height: 100%;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100svh;
    padding-top: 90px;
    padding-bottom: 90px;
}
@media (max-width: 1920px) {
    .hero {
        padding-top: calc(60px + 30 * (100vw - 280px) / 1600);
    }
}
@media (max-width: 1920px) {
    .hero {
        padding-bottom: calc(60px + 30 * (100vw - 280px) / 1600);
    }
}
.hero__wrapper {
    position: relative;
    z-index: 2;
}
@media (max-width: 575px) {
    .hero__wrapper {
        display: flex;
        flex-direction: column-reverse;
    }
}
.hero__inner {
    margin-bottom: 50px;
}
@media (max-width: 1920px) {
    .hero__inner {
        margin-bottom: calc(20px + 30 * (100vw - 280px) / 1600);
    }
}
@media (max-width: 768px) {
    .hero__inner {
        margin-bottom: 0;
    }
}
.hero__row {
    text-align: center;
}
.hero__title {
    margin-bottom: 20px;
}
@media (max-width: 1920px) {
    .hero__title {
        margin-bottom: calc(15px + 5 * (100vw - 280px) / 1600);
    }
}

.h-svh {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100svh;
}

.header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1.2vw;
}
.header__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
}
.header__info {
    display: flex;
    align-items: center;
    gap: 0px 113px;
}
@media (max-width: 1750px) {
    .header__info {
        gap: 0px 70px;
    }
}
@media (max-width: 992px) {
    .header__info {
        gap: 0 30px;
    }
}

.footer {
    padding: 10px 0;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
.footer__copy {
    text-align: center;
}

.information {
    padding: 40px 0;
    background-color: rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
    .information {
        padding: 20px 0;
        background-color: transparent;
    }
}
.information__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 96px;
}
@media (max-width: 992px) {
    .information__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px) {
    .information__grid {
        grid-template-columns: repeat(1, 1fr);
    }
}
.information__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}
@media (max-width: 992px) {
    .information__item:nth-child(3) {
        grid-column: span 2;
    }
}
@media (max-width: 575px) {
    .information__item:nth-child(3) {
        grid-column: span 1;
    }
}
.information__item > *:not(:last-child) {
    margin-bottom: 15px;
}
@media (max-width: 575px) {
    .information__item > *:not(:last-child) {
        margin-bottom: 10px;
    }
}
.information__count {
    --size: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--size);
    height: var(--size);
    background-color: var(--helper-primary-color);
    color: var(--dark--color);
    border-radius: 50%;
    margin-bottom: 40px !important;
    font-weight: 600;
}
@media (max-width: 1750px) {
    .information__count {
        margin-bottom: 20px !important;
    }
}
@media (max-width: 768px) {
    .information__count {
        --size: 45px;
    }
}
.information__line {
    position: absolute;
    top: 0;
    right: -280px;
}
@media (max-width: 992px) {
    .information__line {
        display: none;
    }
}
@media (max-width: 1920px) {
    .information__line {
        right: calc(-50px + -230 * (100vw - 280px) / 1600);
    }
}
.information__line svg {
    width: 461px;
}
@media (max-width: 1920px) {
    .information__line svg {
        width: calc(20px + 441 * (100vw - 280px) / 1600);
    }
}
.information__line--second {
    top: 45px;
}

.block-link {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}
@media (max-width: 992px) {
    .block-link span {
        display: none;
    }
}
.block-link:hover {
    color: var(---hover-color);
}
.block-link__svg {
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-block {
    border-radius: var(--primary-radius);
    overflow: hidden;
    background-color: var(--helper-secondary-color);
}
.view-block__wrapper {
    padding: 27px 50px;
}
@media (max-width: 575px) {
    .view-block__wrapper {
        padding: 20px;
    }
}

.logo {
    width: 150px;
    height: 44px;
}
.logo img {
    -o-object-fit: contain;
    object-fit: contain;
}
@media (max-width: 1280px) {
    .logo {
        width: 120px;
        height: 40px;
    }
}

.login__logo {
    display: flex;
    align-items: center;
    justify-content: center;
}
.login__wrapper {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    padding: 0 15px;
}

.form__wrapper-input {
    position: relative;
}
.form__icon {
    position: absolute;
    top: 0;
    left: 0;
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 8px;
    color: #ed2000;
}

.textarea {
    width: 100%;
    min-height: 110px;
    padding: 10px 14px;
    color: var(--dark--color);
    font-size: 14px;
    border: 1px solid var(--helper-other-color);
    border-radius: var(--secondary-radius);
    resize: none;
}
.textarea::-moz-placeholder {
    color: inherit;
}
.textarea::placeholder {
    color: inherit;
}

.form-label {
    display: block;
    color: #999999;
    font-size: 13px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding-bottom: 7px;
    border-bottom: 2px solid var(--dark--color);
    font-size: 16px;
    color: var(--dark--color);
    padding-left: 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: all 0.3s ease;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    background: rgba(0, 0, 0, 0.25);
    width: 100%;
    height: 100%;
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.popup.active {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
}
.popup__wrapper {
    display: table;
    height: 100%;
    width: 100%;
    padding: 0 15px;
}
.popup__inner {
    display: table-cell;
    vertical-align: middle;
    padding: 50px 0;
}
.popup__content {
    position: relative;
    width: 100%;
    max-width: 473px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--helper-secondary-color);
    border-radius: var(--primary-radius);
    overflow: hidden;
}
@media (max-width: 1920px) {
    .popup__content {
        padding: calc(20px + 20 * (100vw - 280px) / 1600);
    }
}
.popup__head {
    padding-bottom: 17px;
    margin-bottom: 25px;
    border-bottom: 3px solid var(--helper-other-color);
}
.popup__head-row {
    display: flex;
    justify-content: space-between;
}
.popup__head-info {
    display: flex;
    gap: 15px 22px;
}
@media (max-width: 768px) {
    .popup__head-info {
        flex-direction: column;
    }
}
.popup__btn-close {
    border-radius: 50%;
    border: 2px solid #000000;
    min-width: 30px;
    height: 30px;
    background-color: transparent;
    position: relative;
    transition: transform 0.3s ease;
    will-change: transform;
}
.popup__btn-close:hover {
    transform: scale(1.03);
}
.popup__btn-close:before {
    content: "";
    background: #000;
    position: absolute;
    height: 15px;
    width: 2px;
    border: 10px;
    top: 50%;
    left: 12px;
    transform: translateY(-50%) rotate(45deg);
}
.popup__btn-close:after {
    content: "";
    background: #000;
    position: absolute;
    height: 15px;
    width: 2px;
    border: 10px;
    top: 50%;
    left: 12px;
    transform: translateY(-50%) rotate(-45deg);
}
.popup__head-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--helper-secondary-color);
    width: 37px;
    height: 37px;
    border: 2px solid var(--helper-other-color);
    flex-shrink: 0;
}

.file-upload {
    border: 1px dashed #a9acb4;
    border-radius: var(--secondary-radius);
    cursor: pointer;
    margin-bottom: 20px;
    padding: 30px;
}
@media (max-width: 1920px) {
    .file-upload {
        padding: calc(15px + 15 * (100vw - 280px) / 1600);
    }
}
.file-upload__area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-align: center;
}
.file-upload__input {
    display: none;
}
.file-upload__button {
    width: 100%;
    max-width: 147px;
    font-size: 14px;
    color: #54575c;
    border: 1px solid #a9acb4;
    padding: 6px 24px;
    transition: all 0.3s ease;
    background-color: #ffffff;
    border-radius: var(--secondary-radius);
    margin: 0 auto;
}
.file-upload__button:hover {
    color: #ffffff;
    background-color: #a9acb4;
}

.notification__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.notification__wrapper > *:not(:last-child) {
    margin-bottom: 20px;
}

.profile {
    position: relative;
}
.profile__image {
    width: 45px;
    height: 45px;
    cursor: pointer;
    border-radius: 50%;
    overflow: hidden;
}
@media (max-width: 992px) {
    .profile__image {
        width: 30px;
        height: 30px;
    }
}
.profile__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.profile__content {
    position: absolute;
    top: 120%;
    right: 0;
    min-width: 200px;
    border-radius: var(--secondary-radius);
    overflow: hidden;
    padding: 15px 10px;
    background-color: var(--helper-secondary-color);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 3;
}
.profile__content.open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.file-preview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 10px 14px;
    border-radius: var(--secondary-radius);
    background-color: #f5f5f5;
    gap: 10px;
}
.file-preview__info {
    display: flex;
    align-items: flex-start;
}
.file-preview__img {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    margin-right: 14px;
}
.file-preview__img img {
    -o-object-fit: contain;
    object-fit: contain;
}
.file-preview__text {
    line-height: 100%;
}
.file-preview__text > *:not(:last-child) {
    margin-bottom: 6px;
}
.file-preview__name {
    font-size: 13px;
    max-width: 250px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
@media (max-width: 768px) {
    .file-preview__name {
        max-width: 150px;
    }
}
.file-preview__remove {
    cursor: pointer;
}

.text-center {
    text-align: center;
}
