@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

html, body{
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    font-size: 16px;
}

body{
    margin: 0;
    padding: 0;
    height: 100%;
    max-height: 100%;
    color: #000000;
    background-color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    min-width: 320px;
    scroll-behavior: smooth;
}

.logo{
    height: 100px;
    margin: 0 15px 0 0;
    max-width: 100%;
    max-height: 100%;
}

h1{
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #28A745;
    font-size: 2em;
}

.slogan{
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.3em;
    color: #6C757D;
}

h2{
    font-family: 'Montserrat', sans-serif;
}

/* Стили для экранов шириной менее 670px */
@media (max-width: 670px) {
    h1 {
        font-size: 1.5em;
    }

    .slogan {
        font-size: 1.1em;
        white-space: normal; /* Позволяет перенести слоган на новую строку */
    }
}

/* Стили для экранов шириной менее 420px */
@media (max-width: 420px) {
    h1 {
        font-size: 1.2em;
    }

    .slogan {
        font-size: 1em;
        white-space: normal; /* Позволяет перенести слоган на новую строку */
    }
}

.card-area{
    background-color: rgba(214, 255, 179, 0.3);
}

.showcase{
    /* padding-bottom: 15px; */
    margin-top: 30px;
    margin-bottom: 30px;
}

.card{
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.06);
    transition: all .3s;
    position: relative;
    margin-bottom: 15px;
}

.card:hover{
    box-shadow: 0 14px 30px -15px rgba(0, 0, 0, 0.75);
}

.card-image img{
    max-width: 100%;
    max-height: 100%;
    width: 50px;
    height: 50px;
}

.card-title{
    margin: 0 0 0 15px;
    font-weight: 900;
}

.card-values{
    font-weight: 500;
}

.card-marker{
    width: fit-content;
    text-align: center;
    padding: 0 8px;
    color: #000000;
    font-weight: 600;
    background: rgba(214, 255, 179, 0.3);
    margin: 10px 0;
    border-radius: 12px;
    line-height: 1.25rem;
    font-size: .75rem;
}

.card-nomarker{
    width: fit-content;
    text-align: center;
    padding: 0 8px;
    margin: 5px 0;
    border-radius: 12px;
    line-height: 1.25rem;
    font-size: .75rem;
}

@media (max-width: 576px){
    .btn-getmoney{
        padding: 15px 30px;
        font-size: 20px;
        background-color: #000000;
    }
}

/* Информация о компании start */
.info-container {
    align-items: flex-start; /* Выравнивание по верхнему краю */
}

.info-icon {
    width: 24px;
    height: 24px;
    margin-right: 5px;
    display: flex;
    align-items: flex-start;
}

.info-icon svg {
    width: 100%;
    height: 100%;
    fill: #666;
}

.org-info {
    font-size: 10px;
    color: #666;
    line-height: 1.2; /* Параметр для регулировки высоты строки */
}
/* Информация о компании end */

/* Get money button start */
.get-money {
    text-align: center;
    /* font-weight: bold; */
}

.get-money>a {
    color: white;
    font-weight: 1000;
    background-color: #28A745;
    border-color: #28A745;
}

.get-money>a:hover {
    color: white;
    background-color: #7BDB51;
    border-color: #7BDB51;
}

.get-money>a:target {
    color: white;
    background-color: #7BDB51;
    border-color: #7BDB51;
}

/* Переопределение стилей кнопки при нажатии и фокусе */
.get-money > a:active,
.get-money > a:focus {
    background-color: #7BDB51 !important;
    border-color: #7BDB51 !important;
    color: white !important;
}
/* Get money button end */

.footer{
    background-color: #3B8C4E;
}

.footer-text{
    padding-top: 15px;
    color: #121212;
}

.footer-contact{
    color: #121212da;
    font-size: .85rem;
}

.no-copy {
    user-select: none; /* Запрещает выделение текста */
    -webkit-user-select: none; /* Запрещает выделение текста для Safari */
    -moz-user-select: none; /* Запрещает выделение текста для Firefox */
    -ms-user-select: none; /* Запрещает выделение текста для Internet Explorer/Edge */
}